blob: 28e69a6c74a1a2e45b4d7b6d4553bf293e1ece27 [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-Hartman21a80822009-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. Srinivasan2ddd5e52011-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. Srinivasan2ddd5e52011-09-13 10:59:49 -070047 net_device->ndev = ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -070048
K. Y. Srinivasan2ddd5e52011-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. Srinivasan2ddd5e52011-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. Srinivasan2ddd5e52011-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. Srinivasan2ddd5e52011-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-Hartman21a80822009-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. Srinivasan2ddd5e52011-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. Srinivasan2ddd5e52011-09-13 10:59:49 -0700161 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700162 return -ENODEV;
K. Y. Srinivasan2ddd5e52011-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-Hartman21a80822009-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-Hartman21a80822009-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. Srinivasan5c5781b2011-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
Thomas Meyer27b79232011-11-12 13:21:49 +0100233 net_device->recv_section = kmemdup(init_packet->msg.v1_msg.send_recv_buf_complete.sections,
234 net_device->recv_section_cnt * sizeof(struct nvsp_1_receive_buffer_section),
235 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800236 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700237 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800238 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700239 }
240
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700241 /*
242 * For 1st release, there should only be 1 section that represents the
243 * entire receive buffer
244 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800245 if (net_device->recv_section_cnt != 1 ||
246 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700247 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800248 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700249 }
250
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800251 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700252
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800253cleanup:
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800254 netvsc_destroy_recv_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700255
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800256exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700257 return ret;
258}
259
Hank Janssenfceaf242009-07-13 15:34:54 -0700260
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800261static int netvsc_connect_vsp(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700262{
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700263 int ret, t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800264 struct netvsc_device *net_device;
265 struct nvsp_message *init_packet;
266 int ndis_version;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700267 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700268
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800269 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700270 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700271 return -ENODEV;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700272 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700273
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800274 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700275
Haiyang Zhang85799a32010-12-10 12:03:54 -0800276 memset(init_packet, 0, sizeof(struct nvsp_message));
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800277 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
278 init_packet->msg.init_msg.init.min_protocol_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800279 NVSP_MIN_PROTOCOL_VERSION;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800280 init_packet->msg.init_msg.init.max_protocol_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800281 NVSP_MAX_PROTOCOL_VERSION;
Hank Janssenfceaf242009-07-13 15:34:54 -0700282
Bill Pemberton454f18a2009-07-27 16:47:24 -0400283 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800284 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700285 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800286 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800287 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700288 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Hank Janssenfceaf242009-07-13 15:34:54 -0700289
Hank Janssenb8a3d522011-03-29 13:58:45 -0700290 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800291 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700292
K. Y. Srinivasan5c5781b2011-06-16 13:16:35 -0700293 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700294
295 if (t == 0) {
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800296 ret = -ETIMEDOUT;
297 goto cleanup;
298 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700299
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800300 if (init_packet->msg.init_msg.init_complete.status !=
301 NVSP_STAT_SUCCESS) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700302 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800303 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700304 }
305
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800306 if (init_packet->msg.init_msg.init_complete.
307 negotiated_protocol_ver != NVSP_PROTOCOL_VERSION_1) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700308 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800309 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700310 }
Bill Pemberton454f18a2009-07-27 16:47:24 -0400311 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800312 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700313
Haiyang Zhang85799a32010-12-10 12:03:54 -0800314 ndis_version = 0x00050000;
Hank Janssenfceaf242009-07-13 15:34:54 -0700315
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800316 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
317 init_packet->msg.v1_msg.
318 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800319 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800320 init_packet->msg.v1_msg.
321 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800322 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700323
Bill Pemberton454f18a2009-07-27 16:47:24 -0400324 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800325 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800326 sizeof(struct nvsp_message),
327 (unsigned long)init_packet,
328 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700329 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800330 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700331
Bill Pemberton454f18a2009-07-27 16:47:24 -0400332 /* Post the big receive buffer to NetVSP */
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800333 ret = netvsc_init_recv_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700334
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800335cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700336 return ret;
337}
338
Haiyang Zhang648dc592011-04-21 12:30:47 -0700339static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700340{
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800341 netvsc_destroy_recv_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700342}
343
Hank Janssen3e189512010-03-04 22:11:00 +0000344/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800345 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700346 */
K. Y. Srinivasan905620d2011-05-10 07:54:54 -0700347int netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700348{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800349 struct netvsc_device *net_device;
350 struct hv_netvsc_packet *netvsc_packet, *pos;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700351 unsigned long flags;
Hank Janssenfceaf242009-07-13 15:34:54 -0700352
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700353 net_device = hv_get_drvdata(device);
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700354 spin_lock_irqsave(&device->channel->inbound_lock, flags);
355 net_device->destroy = true;
356 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
357
Bill Pemberton454f18a2009-07-27 16:47:24 -0400358 /* Wait for all send completions */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800359 while (atomic_read(&net_device->num_outstanding_sends)) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700360 dev_info(&device->device,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700361 "waiting for %d requests to complete...\n",
Hank Jansseneb335bc2011-03-29 13:58:48 -0700362 atomic_read(&net_device->num_outstanding_sends));
Greg Kroah-Hartmanb4362c92009-07-16 11:50:41 -0700363 udelay(100);
Hank Janssenfceaf242009-07-13 15:34:54 -0700364 }
365
Haiyang Zhang648dc592011-04-21 12:30:47 -0700366 netvsc_disconnect_vsp(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700367
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700368 /*
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700369 * Since we have already drained, we don't need to busy wait
370 * as was done in final_release_stor_device()
371 * Note that we cannot set the ext pointer to NULL until
372 * we have drained - to drain the outgoing packets, we need to
373 * allow incoming packets.
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700374 */
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700375
376 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700377 hv_set_drvdata(device, NULL);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700378 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700379
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700380 /*
381 * At this point, no one should be accessing net_device
382 * except in here
383 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700384 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700385
Bill Pemberton454f18a2009-07-27 16:47:24 -0400386 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800387 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700388
Bill Pemberton454f18a2009-07-27 16:47:24 -0400389 /* Release all resources */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800390 list_for_each_entry_safe(netvsc_packet, pos,
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800391 &net_device->recv_pkt_list, list_ent) {
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800392 list_del(&netvsc_packet->list_ent);
Haiyang Zhang85799a32010-12-10 12:03:54 -0800393 kfree(netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -0700394 }
395
K. Y. Srinivasan356c4652011-08-27 11:31:10 -0700396 kfree(net_device);
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700397 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700398}
399
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800400static void netvsc_send_completion(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800401 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700402{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800403 struct netvsc_device *net_device;
404 struct nvsp_message *nvsp_packet;
405 struct hv_netvsc_packet *nvsc_packet;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700406 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700407
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800408 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700409 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700410 return;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700411 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700412
Haiyang Zhang85799a32010-12-10 12:03:54 -0800413 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800414 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700415
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800416 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
417 (nvsp_packet->hdr.msg_type ==
418 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
419 (nvsp_packet->hdr.msg_type ==
420 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE)) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400421 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800422 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700423 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700424 complete(&net_device->channel_init_wait);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800425 } else if (nvsp_packet->hdr.msg_type ==
426 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400427 /* Get the send context */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800428 nvsc_packet = (struct hv_netvsc_packet *)(unsigned long)
Haiyang Zhang415f2282011-01-26 12:12:13 -0800429 packet->trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700430
Bill Pemberton454f18a2009-07-27 16:47:24 -0400431 /* Notify the layer above us */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800432 nvsc_packet->completion.send.send_completion(
433 nvsc_packet->completion.send.send_completion_ctx);
Hank Janssenfceaf242009-07-13 15:34:54 -0700434
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800435 atomic_dec(&net_device->num_outstanding_sends);
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700436 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700437 netdev_err(ndev, "Unknown send completion packet type- "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700438 "%d received!!\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700439 }
440
Hank Janssenfceaf242009-07-13 15:34:54 -0700441}
442
K. Y. Srinivasanf9819f02011-05-12 19:34:49 -0700443int netvsc_send(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800444 struct hv_netvsc_packet *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700445{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800446 struct netvsc_device *net_device;
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700447 int ret = 0;
Greg Kroah-Hartman223c1aa2009-08-28 16:20:53 -0700448 struct nvsp_message sendMessage;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700449 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700450
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800451 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700452 if (!net_device)
K. Y. Srinivasanff2bd692011-08-25 09:49:15 -0700453 return -ENODEV;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700454 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700455
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800456 sendMessage.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800457 if (packet->is_data_pkt) {
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700458 /* 0 is RMC_DATA; */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800459 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700460 } else {
461 /* 1 is RMC_CONTROL; */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800462 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700463 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700464
Bill Pemberton454f18a2009-07-27 16:47:24 -0400465 /* Not using send buffer section */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800466 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
467 0xFFFFFFFF;
468 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700469
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800470 if (packet->page_buf_cnt) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800471 ret = vmbus_sendpacket_pagebuffer(device->channel,
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800472 packet->page_buf,
473 packet->page_buf_cnt,
Greg Kroah-Hartmanff3f8ee2010-10-21 09:32:46 -0700474 &sendMessage,
475 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800476 (unsigned long)packet);
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700477 } else {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800478 ret = vmbus_sendpacket(device->channel, &sendMessage,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700479 sizeof(struct nvsp_message),
480 (unsigned long)packet,
481 VM_PKT_DATA_INBAND,
482 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Hank Janssenfceaf242009-07-13 15:34:54 -0700483
484 }
485
486 if (ret != 0)
Haiyang Zhangd9871152011-09-01 12:19:41 -0700487 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800488 packet, ret);
Haiyang Zhang7db1d942011-09-01 12:19:44 -0700489 else
490 atomic_inc(&net_device->num_outstanding_sends);
Hank Janssenfceaf242009-07-13 15:34:54 -0700491
Hank Janssenfceaf242009-07-13 15:34:54 -0700492 return ret;
493}
494
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700495static void netvsc_send_recv_completion(struct hv_device *device,
496 u64 transaction_id)
497{
498 struct nvsp_message recvcompMessage;
499 int retries = 0;
500 int ret;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700501 struct net_device *ndev;
502 struct netvsc_device *net_device = hv_get_drvdata(device);
503
504 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700505
506 recvcompMessage.hdr.msg_type =
507 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
508
509 /* FIXME: Pass in the status */
510 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status =
511 NVSP_STAT_SUCCESS;
512
513retry_send_cmplt:
514 /* Send the completion */
515 ret = vmbus_sendpacket(device->channel, &recvcompMessage,
516 sizeof(struct nvsp_message), transaction_id,
517 VM_PKT_COMP, 0);
518 if (ret == 0) {
519 /* success */
520 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700521 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700522 /* no more room...wait a bit and attempt to retry 3 times */
523 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -0700524 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700525 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700526
527 if (retries < 4) {
528 udelay(100);
529 goto retry_send_cmplt;
530 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700531 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700532 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700533 transaction_id);
534 }
535 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700536 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700537 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700538 }
539}
540
Haiyang Zhang57991152011-04-21 12:30:41 -0700541/* Send a receive completion packet to RNDIS device (ie NetVsp) */
542static void netvsc_receive_completion(void *context)
543{
544 struct hv_netvsc_packet *packet = context;
545 struct hv_device *device = (struct hv_device *)packet->device;
546 struct netvsc_device *net_device;
547 u64 transaction_id = 0;
548 bool fsend_receive_comp = false;
549 unsigned long flags;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700550 struct net_device *ndev;
Haiyang Zhang57991152011-04-21 12:30:41 -0700551
552 /*
553 * Even though it seems logical to do a GetOutboundNetDevice() here to
554 * send out receive completion, we are using GetInboundNetDevice()
555 * since we may have disable outbound traffic already.
556 */
557 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700558 if (!net_device)
Haiyang Zhang57991152011-04-21 12:30:41 -0700559 return;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700560 ndev = net_device->ndev;
Haiyang Zhang57991152011-04-21 12:30:41 -0700561
562 /* Overloading use of the lock. */
563 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
564
565 packet->xfer_page_pkt->count--;
566
567 /*
568 * Last one in the line that represent 1 xfer page packet.
569 * Return the xfer page packet itself to the freelist
570 */
571 if (packet->xfer_page_pkt->count == 0) {
572 fsend_receive_comp = true;
573 transaction_id = packet->completion.recv.recv_completion_tid;
574 list_add_tail(&packet->xfer_page_pkt->list_ent,
575 &net_device->recv_pkt_list);
576
577 }
578
579 /* Put the packet back */
580 list_add_tail(&packet->list_ent, &net_device->recv_pkt_list);
581 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, flags);
582
583 /* Send a receive completion for the xfer page packet */
584 if (fsend_receive_comp)
585 netvsc_send_recv_completion(device, transaction_id);
586
Haiyang Zhang57991152011-04-21 12:30:41 -0700587}
588
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800589static void netvsc_receive(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800590 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700591{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800592 struct netvsc_device *net_device;
593 struct vmtransfer_page_packet_header *vmxferpage_packet;
594 struct nvsp_message *nvsp_packet;
595 struct hv_netvsc_packet *netvsc_packet = NULL;
Greg Kroah-Hartmanc4b0bc92009-07-14 15:12:46 -0700596 unsigned long start;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800597 unsigned long end, end_virtual;
Greg Kroah-Hartman7e23a6e2009-08-27 15:58:15 -0700598 /* struct netvsc_driver *netvscDriver; */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800599 struct xferpage_packet *xferpage_packet = NULL;
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700600 int i, j;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800601 int count = 0, bytes_remain = 0;
Greg Kroah-Hartman64368732009-07-15 14:56:15 -0700602 unsigned long flags;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700603 struct net_device *ndev;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -0700604
Bill Pembertond29274e2009-09-11 21:46:43 -0400605 LIST_HEAD(listHead);
Hank Janssenfceaf242009-07-13 15:34:54 -0700606
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800607 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700608 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700609 return;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700610 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700611
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700612 /*
613 * All inbound packets other than send completion should be xfer page
614 * packet
615 */
Haiyang Zhang415f2282011-01-26 12:12:13 -0800616 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700617 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -0800618 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700619 return;
620 }
621
Haiyang Zhang85799a32010-12-10 12:03:54 -0800622 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800623 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700624
Bill Pemberton454f18a2009-07-27 16:47:24 -0400625 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800626 if (nvsp_packet->hdr.msg_type !=
627 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700628 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700629 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700630 return;
631 }
632
Haiyang Zhang85799a32010-12-10 12:03:54 -0800633 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -0700634
Haiyang Zhang415f2282011-01-26 12:12:13 -0800635 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700636 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700637 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800638 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -0700639 return;
640 }
641
Bill Pemberton454f18a2009-07-27 16:47:24 -0400642 /*
643 * Grab free packets (range count + 1) to represent this xfer
644 * page packet. +1 to represent the xfer page packet itself.
645 * We grab it here so that we know exactly how many we can
646 * fulfil
647 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800648 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
649 while (!list_empty(&net_device->recv_pkt_list)) {
650 list_move_tail(net_device->recv_pkt_list.next, &listHead);
Haiyang Zhang415f2282011-01-26 12:12:13 -0800651 if (++count == vmxferpage_packet->range_cnt + 1)
Hank Janssenfceaf242009-07-13 15:34:54 -0700652 break;
653 }
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800654 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, flags);
Hank Janssenfceaf242009-07-13 15:34:54 -0700655
Bill Pemberton454f18a2009-07-27 16:47:24 -0400656 /*
657 * We need at least 2 netvsc pkts (1 to represent the xfer
658 * page and at least 1 for the range) i.e. we can handled
659 * some of the xfer page packet ranges...
660 */
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700661 if (count < 2) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700662 netdev_err(ndev, "Got only %d netvsc pkt...needed "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700663 "%d pkts. Dropping this xfer page packet completely!\n",
Hank Jansseneb335bc2011-03-29 13:58:48 -0700664 count, vmxferpage_packet->range_cnt + 1);
Hank Janssenfceaf242009-07-13 15:34:54 -0700665
Bill Pemberton454f18a2009-07-27 16:47:24 -0400666 /* Return it to the freelist */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800667 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700668 for (i = count; i != 0; i--) {
Milan Dadok92ec0892009-10-28 23:23:37 +0100669 list_move_tail(listHead.next,
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800670 &net_device->recv_pkt_list);
Hank Janssenfceaf242009-07-13 15:34:54 -0700671 }
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800672 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock,
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700673 flags);
Hank Janssenfceaf242009-07-13 15:34:54 -0700674
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800675 netvsc_send_recv_completion(device,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800676 vmxferpage_packet->d.trans_id);
Hank Janssenfceaf242009-07-13 15:34:54 -0700677
Hank Janssenfceaf242009-07-13 15:34:54 -0700678 return;
679 }
680
Bill Pemberton454f18a2009-07-27 16:47:24 -0400681 /* Remove the 1st packet to represent the xfer page packet itself */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800682 xferpage_packet = (struct xferpage_packet *)listHead.next;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800683 list_del(&xferpage_packet->list_ent);
Bill Pembertond29274e2009-09-11 21:46:43 -0400684
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700685 /* This is how much we can satisfy */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800686 xferpage_packet->count = count - 1;
Hank Janssenfceaf242009-07-13 15:34:54 -0700687
Haiyang Zhang415f2282011-01-26 12:12:13 -0800688 if (xferpage_packet->count != vmxferpage_packet->range_cnt) {
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700689 netdev_err(ndev, "Needed %d netvsc pkts to satisfy "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700690 "this xfer page...got %d\n",
Hank Jansseneb335bc2011-03-29 13:58:48 -0700691 vmxferpage_packet->range_cnt, xferpage_packet->count);
Hank Janssenfceaf242009-07-13 15:34:54 -0700692 }
693
Bill Pemberton454f18a2009-07-27 16:47:24 -0400694 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700695 for (i = 0; i < (count - 1); i++) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800696 netvsc_packet = (struct hv_netvsc_packet *)listHead.next;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800697 list_del(&netvsc_packet->list_ent);
Hank Janssenfceaf242009-07-13 15:34:54 -0700698
Bill Pemberton454f18a2009-07-27 16:47:24 -0400699 /* Initialize the netvsc packet */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800700 netvsc_packet->xfer_page_pkt = xferpage_packet;
701 netvsc_packet->completion.recv.recv_completion =
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800702 netvsc_receive_completion;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800703 netvsc_packet->completion.recv.recv_completion_ctx =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800704 netvsc_packet;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800705 netvsc_packet->device = device;
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700706 /* Save this so that we can send it back */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800707 netvsc_packet->completion.recv.recv_completion_tid =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800708 vmxferpage_packet->d.trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700709
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800710 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800711 vmxferpage_packet->ranges[i].byte_count;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800712 netvsc_packet->page_buf_cnt = 1;
Hank Janssenfceaf242009-07-13 15:34:54 -0700713
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800714 netvsc_packet->page_buf[0].len =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800715 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -0700716
Haiyang Zhang85799a32010-12-10 12:03:54 -0800717 start = virt_to_phys((void *)((unsigned long)net_device->
Haiyang Zhang415f2282011-01-26 12:12:13 -0800718 recv_buf + vmxferpage_packet->ranges[i].byte_offset));
Hank Janssenfceaf242009-07-13 15:34:54 -0700719
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800720 netvsc_packet->page_buf[0].pfn = start >> PAGE_SHIFT;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800721 end_virtual = (unsigned long)net_device->recv_buf
Haiyang Zhang415f2282011-01-26 12:12:13 -0800722 + vmxferpage_packet->ranges[i].byte_offset
723 + vmxferpage_packet->ranges[i].byte_count - 1;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800724 end = virt_to_phys((void *)end_virtual);
Hank Janssenfceaf242009-07-13 15:34:54 -0700725
Bill Pemberton454f18a2009-07-27 16:47:24 -0400726 /* Calculate the page relative offset */
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800727 netvsc_packet->page_buf[0].offset =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800728 vmxferpage_packet->ranges[i].byte_offset &
Haiyang Zhang85799a32010-12-10 12:03:54 -0800729 (PAGE_SIZE - 1);
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700730 if ((end >> PAGE_SHIFT) != (start >> PAGE_SHIFT)) {
731 /* Handle frame across multiple pages: */
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800732 netvsc_packet->page_buf[0].len =
733 (netvsc_packet->page_buf[0].pfn <<
Haiyang Zhang85799a32010-12-10 12:03:54 -0800734 PAGE_SHIFT)
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700735 + PAGE_SIZE - start;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800736 bytes_remain = netvsc_packet->total_data_buflen -
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800737 netvsc_packet->page_buf[0].len;
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700738 for (j = 1; j < NETVSC_PACKET_MAXPAGE; j++) {
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800739 netvsc_packet->page_buf[j].offset = 0;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800740 if (bytes_remain <= PAGE_SIZE) {
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800741 netvsc_packet->page_buf[j].len =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800742 bytes_remain;
743 bytes_remain = 0;
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700744 } else {
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800745 netvsc_packet->page_buf[j].len =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800746 PAGE_SIZE;
747 bytes_remain -= PAGE_SIZE;
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700748 }
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800749 netvsc_packet->page_buf[j].pfn =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800750 virt_to_phys((void *)(end_virtual -
751 bytes_remain)) >> PAGE_SHIFT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800752 netvsc_packet->page_buf_cnt++;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800753 if (bytes_remain == 0)
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700754 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700755 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700756 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700757
Bill Pemberton454f18a2009-07-27 16:47:24 -0400758 /* Pass it to the upper layer */
K. Y. Srinivasanac6f7852011-05-12 19:34:58 -0700759 rndis_filter_receive(device, netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -0700760
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800761 netvsc_receive_completion(netvsc_packet->
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800762 completion.recv.recv_completion_ctx);
Hank Janssenfceaf242009-07-13 15:34:54 -0700763 }
764
Hank Janssenfceaf242009-07-13 15:34:54 -0700765}
766
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800767static void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -0700768{
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700769 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800770 struct hv_device *device = context;
771 struct netvsc_device *net_device;
772 u32 bytes_recvd;
773 u64 request_id;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400774 unsigned char *packet;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -0700775 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400776 unsigned char *buffer;
777 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700778 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700779
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400780 packet = kzalloc(NETVSC_PACKET_SIZE * sizeof(unsigned char),
Timo Teräsd70c6732010-12-17 11:40:24 +0200781 GFP_ATOMIC);
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400782 if (!packet)
783 return;
784 buffer = packet;
785
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800786 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700787 if (!net_device)
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400788 goto out;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700789 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700790
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700791 do {
Greg Kroah-Hartman9f630062010-10-21 09:09:48 -0700792 ret = vmbus_recvpacket_raw(device->channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800793 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700794 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800795 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700796 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang415f2282011-01-26 12:12:13 -0800797 switch (desc->type) {
798 case VM_PKT_COMP:
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800799 netvsc_send_completion(device, desc);
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700800 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700801
Haiyang Zhang415f2282011-01-26 12:12:13 -0800802 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800803 netvsc_receive(device, desc);
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700804 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700805
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700806 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -0700807 netdev_err(ndev,
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700808 "unhandled packet type %d, "
809 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -0800810 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800811 bytes_recvd);
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700812 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700813 }
814
Bill Pemberton454f18a2009-07-27 16:47:24 -0400815 /* reset */
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400816 if (bufferlen > NETVSC_PACKET_SIZE) {
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700817 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -0700818 buffer = packet;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400819 bufferlen = NETVSC_PACKET_SIZE;
Hank Janssenfceaf242009-07-13 15:34:54 -0700820 }
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700821 } else {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400822 /* reset */
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400823 if (bufferlen > NETVSC_PACKET_SIZE) {
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700824 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -0700825 buffer = packet;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400826 bufferlen = NETVSC_PACKET_SIZE;
Hank Janssenfceaf242009-07-13 15:34:54 -0700827 }
828
829 break;
830 }
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -0700831 } else if (ret == -ENOBUFS) {
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700832 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800833 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700834 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400835 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -0700836 netdev_err(ndev,
Greg Kroah-Hartman21a80822009-09-02 10:33:05 -0700837 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700838 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -0700839 break;
840 }
841
Haiyang Zhang85799a32010-12-10 12:03:54 -0800842 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -0700843 }
844 } while (1);
845
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400846out:
847 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -0700848 return;
849}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -0700850
851/*
Haiyang Zhangb637e022011-04-21 12:30:45 -0700852 * netvsc_device_add - Callback when the device belonging to this
853 * driver is added
854 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -0700855int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -0700856{
857 int ret = 0;
858 int i;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -0700859 int ring_size =
860 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -0700861 struct netvsc_device *net_device;
862 struct hv_netvsc_packet *packet, *pos;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700863 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -0700864
865 net_device = alloc_net_device(device);
866 if (!net_device) {
K. Y. Srinivasanace163a2011-08-25 09:49:16 -0700867 ret = -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -0700868 goto cleanup;
869 }
870
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700871 /*
872 * Coming into this function, struct net_device * is
873 * registered as the driver private data.
874 * In alloc_net_device(), we register struct netvsc_device *
875 * as the driver private data and stash away struct net_device *
876 * in struct netvsc_device *.
877 */
878 ndev = net_device->ndev;
879
Haiyang Zhangb637e022011-04-21 12:30:45 -0700880 /* Initialize the NetVSC channel extension */
881 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
882 spin_lock_init(&net_device->recv_pkt_list_lock);
883
Haiyang Zhangb637e022011-04-21 12:30:45 -0700884 INIT_LIST_HEAD(&net_device->recv_pkt_list);
885
886 for (i = 0; i < NETVSC_RECEIVE_PACKETLIST_COUNT; i++) {
887 packet = kzalloc(sizeof(struct hv_netvsc_packet) +
888 (NETVSC_RECEIVE_SG_COUNT *
889 sizeof(struct hv_page_buffer)), GFP_KERNEL);
890 if (!packet)
891 break;
892
893 list_add_tail(&packet->list_ent,
894 &net_device->recv_pkt_list);
895 }
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700896 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700897
898 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -0700899 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
900 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhangb637e022011-04-21 12:30:45 -0700901 netvsc_channel_cb, device);
902
903 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700904 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700905 goto cleanup;
906 }
907
908 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700909 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -0700910
911 /* Connect with the NetVsp */
912 ret = netvsc_connect_vsp(device);
913 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700914 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700915 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700916 goto close;
917 }
918
919 return ret;
920
921close:
922 /* Now, we can close the channel safely */
923 vmbus_close(device->channel);
924
925cleanup:
926
927 if (net_device) {
928 list_for_each_entry_safe(packet, pos,
929 &net_device->recv_pkt_list,
930 list_ent) {
931 list_del(&packet->list_ent);
932 kfree(packet);
933 }
934
K. Y. Srinivasan356c4652011-08-27 11:31:10 -0700935 kfree(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700936 }
937
938 return ret;
939}