Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1 | /* |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 2 | * Copyright (c) 2009, Microsoft Corporation. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms and conditions of the GNU General Public License, |
| 6 | * version 2, as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 11 | * more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License along with |
Jeff Kirsher | adf8d3f | 2013-12-06 06:28:47 -0800 | [diff] [blame] | 14 | * this program; if not, see <http://www.gnu.org/licenses/>. |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 15 | * |
| 16 | * Authors: |
Haiyang Zhang | d0e94d1 | 2009-11-23 17:00:22 +0000 | [diff] [blame] | 17 | * Haiyang Zhang <haiyangz@microsoft.com> |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 18 | * Hank Janssen <hjanssen@microsoft.com> |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 19 | */ |
Hank Janssen | eb335bc | 2011-03-29 13:58:48 -0700 | [diff] [blame] | 20 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 21 | |
Greg Kroah-Hartman | 5654e93 | 2009-07-14 15:08:20 -0700 | [diff] [blame] | 22 | #include <linux/kernel.h> |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 23 | #include <linux/sched.h> |
| 24 | #include <linux/wait.h> |
Greg Kroah-Hartman | 0ffa63b | 2009-07-15 11:06:01 -0700 | [diff] [blame] | 25 | #include <linux/mm.h> |
Greg Kroah-Hartman | b4362c9 | 2009-07-16 11:50:41 -0700 | [diff] [blame] | 26 | #include <linux/delay.h> |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 27 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 29 | #include <linux/netdevice.h> |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 30 | #include <linux/if_ether.h> |
Stephen Rothwell | d647230 | 2015-06-02 19:01:38 +1000 | [diff] [blame] | 31 | #include <linux/vmalloc.h> |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 32 | #include <asm/sync_bitops.h> |
K. Y. Srinivasan | 3f335ea | 2011-05-12 19:34:15 -0700 | [diff] [blame] | 33 | |
K. Y. Srinivasan | 5ca7252 | 2011-05-12 19:34:37 -0700 | [diff] [blame] | 34 | #include "hyperv_net.h" |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 35 | |
KY Srinivasan | 84bf9ce | 2016-04-14 16:31:54 -0700 | [diff] [blame] | 36 | /* |
| 37 | * Switch the data path from the synthetic interface to the VF |
| 38 | * interface. |
| 39 | */ |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 40 | void netvsc_switch_datapath(struct net_device *ndev, bool vf) |
KY Srinivasan | 84bf9ce | 2016-04-14 16:31:54 -0700 | [diff] [blame] | 41 | { |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 42 | struct net_device_context *net_device_ctx = netdev_priv(ndev); |
| 43 | struct hv_device *dev = net_device_ctx->device_ctx; |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 44 | struct netvsc_device *nv_dev = net_device_ctx->nvdev; |
| 45 | struct nvsp_message *init_pkt = &nv_dev->channel_init_pkt; |
KY Srinivasan | 84bf9ce | 2016-04-14 16:31:54 -0700 | [diff] [blame] | 46 | |
| 47 | memset(init_pkt, 0, sizeof(struct nvsp_message)); |
| 48 | init_pkt->hdr.msg_type = NVSP_MSG4_TYPE_SWITCH_DATA_PATH; |
| 49 | if (vf) |
| 50 | init_pkt->msg.v4_msg.active_dp.active_datapath = |
| 51 | NVSP_DATAPATH_VF; |
| 52 | else |
| 53 | init_pkt->msg.v4_msg.active_dp.active_datapath = |
| 54 | NVSP_DATAPATH_SYNTHETIC; |
| 55 | |
| 56 | vmbus_sendpacket(dev->channel, init_pkt, |
| 57 | sizeof(struct nvsp_message), |
| 58 | (unsigned long)init_pkt, |
| 59 | VM_PKT_DATA_INBAND, 0); |
| 60 | } |
| 61 | |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 62 | |
Vitaly Kuznetsov | 8809883 | 2016-05-13 13:55:25 +0200 | [diff] [blame] | 63 | static struct netvsc_device *alloc_net_device(void) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 64 | { |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 65 | struct netvsc_device *net_device; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 66 | |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 67 | net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL); |
| 68 | if (!net_device) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 69 | return NULL; |
| 70 | |
Haiyang Zhang | f90251c | 2014-08-15 19:18:19 +0000 | [diff] [blame] | 71 | net_device->cb_buffer = kzalloc(NETVSC_PACKET_SIZE, GFP_KERNEL); |
| 72 | if (!net_device->cb_buffer) { |
| 73 | kfree(net_device); |
| 74 | return NULL; |
| 75 | } |
| 76 | |
Haiyang Zhang | dc5cd89 | 2012-06-04 06:42:38 +0000 | [diff] [blame] | 77 | init_waitqueue_head(&net_device->wait_drain); |
K. Y. Srinivasan | c38b9c7 | 2011-08-27 11:31:12 -0700 | [diff] [blame] | 78 | net_device->destroy = false; |
KY Srinivasan | 84bf9ce | 2016-04-14 16:31:54 -0700 | [diff] [blame] | 79 | atomic_set(&net_device->open_cnt, 0); |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 80 | net_device->max_pkt = RNDIS_MAX_PKT_DEFAULT; |
| 81 | net_device->pkt_align = RNDIS_PKT_ALIGN_DEFAULT; |
| 82 | |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 83 | return net_device; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Haiyang Zhang | f90251c | 2014-08-15 19:18:19 +0000 | [diff] [blame] | 86 | static void free_netvsc_device(struct netvsc_device *nvdev) |
| 87 | { |
| 88 | kfree(nvdev->cb_buffer); |
| 89 | kfree(nvdev); |
| 90 | } |
| 91 | |
Haiyang Zhang | 5a71ae3 | 2010-12-10 12:03:55 -0800 | [diff] [blame] | 92 | static struct netvsc_device *get_outbound_net_device(struct hv_device *device) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 93 | { |
Vitaly Kuznetsov | 2625466 | 2016-06-03 17:50:59 +0200 | [diff] [blame] | 94 | struct netvsc_device *net_device = hv_device_to_netvsc_device(device); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 95 | |
K. Y. Srinivasan | 9d88f33 | 2011-08-27 11:31:16 -0700 | [diff] [blame] | 96 | if (net_device && net_device->destroy) |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 97 | net_device = NULL; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 98 | |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 99 | return net_device; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Haiyang Zhang | 5a71ae3 | 2010-12-10 12:03:55 -0800 | [diff] [blame] | 102 | static struct netvsc_device *get_inbound_net_device(struct hv_device *device) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 103 | { |
Vitaly Kuznetsov | 2625466 | 2016-06-03 17:50:59 +0200 | [diff] [blame] | 104 | struct netvsc_device *net_device = hv_device_to_netvsc_device(device); |
K. Y. Srinivasan | 9d88f33 | 2011-08-27 11:31:16 -0700 | [diff] [blame] | 105 | |
| 106 | if (!net_device) |
| 107 | goto get_in_err; |
| 108 | |
| 109 | if (net_device->destroy && |
| 110 | atomic_read(&net_device->num_outstanding_sends) == 0) |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 111 | net_device = NULL; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 112 | |
K. Y. Srinivasan | 9d88f33 | 2011-08-27 11:31:16 -0700 | [diff] [blame] | 113 | get_in_err: |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 114 | return net_device; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 117 | |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 118 | static int netvsc_destroy_buf(struct hv_device *device) |
Haiyang Zhang | ec91cd0 | 2011-04-21 12:30:43 -0700 | [diff] [blame] | 119 | { |
| 120 | struct nvsp_message *revoke_packet; |
| 121 | int ret = 0; |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 122 | struct net_device *ndev = hv_get_drvdata(device); |
Vitaly Kuznetsov | 2625466 | 2016-06-03 17:50:59 +0200 | [diff] [blame] | 123 | struct netvsc_device *net_device = net_device_to_netvsc_device(ndev); |
Haiyang Zhang | ec91cd0 | 2011-04-21 12:30:43 -0700 | [diff] [blame] | 124 | |
| 125 | /* |
| 126 | * If we got a section count, it means we received a |
| 127 | * SendReceiveBufferComplete msg (ie sent |
| 128 | * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need |
| 129 | * to send a revoke msg here |
| 130 | */ |
| 131 | if (net_device->recv_section_cnt) { |
| 132 | /* Send the revoke receive buffer */ |
| 133 | revoke_packet = &net_device->revoke_packet; |
| 134 | memset(revoke_packet, 0, sizeof(struct nvsp_message)); |
| 135 | |
| 136 | revoke_packet->hdr.msg_type = |
| 137 | NVSP_MSG1_TYPE_REVOKE_RECV_BUF; |
| 138 | revoke_packet->msg.v1_msg. |
| 139 | revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID; |
| 140 | |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 141 | ret = vmbus_sendpacket(device->channel, |
Haiyang Zhang | ec91cd0 | 2011-04-21 12:30:43 -0700 | [diff] [blame] | 142 | revoke_packet, |
| 143 | sizeof(struct nvsp_message), |
| 144 | (unsigned long)revoke_packet, |
| 145 | VM_PKT_DATA_INBAND, 0); |
| 146 | /* |
| 147 | * If we failed here, we might as well return and |
| 148 | * have a leak rather than continue and a bugchk |
| 149 | */ |
| 150 | if (ret != 0) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 151 | netdev_err(ndev, "unable to send " |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 152 | "revoke receive buffer to netvsp\n"); |
K. Y. Srinivasan | a3e0053 | 2011-08-25 09:49:12 -0700 | [diff] [blame] | 153 | return ret; |
Haiyang Zhang | ec91cd0 | 2011-04-21 12:30:43 -0700 | [diff] [blame] | 154 | } |
| 155 | } |
| 156 | |
| 157 | /* Teardown the gpadl on the vsp end */ |
| 158 | if (net_device->recv_buf_gpadl_handle) { |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 159 | ret = vmbus_teardown_gpadl(device->channel, |
| 160 | net_device->recv_buf_gpadl_handle); |
Haiyang Zhang | ec91cd0 | 2011-04-21 12:30:43 -0700 | [diff] [blame] | 161 | |
| 162 | /* If we failed here, we might as well return and have a leak |
| 163 | * rather than continue and a bugchk |
| 164 | */ |
| 165 | if (ret != 0) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 166 | netdev_err(ndev, |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 167 | "unable to teardown receive buffer's gpadl\n"); |
Dan Carpenter | 7f9615e | 2011-08-27 14:06:07 +0300 | [diff] [blame] | 168 | return ret; |
Haiyang Zhang | ec91cd0 | 2011-04-21 12:30:43 -0700 | [diff] [blame] | 169 | } |
| 170 | net_device->recv_buf_gpadl_handle = 0; |
| 171 | } |
| 172 | |
| 173 | if (net_device->recv_buf) { |
| 174 | /* Free up the receive buffer */ |
Haiyang Zhang | b679ef7 | 2014-01-27 15:03:42 -0800 | [diff] [blame] | 175 | vfree(net_device->recv_buf); |
Haiyang Zhang | ec91cd0 | 2011-04-21 12:30:43 -0700 | [diff] [blame] | 176 | net_device->recv_buf = NULL; |
| 177 | } |
| 178 | |
| 179 | if (net_device->recv_section) { |
| 180 | net_device->recv_section_cnt = 0; |
| 181 | kfree(net_device->recv_section); |
| 182 | net_device->recv_section = NULL; |
| 183 | } |
| 184 | |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 185 | /* Deal with the send buffer we may have setup. |
| 186 | * If we got a send section size, it means we received a |
Haiyang Zhang | c51ed18 | 2014-12-19 18:25:18 -0800 | [diff] [blame] | 187 | * NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE msg (ie sent |
| 188 | * NVSP_MSG1_TYPE_SEND_SEND_BUF msg) therefore, we need |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 189 | * to send a revoke msg here |
| 190 | */ |
| 191 | if (net_device->send_section_size) { |
| 192 | /* Send the revoke receive buffer */ |
| 193 | revoke_packet = &net_device->revoke_packet; |
| 194 | memset(revoke_packet, 0, sizeof(struct nvsp_message)); |
| 195 | |
| 196 | revoke_packet->hdr.msg_type = |
| 197 | NVSP_MSG1_TYPE_REVOKE_SEND_BUF; |
Haiyang Zhang | c51ed18 | 2014-12-19 18:25:18 -0800 | [diff] [blame] | 198 | revoke_packet->msg.v1_msg.revoke_send_buf.id = |
| 199 | NETVSC_SEND_BUFFER_ID; |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 200 | |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 201 | ret = vmbus_sendpacket(device->channel, |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 202 | revoke_packet, |
| 203 | sizeof(struct nvsp_message), |
| 204 | (unsigned long)revoke_packet, |
| 205 | VM_PKT_DATA_INBAND, 0); |
| 206 | /* If we failed here, we might as well return and |
| 207 | * have a leak rather than continue and a bugchk |
| 208 | */ |
| 209 | if (ret != 0) { |
| 210 | netdev_err(ndev, "unable to send " |
| 211 | "revoke send buffer to netvsp\n"); |
| 212 | return ret; |
| 213 | } |
| 214 | } |
| 215 | /* Teardown the gpadl on the vsp end */ |
| 216 | if (net_device->send_buf_gpadl_handle) { |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 217 | ret = vmbus_teardown_gpadl(device->channel, |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 218 | net_device->send_buf_gpadl_handle); |
| 219 | |
| 220 | /* If we failed here, we might as well return and have a leak |
| 221 | * rather than continue and a bugchk |
| 222 | */ |
| 223 | if (ret != 0) { |
| 224 | netdev_err(ndev, |
| 225 | "unable to teardown send buffer's gpadl\n"); |
| 226 | return ret; |
| 227 | } |
Dave Jones | 2f18423 | 2014-06-16 16:59:02 -0400 | [diff] [blame] | 228 | net_device->send_buf_gpadl_handle = 0; |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 229 | } |
| 230 | if (net_device->send_buf) { |
Haiyang Zhang | c51ed18 | 2014-12-19 18:25:18 -0800 | [diff] [blame] | 231 | /* Free up the send buffer */ |
KY Srinivasan | 06b47aa | 2014-08-02 10:42:02 -0700 | [diff] [blame] | 232 | vfree(net_device->send_buf); |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 233 | net_device->send_buf = NULL; |
| 234 | } |
| 235 | kfree(net_device->send_section_map); |
| 236 | |
Haiyang Zhang | ec91cd0 | 2011-04-21 12:30:43 -0700 | [diff] [blame] | 237 | return ret; |
| 238 | } |
| 239 | |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 240 | static int netvsc_init_buf(struct hv_device *device) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 241 | { |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 242 | int ret = 0; |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 243 | struct netvsc_device *net_device; |
| 244 | struct nvsp_message *init_packet; |
K. Y. Srinivasan | 2ddd5e5 | 2011-09-13 10:59:49 -0700 | [diff] [blame] | 245 | struct net_device *ndev; |
K. Y. Srinivasan | 0a726c2 | 2015-05-28 17:08:06 -0700 | [diff] [blame] | 246 | int node; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 247 | |
Haiyang Zhang | 5a71ae3 | 2010-12-10 12:03:55 -0800 | [diff] [blame] | 248 | net_device = get_outbound_net_device(device); |
K. Y. Srinivasan | 2ddd5e5 | 2011-09-13 10:59:49 -0700 | [diff] [blame] | 249 | if (!net_device) |
K. Y. Srinivasan | 927bc33 | 2011-08-25 09:49:13 -0700 | [diff] [blame] | 250 | return -ENODEV; |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 251 | ndev = hv_get_drvdata(device); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 252 | |
K. Y. Srinivasan | 0a726c2 | 2015-05-28 17:08:06 -0700 | [diff] [blame] | 253 | node = cpu_to_node(device->channel->target_cpu); |
| 254 | net_device->recv_buf = vzalloc_node(net_device->recv_buf_size, node); |
| 255 | if (!net_device->recv_buf) |
| 256 | net_device->recv_buf = vzalloc(net_device->recv_buf_size); |
| 257 | |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 258 | if (!net_device->recv_buf) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 259 | netdev_err(ndev, "unable to allocate receive " |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 260 | "buffer of size %d\n", net_device->recv_buf_size); |
K. Y. Srinivasan | 927bc33 | 2011-08-25 09:49:13 -0700 | [diff] [blame] | 261 | ret = -ENOMEM; |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 262 | goto cleanup; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 263 | } |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 264 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 265 | /* |
| 266 | * Establish the gpadl handle for this buffer on this |
| 267 | * channel. Note: This call uses the vmbus connection rather |
| 268 | * than the channel to establish the gpadl handle. |
| 269 | */ |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 270 | ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf, |
| 271 | net_device->recv_buf_size, |
| 272 | &net_device->recv_buf_gpadl_handle); |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 273 | if (ret != 0) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 274 | netdev_err(ndev, |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 275 | "unable to establish receive buffer's gpadl\n"); |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 276 | goto cleanup; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 277 | } |
| 278 | |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 279 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 280 | /* Notify the NetVsp of the gpadl handle */ |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 281 | init_packet = &net_device->channel_init_pkt; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 282 | |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 283 | memset(init_packet, 0, sizeof(struct nvsp_message)); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 284 | |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 285 | init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF; |
| 286 | init_packet->msg.v1_msg.send_recv_buf. |
| 287 | gpadl_handle = net_device->recv_buf_gpadl_handle; |
| 288 | init_packet->msg.v1_msg. |
| 289 | send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 290 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 291 | /* Send the gpadl notification request */ |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 292 | ret = vmbus_sendpacket(device->channel, init_packet, |
Greg Kroah-Hartman | 5a4df29 | 2010-10-21 09:43:24 -0700 | [diff] [blame] | 293 | sizeof(struct nvsp_message), |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 294 | (unsigned long)init_packet, |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 295 | VM_PKT_DATA_INBAND, |
Greg Kroah-Hartman | 5a4df29 | 2010-10-21 09:43:24 -0700 | [diff] [blame] | 296 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 297 | if (ret != 0) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 298 | netdev_err(ndev, |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 299 | "unable to send receive buffer's gpadl to netvsp\n"); |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 300 | goto cleanup; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 301 | } |
| 302 | |
Vitaly Kuznetsov | 5362855 | 2016-06-09 12:44:03 +0200 | [diff] [blame] | 303 | wait_for_completion(&net_device->channel_init_wait); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 304 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 305 | /* Check the response */ |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 306 | if (init_packet->msg.v1_msg. |
| 307 | send_recv_buf_complete.status != NVSP_STAT_SUCCESS) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 308 | netdev_err(ndev, "Unable to complete receive buffer " |
Haiyang Zhang | 8bff33a | 2011-09-01 12:19:48 -0700 | [diff] [blame] | 309 | "initialization with NetVsp - status %d\n", |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 310 | init_packet->msg.v1_msg. |
| 311 | send_recv_buf_complete.status); |
K. Y. Srinivasan | 927bc33 | 2011-08-25 09:49:13 -0700 | [diff] [blame] | 312 | ret = -EINVAL; |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 313 | goto cleanup; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 314 | } |
| 315 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 316 | /* Parse the response */ |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 317 | |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 318 | net_device->recv_section_cnt = init_packet->msg. |
| 319 | v1_msg.send_recv_buf_complete.num_sections; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 320 | |
Haiyang Zhang | c181320 | 2011-11-30 07:19:07 -0800 | [diff] [blame] | 321 | net_device->recv_section = kmemdup( |
| 322 | init_packet->msg.v1_msg.send_recv_buf_complete.sections, |
| 323 | net_device->recv_section_cnt * |
| 324 | sizeof(struct nvsp_1_receive_buffer_section), |
| 325 | GFP_KERNEL); |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 326 | if (net_device->recv_section == NULL) { |
K. Y. Srinivasan | 927bc33 | 2011-08-25 09:49:13 -0700 | [diff] [blame] | 327 | ret = -EINVAL; |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 328 | goto cleanup; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 329 | } |
| 330 | |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 331 | /* |
| 332 | * For 1st release, there should only be 1 section that represents the |
| 333 | * entire receive buffer |
| 334 | */ |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 335 | if (net_device->recv_section_cnt != 1 || |
| 336 | net_device->recv_section->offset != 0) { |
K. Y. Srinivasan | 927bc33 | 2011-08-25 09:49:13 -0700 | [diff] [blame] | 337 | ret = -EINVAL; |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 338 | goto cleanup; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 339 | } |
| 340 | |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 341 | /* Now setup the send buffer. |
| 342 | */ |
K. Y. Srinivasan | 5defde5 | 2015-05-28 17:08:07 -0700 | [diff] [blame] | 343 | net_device->send_buf = vzalloc_node(net_device->send_buf_size, node); |
| 344 | if (!net_device->send_buf) |
| 345 | net_device->send_buf = vzalloc(net_device->send_buf_size); |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 346 | if (!net_device->send_buf) { |
| 347 | netdev_err(ndev, "unable to allocate send " |
| 348 | "buffer of size %d\n", net_device->send_buf_size); |
| 349 | ret = -ENOMEM; |
| 350 | goto cleanup; |
| 351 | } |
| 352 | |
| 353 | /* Establish the gpadl handle for this buffer on this |
| 354 | * channel. Note: This call uses the vmbus connection rather |
| 355 | * than the channel to establish the gpadl handle. |
| 356 | */ |
| 357 | ret = vmbus_establish_gpadl(device->channel, net_device->send_buf, |
| 358 | net_device->send_buf_size, |
| 359 | &net_device->send_buf_gpadl_handle); |
| 360 | if (ret != 0) { |
| 361 | netdev_err(ndev, |
| 362 | "unable to establish send buffer's gpadl\n"); |
| 363 | goto cleanup; |
| 364 | } |
| 365 | |
| 366 | /* Notify the NetVsp of the gpadl handle */ |
| 367 | init_packet = &net_device->channel_init_pkt; |
| 368 | memset(init_packet, 0, sizeof(struct nvsp_message)); |
| 369 | init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF; |
Haiyang Zhang | c51ed18 | 2014-12-19 18:25:18 -0800 | [diff] [blame] | 370 | init_packet->msg.v1_msg.send_send_buf.gpadl_handle = |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 371 | net_device->send_buf_gpadl_handle; |
Haiyang Zhang | c51ed18 | 2014-12-19 18:25:18 -0800 | [diff] [blame] | 372 | init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID; |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 373 | |
| 374 | /* Send the gpadl notification request */ |
| 375 | ret = vmbus_sendpacket(device->channel, init_packet, |
| 376 | sizeof(struct nvsp_message), |
| 377 | (unsigned long)init_packet, |
| 378 | VM_PKT_DATA_INBAND, |
| 379 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); |
| 380 | if (ret != 0) { |
| 381 | netdev_err(ndev, |
| 382 | "unable to send send buffer's gpadl to netvsp\n"); |
| 383 | goto cleanup; |
| 384 | } |
| 385 | |
Vitaly Kuznetsov | 5362855 | 2016-06-09 12:44:03 +0200 | [diff] [blame] | 386 | wait_for_completion(&net_device->channel_init_wait); |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 387 | |
| 388 | /* Check the response */ |
| 389 | if (init_packet->msg.v1_msg. |
| 390 | send_send_buf_complete.status != NVSP_STAT_SUCCESS) { |
| 391 | netdev_err(ndev, "Unable to complete send buffer " |
| 392 | "initialization with NetVsp - status %d\n", |
| 393 | init_packet->msg.v1_msg. |
Haiyang Zhang | c51ed18 | 2014-12-19 18:25:18 -0800 | [diff] [blame] | 394 | send_send_buf_complete.status); |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 395 | ret = -EINVAL; |
| 396 | goto cleanup; |
| 397 | } |
| 398 | |
| 399 | /* Parse the response */ |
| 400 | net_device->send_section_size = init_packet->msg. |
| 401 | v1_msg.send_send_buf_complete.section_size; |
| 402 | |
| 403 | /* Section count is simply the size divided by the section size. |
| 404 | */ |
| 405 | net_device->send_section_cnt = |
| 406 | net_device->send_buf_size/net_device->send_section_size; |
| 407 | |
| 408 | dev_info(&device->device, "Send section size: %d, Section count:%d\n", |
| 409 | net_device->send_section_size, net_device->send_section_cnt); |
| 410 | |
| 411 | /* Setup state for managing the send buffer. */ |
| 412 | net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt, |
| 413 | BITS_PER_LONG); |
| 414 | |
| 415 | net_device->send_section_map = |
| 416 | kzalloc(net_device->map_words * sizeof(ulong), GFP_KERNEL); |
Wei Yongjun | dd1d3f8 | 2014-07-23 09:00:35 +0800 | [diff] [blame] | 417 | if (net_device->send_section_map == NULL) { |
| 418 | ret = -ENOMEM; |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 419 | goto cleanup; |
Wei Yongjun | dd1d3f8 | 2014-07-23 09:00:35 +0800 | [diff] [blame] | 420 | } |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 421 | |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 422 | goto exit; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 423 | |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 424 | cleanup: |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 425 | netvsc_destroy_buf(device); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 426 | |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 427 | exit: |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 428 | return ret; |
| 429 | } |
| 430 | |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 431 | |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 432 | /* Negotiate NVSP protocol version */ |
| 433 | static int negotiate_nvsp_ver(struct hv_device *device, |
| 434 | struct netvsc_device *net_device, |
| 435 | struct nvsp_message *init_packet, |
| 436 | u32 nvsp_ver) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 437 | { |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 438 | struct net_device *ndev = hv_get_drvdata(device); |
Nicholas Mc Guire | 7390fe9 | 2015-01-25 15:46:31 +0100 | [diff] [blame] | 439 | int ret; |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 440 | |
| 441 | memset(init_packet, 0, sizeof(struct nvsp_message)); |
| 442 | init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT; |
| 443 | init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver; |
| 444 | init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver; |
| 445 | |
| 446 | /* Send the init request */ |
| 447 | ret = vmbus_sendpacket(device->channel, init_packet, |
| 448 | sizeof(struct nvsp_message), |
| 449 | (unsigned long)init_packet, |
| 450 | VM_PKT_DATA_INBAND, |
| 451 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); |
| 452 | |
| 453 | if (ret != 0) |
| 454 | return ret; |
| 455 | |
Vitaly Kuznetsov | 5362855 | 2016-06-09 12:44:03 +0200 | [diff] [blame] | 456 | wait_for_completion(&net_device->channel_init_wait); |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 457 | |
| 458 | if (init_packet->msg.init_msg.init_complete.status != |
| 459 | NVSP_STAT_SUCCESS) |
| 460 | return -EINVAL; |
| 461 | |
Haiyang Zhang | a1eabb0 | 2014-02-19 15:49:45 -0800 | [diff] [blame] | 462 | if (nvsp_ver == NVSP_PROTOCOL_VERSION_1) |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 463 | return 0; |
| 464 | |
Haiyang Zhang | 71790a2 | 2015-07-24 10:08:40 -0700 | [diff] [blame] | 465 | /* NVSPv2 or later: Send NDIS config */ |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 466 | memset(init_packet, 0, sizeof(struct nvsp_message)); |
| 467 | init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG; |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 468 | init_packet->msg.v2_msg.send_ndis_config.mtu = ndev->mtu + ETH_HLEN; |
Haiyang Zhang | 1f5f3a7 | 2012-03-12 10:20:50 +0000 | [diff] [blame] | 469 | init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1; |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 470 | |
Haiyang Zhang | 71790a2 | 2015-07-24 10:08:40 -0700 | [diff] [blame] | 471 | if (nvsp_ver >= NVSP_PROTOCOL_VERSION_5) |
| 472 | init_packet->msg.v2_msg.send_ndis_config.capability.sriov = 1; |
| 473 | |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 474 | ret = vmbus_sendpacket(device->channel, init_packet, |
| 475 | sizeof(struct nvsp_message), |
| 476 | (unsigned long)init_packet, |
| 477 | VM_PKT_DATA_INBAND, 0); |
| 478 | |
| 479 | return ret; |
| 480 | } |
| 481 | |
| 482 | static int netvsc_connect_vsp(struct hv_device *device) |
| 483 | { |
| 484 | int ret; |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 485 | struct netvsc_device *net_device; |
| 486 | struct nvsp_message *init_packet; |
| 487 | int ndis_version; |
Haiyang Zhang | a1eabb0 | 2014-02-19 15:49:45 -0800 | [diff] [blame] | 488 | u32 ver_list[] = { NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2, |
| 489 | NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 }; |
| 490 | int i, num_ver = 4; /* number of different NVSP versions */ |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 491 | |
Haiyang Zhang | 5a71ae3 | 2010-12-10 12:03:55 -0800 | [diff] [blame] | 492 | net_device = get_outbound_net_device(device); |
K. Y. Srinivasan | 2ddd5e5 | 2011-09-13 10:59:49 -0700 | [diff] [blame] | 493 | if (!net_device) |
K. Y. Srinivasan | 0f48c72 | 2011-08-25 09:49:14 -0700 | [diff] [blame] | 494 | return -ENODEV; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 495 | |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 496 | init_packet = &net_device->channel_init_pkt; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 497 | |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 498 | /* Negotiate the latest NVSP protocol supported */ |
Haiyang Zhang | a1eabb0 | 2014-02-19 15:49:45 -0800 | [diff] [blame] | 499 | for (i = num_ver - 1; i >= 0; i--) |
| 500 | if (negotiate_nvsp_ver(device, net_device, init_packet, |
| 501 | ver_list[i]) == 0) { |
| 502 | net_device->nvsp_version = ver_list[i]; |
| 503 | break; |
| 504 | } |
| 505 | |
| 506 | if (i < 0) { |
K. Y. Srinivasan | 0f48c72 | 2011-08-25 09:49:14 -0700 | [diff] [blame] | 507 | ret = -EPROTO; |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 508 | goto cleanup; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 509 | } |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 510 | |
| 511 | pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version); |
| 512 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 513 | /* Send the ndis version */ |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 514 | memset(init_packet, 0, sizeof(struct nvsp_message)); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 515 | |
Haiyang Zhang | a1eabb0 | 2014-02-19 15:49:45 -0800 | [diff] [blame] | 516 | if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_4) |
KY Srinivasan | 1f73db4 | 2014-04-09 15:00:46 -0700 | [diff] [blame] | 517 | ndis_version = 0x00060001; |
Haiyang Zhang | a1eabb0 | 2014-02-19 15:49:45 -0800 | [diff] [blame] | 518 | else |
| 519 | ndis_version = 0x0006001e; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 520 | |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 521 | init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER; |
| 522 | init_packet->msg.v1_msg. |
| 523 | send_ndis_ver.ndis_major_ver = |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 524 | (ndis_version & 0xFFFF0000) >> 16; |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 525 | init_packet->msg.v1_msg. |
| 526 | send_ndis_ver.ndis_minor_ver = |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 527 | ndis_version & 0xFFFF; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 528 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 529 | /* Send the init request */ |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 530 | ret = vmbus_sendpacket(device->channel, init_packet, |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 531 | sizeof(struct nvsp_message), |
| 532 | (unsigned long)init_packet, |
| 533 | VM_PKT_DATA_INBAND, 0); |
K. Y. Srinivasan | 0f48c72 | 2011-08-25 09:49:14 -0700 | [diff] [blame] | 534 | if (ret != 0) |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 535 | goto cleanup; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 536 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 537 | /* Post the big receive buffer to NetVSP */ |
Haiyang Zhang | 99d3016 | 2014-03-09 16:10:59 -0700 | [diff] [blame] | 538 | if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_2) |
| 539 | net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY; |
| 540 | else |
| 541 | net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE; |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 542 | net_device->send_buf_size = NETVSC_SEND_BUFFER_SIZE; |
Haiyang Zhang | 99d3016 | 2014-03-09 16:10:59 -0700 | [diff] [blame] | 543 | |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 544 | ret = netvsc_init_buf(device); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 545 | |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 546 | cleanup: |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 547 | return ret; |
| 548 | } |
| 549 | |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 550 | static void netvsc_disconnect_vsp(struct hv_device *device) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 551 | { |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 552 | netvsc_destroy_buf(device); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 553 | } |
| 554 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 555 | /* |
Haiyang Zhang | 5a71ae3 | 2010-12-10 12:03:55 -0800 | [diff] [blame] | 556 | * netvsc_device_remove - Callback when the root bus device is removed |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 557 | */ |
K. Y. Srinivasan | 905620d | 2011-05-10 07:54:54 -0700 | [diff] [blame] | 558 | int netvsc_device_remove(struct hv_device *device) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 559 | { |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 560 | struct net_device *ndev = hv_get_drvdata(device); |
| 561 | struct net_device_context *net_device_ctx = netdev_priv(ndev); |
| 562 | struct netvsc_device *net_device = net_device_ctx->nvdev; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 563 | |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 564 | netvsc_disconnect_vsp(device); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 565 | |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 566 | net_device_ctx->nvdev = NULL; |
K. Y. Srinivasan | 3852409 | 2011-08-27 11:31:14 -0700 | [diff] [blame] | 567 | |
K. Y. Srinivasan | 86c921a | 2011-09-13 10:59:54 -0700 | [diff] [blame] | 568 | /* |
| 569 | * At this point, no one should be accessing net_device |
| 570 | * except in here |
| 571 | */ |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 572 | dev_notice(&device->device, "net device safe to remove\n"); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 573 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 574 | /* Now, we can close the channel safely */ |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 575 | vmbus_close(device->channel); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 576 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 577 | /* Release all resources */ |
Markus Elfring | aa99c47 | 2014-11-25 22:33:45 +0100 | [diff] [blame] | 578 | vfree(net_device->sub_cb_buf); |
Haiyang Zhang | f90251c | 2014-08-15 19:18:19 +0000 | [diff] [blame] | 579 | free_netvsc_device(net_device); |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 580 | return 0; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 581 | } |
| 582 | |
Haiyang Zhang | 33be96e | 2012-03-27 13:20:45 +0000 | [diff] [blame] | 583 | |
| 584 | #define RING_AVAIL_PERCENT_HIWATER 20 |
| 585 | #define RING_AVAIL_PERCENT_LOWATER 10 |
| 586 | |
| 587 | /* |
| 588 | * Get the percentage of available bytes to write in the ring. |
| 589 | * The return value is in range from 0 to 100. |
| 590 | */ |
| 591 | static inline u32 hv_ringbuf_avail_percent( |
| 592 | struct hv_ring_buffer_info *ring_info) |
| 593 | { |
| 594 | u32 avail_read, avail_write; |
| 595 | |
| 596 | hv_get_ringbuffer_availbytes(ring_info, &avail_read, &avail_write); |
| 597 | |
| 598 | return avail_write * 100 / ring_info->ring_datasize; |
| 599 | } |
| 600 | |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 601 | static inline void netvsc_free_send_slot(struct netvsc_device *net_device, |
| 602 | u32 index) |
| 603 | { |
| 604 | sync_change_bit(index, net_device->send_section_map); |
| 605 | } |
| 606 | |
KY Srinivasan | 97c1723 | 2014-02-16 16:38:44 -0800 | [diff] [blame] | 607 | static void netvsc_send_completion(struct netvsc_device *net_device, |
KY Srinivasan | 25b85ee | 2015-12-01 16:43:05 -0800 | [diff] [blame] | 608 | struct vmbus_channel *incoming_channel, |
KY Srinivasan | 97c1723 | 2014-02-16 16:38:44 -0800 | [diff] [blame] | 609 | struct hv_device *device, |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 610 | struct vmpacket_descriptor *packet) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 611 | { |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 612 | struct nvsp_message *nvsp_packet; |
| 613 | struct hv_netvsc_packet *nvsc_packet; |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 614 | struct net_device *ndev = hv_get_drvdata(device); |
| 615 | struct net_device_context *net_device_ctx = netdev_priv(ndev); |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 616 | u32 send_index; |
KY Srinivasan | 3a3d9a0 | 2015-12-01 16:43:14 -0800 | [diff] [blame] | 617 | struct sk_buff *skb; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 618 | |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 619 | nvsp_packet = (struct nvsp_message *)((unsigned long)packet + |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 620 | (packet->offset8 << 3)); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 621 | |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 622 | if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) || |
| 623 | (nvsp_packet->hdr.msg_type == |
| 624 | NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) || |
| 625 | (nvsp_packet->hdr.msg_type == |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 626 | NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE) || |
| 627 | (nvsp_packet->hdr.msg_type == |
| 628 | NVSP_MSG5_TYPE_SUBCHANNEL)) { |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 629 | /* Copy the response back */ |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 630 | memcpy(&net_device->channel_init_pkt, nvsp_packet, |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 631 | sizeof(struct nvsp_message)); |
K. Y. Srinivasan | 35abb21 | 2011-05-10 07:55:41 -0700 | [diff] [blame] | 632 | complete(&net_device->channel_init_wait); |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 633 | } else if (nvsp_packet->hdr.msg_type == |
| 634 | NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) { |
Haiyang Zhang | 33be96e | 2012-03-27 13:20:45 +0000 | [diff] [blame] | 635 | int num_outstanding_sends; |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 636 | u16 q_idx = 0; |
| 637 | struct vmbus_channel *channel = device->channel; |
| 638 | int queue_sends; |
Haiyang Zhang | 33be96e | 2012-03-27 13:20:45 +0000 | [diff] [blame] | 639 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 640 | /* Get the send context */ |
KY Srinivasan | 3a3d9a0 | 2015-12-01 16:43:14 -0800 | [diff] [blame] | 641 | skb = (struct sk_buff *)(unsigned long)packet->trans_id; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 642 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 643 | /* Notify the layer above us */ |
KY Srinivasan | 3a3d9a0 | 2015-12-01 16:43:14 -0800 | [diff] [blame] | 644 | if (skb) { |
| 645 | nvsc_packet = (struct hv_netvsc_packet *) skb->cb; |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 646 | send_index = nvsc_packet->send_buf_index; |
| 647 | if (send_index != NETVSC_INVALID_INDEX) |
| 648 | netvsc_free_send_slot(net_device, send_index); |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 649 | q_idx = nvsc_packet->q_idx; |
KY Srinivasan | 25b85ee | 2015-12-01 16:43:05 -0800 | [diff] [blame] | 650 | channel = incoming_channel; |
KY Srinivasan | 3a3d9a0 | 2015-12-01 16:43:14 -0800 | [diff] [blame] | 651 | dev_kfree_skb_any(skb); |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 652 | } |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 653 | |
Haiyang Zhang | 33be96e | 2012-03-27 13:20:45 +0000 | [diff] [blame] | 654 | num_outstanding_sends = |
| 655 | atomic_dec_return(&net_device->num_outstanding_sends); |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 656 | queue_sends = atomic_dec_return(&net_device-> |
| 657 | queue_sends[q_idx]); |
Haiyang Zhang | 1d06825 | 2011-12-02 11:56:25 -0800 | [diff] [blame] | 658 | |
Haiyang Zhang | dc5cd89 | 2012-06-04 06:42:38 +0000 | [diff] [blame] | 659 | if (net_device->destroy && num_outstanding_sends == 0) |
| 660 | wake_up(&net_device->wait_drain); |
| 661 | |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 662 | if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) && |
Vitaly Kuznetsov | 3d541ac | 2016-05-13 13:55:22 +0200 | [diff] [blame] | 663 | !net_device_ctx->start_remove && |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 664 | (hv_ringbuf_avail_percent(&channel->outbound) > |
| 665 | RING_AVAIL_PERCENT_HIWATER || queue_sends < 1)) |
| 666 | netif_tx_wake_queue(netdev_get_tx_queue( |
| 667 | ndev, q_idx)); |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 668 | } else { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 669 | netdev_err(ndev, "Unknown send completion packet type- " |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 670 | "%d received!!\n", nvsp_packet->hdr.msg_type); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 671 | } |
| 672 | |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 673 | } |
| 674 | |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 675 | static u32 netvsc_get_next_send_section(struct netvsc_device *net_device) |
| 676 | { |
| 677 | unsigned long index; |
| 678 | u32 max_words = net_device->map_words; |
| 679 | unsigned long *map_addr = (unsigned long *)net_device->send_section_map; |
| 680 | u32 section_cnt = net_device->send_section_cnt; |
| 681 | int ret_val = NETVSC_INVALID_INDEX; |
| 682 | int i; |
| 683 | int prev_val; |
| 684 | |
| 685 | for (i = 0; i < max_words; i++) { |
| 686 | if (!~(map_addr[i])) |
| 687 | continue; |
| 688 | index = ffz(map_addr[i]); |
| 689 | prev_val = sync_test_and_set_bit(index, &map_addr[i]); |
| 690 | if (prev_val) |
| 691 | continue; |
| 692 | if ((index + (i * BITS_PER_LONG)) >= section_cnt) |
| 693 | break; |
| 694 | ret_val = (index + (i * BITS_PER_LONG)); |
| 695 | break; |
| 696 | } |
| 697 | return ret_val; |
| 698 | } |
| 699 | |
Lad, Prabhakar | da19fcd | 2015-02-05 15:06:33 +0000 | [diff] [blame] | 700 | static u32 netvsc_copy_to_send_buf(struct netvsc_device *net_device, |
| 701 | unsigned int section_index, |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 702 | u32 pend_size, |
KY Srinivasan | 2447676 | 2015-12-01 16:43:06 -0800 | [diff] [blame] | 703 | struct hv_netvsc_packet *packet, |
KY Srinivasan | a9f2e2d | 2015-12-01 16:43:13 -0800 | [diff] [blame] | 704 | struct rndis_message *rndis_msg, |
KY Srinivasan | 694a9fb | 2015-12-01 16:43:15 -0800 | [diff] [blame] | 705 | struct hv_page_buffer **pb, |
| 706 | struct sk_buff *skb) |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 707 | { |
| 708 | char *start = net_device->send_buf; |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 709 | char *dest = start + (section_index * net_device->send_section_size) |
| 710 | + pend_size; |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 711 | int i; |
KY Srinivasan | 694a9fb | 2015-12-01 16:43:15 -0800 | [diff] [blame] | 712 | bool is_data_pkt = (skb != NULL) ? true : false; |
KY Srinivasan | bde79be | 2015-12-01 16:43:17 -0800 | [diff] [blame] | 713 | bool xmit_more = (skb != NULL) ? skb->xmit_more : false; |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 714 | u32 msg_size = 0; |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 715 | u32 padding = 0; |
| 716 | u32 remain = packet->total_data_buflen % net_device->pkt_align; |
Haiyang Zhang | aa0a34b | 2015-04-13 16:34:35 -0700 | [diff] [blame] | 717 | u32 page_count = packet->cp_partial ? packet->rmsg_pgcnt : |
| 718 | packet->page_buf_cnt; |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 719 | |
| 720 | /* Add padding */ |
KY Srinivasan | bde79be | 2015-12-01 16:43:17 -0800 | [diff] [blame] | 721 | if (is_data_pkt && xmit_more && remain && |
Haiyang Zhang | aa0a34b | 2015-04-13 16:34:35 -0700 | [diff] [blame] | 722 | !packet->cp_partial) { |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 723 | padding = net_device->pkt_align - remain; |
KY Srinivasan | 2447676 | 2015-12-01 16:43:06 -0800 | [diff] [blame] | 724 | rndis_msg->msg_len += padding; |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 725 | packet->total_data_buflen += padding; |
| 726 | } |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 727 | |
Haiyang Zhang | aa0a34b | 2015-04-13 16:34:35 -0700 | [diff] [blame] | 728 | for (i = 0; i < page_count; i++) { |
KY Srinivasan | a9f2e2d | 2015-12-01 16:43:13 -0800 | [diff] [blame] | 729 | char *src = phys_to_virt((*pb)[i].pfn << PAGE_SHIFT); |
| 730 | u32 offset = (*pb)[i].offset; |
| 731 | u32 len = (*pb)[i].len; |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 732 | |
| 733 | memcpy(dest, (src + offset), len); |
| 734 | msg_size += len; |
| 735 | dest += len; |
| 736 | } |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 737 | |
| 738 | if (padding) { |
| 739 | memset(dest, 0, padding); |
| 740 | msg_size += padding; |
| 741 | } |
| 742 | |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 743 | return msg_size; |
| 744 | } |
| 745 | |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 746 | static inline int netvsc_send_pkt( |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 747 | struct hv_device *device, |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 748 | struct hv_netvsc_packet *packet, |
KY Srinivasan | a9f2e2d | 2015-12-01 16:43:13 -0800 | [diff] [blame] | 749 | struct netvsc_device *net_device, |
KY Srinivasan | 3a3d9a0 | 2015-12-01 16:43:14 -0800 | [diff] [blame] | 750 | struct hv_page_buffer **pb, |
| 751 | struct sk_buff *skb) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 752 | { |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 753 | struct nvsp_message nvmsg; |
KY Srinivasan | 3a67c9c | 2014-10-05 10:42:51 -0700 | [diff] [blame] | 754 | u16 q_idx = packet->q_idx; |
Vitaly Kuznetsov | 8b9fbe1 | 2015-12-01 16:43:11 -0800 | [diff] [blame] | 755 | struct vmbus_channel *out_channel = net_device->chn_table[q_idx]; |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 756 | struct net_device *ndev = hv_get_drvdata(device); |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 757 | u64 req_id; |
| 758 | int ret; |
Haiyang Zhang | aa0a34b | 2015-04-13 16:34:35 -0700 | [diff] [blame] | 759 | struct hv_page_buffer *pgbuf; |
KY Srinivasan | 82fa3c7 | 2015-05-11 15:39:46 -0700 | [diff] [blame] | 760 | u32 ring_avail = hv_ringbuf_avail_percent(&out_channel->outbound); |
KY Srinivasan | bde79be | 2015-12-01 16:43:17 -0800 | [diff] [blame] | 761 | bool xmit_more = (skb != NULL) ? skb->xmit_more : false; |
KY Srinivasan | c25aaf8 | 2014-04-30 10:14:31 -0700 | [diff] [blame] | 762 | |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 763 | nvmsg.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT; |
KY Srinivasan | 694a9fb | 2015-12-01 16:43:15 -0800 | [diff] [blame] | 764 | if (skb != NULL) { |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 765 | /* 0 is RMC_DATA; */ |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 766 | nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 0; |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 767 | } else { |
| 768 | /* 1 is RMC_CONTROL; */ |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 769 | nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 1; |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 770 | } |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 771 | |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 772 | nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_index = |
| 773 | packet->send_buf_index; |
| 774 | if (packet->send_buf_index == NETVSC_INVALID_INDEX) |
| 775 | nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0; |
| 776 | else |
| 777 | nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size = |
| 778 | packet->total_data_buflen; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 779 | |
KY Srinivasan | 3a3d9a0 | 2015-12-01 16:43:14 -0800 | [diff] [blame] | 780 | req_id = (ulong)skb; |
Haiyang Zhang | f1ea3cd | 2013-04-05 11:44:40 +0000 | [diff] [blame] | 781 | |
Haiyang Zhang | c3582a2 | 2014-12-01 13:28:39 -0800 | [diff] [blame] | 782 | if (out_channel->rescind) |
| 783 | return -ENODEV; |
| 784 | |
KY Srinivasan | 82fa3c7 | 2015-05-11 15:39:46 -0700 | [diff] [blame] | 785 | /* |
| 786 | * It is possible that once we successfully place this packet |
| 787 | * on the ringbuffer, we may stop the queue. In that case, we want |
| 788 | * to notify the host independent of the xmit_more flag. We don't |
| 789 | * need to be precise here; in the worst case we may signal the host |
| 790 | * unnecessarily. |
| 791 | */ |
| 792 | if (ring_avail < (RING_AVAIL_PERCENT_LOWATER + 1)) |
KY Srinivasan | bde79be | 2015-12-01 16:43:17 -0800 | [diff] [blame] | 793 | xmit_more = false; |
KY Srinivasan | 82fa3c7 | 2015-05-11 15:39:46 -0700 | [diff] [blame] | 794 | |
Haiyang Zhang | 72a2f5b | 2010-12-10 12:03:58 -0800 | [diff] [blame] | 795 | if (packet->page_buf_cnt) { |
KY Srinivasan | a9f2e2d | 2015-12-01 16:43:13 -0800 | [diff] [blame] | 796 | pgbuf = packet->cp_partial ? (*pb) + |
| 797 | packet->rmsg_pgcnt : (*pb); |
KY Srinivasan | 82fa3c7 | 2015-05-11 15:39:46 -0700 | [diff] [blame] | 798 | ret = vmbus_sendpacket_pagebuffer_ctl(out_channel, |
| 799 | pgbuf, |
| 800 | packet->page_buf_cnt, |
| 801 | &nvmsg, |
| 802 | sizeof(struct nvsp_message), |
| 803 | req_id, |
| 804 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED, |
KY Srinivasan | bde79be | 2015-12-01 16:43:17 -0800 | [diff] [blame] | 805 | !xmit_more); |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 806 | } else { |
KY Srinivasan | 82fa3c7 | 2015-05-11 15:39:46 -0700 | [diff] [blame] | 807 | ret = vmbus_sendpacket_ctl(out_channel, &nvmsg, |
| 808 | sizeof(struct nvsp_message), |
| 809 | req_id, |
| 810 | VM_PKT_DATA_INBAND, |
| 811 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED, |
KY Srinivasan | bde79be | 2015-12-01 16:43:17 -0800 | [diff] [blame] | 812 | !xmit_more); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 813 | } |
| 814 | |
Haiyang Zhang | 1d06825 | 2011-12-02 11:56:25 -0800 | [diff] [blame] | 815 | if (ret == 0) { |
| 816 | atomic_inc(&net_device->num_outstanding_sends); |
KY Srinivasan | 3a67c9c | 2014-10-05 10:42:51 -0700 | [diff] [blame] | 817 | atomic_inc(&net_device->queue_sends[q_idx]); |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 818 | |
KY Srinivasan | 82fa3c7 | 2015-05-11 15:39:46 -0700 | [diff] [blame] | 819 | if (ring_avail < RING_AVAIL_PERCENT_LOWATER) { |
| 820 | netif_tx_stop_queue(netdev_get_tx_queue(ndev, q_idx)); |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 821 | |
Haiyang Zhang | 33be96e | 2012-03-27 13:20:45 +0000 | [diff] [blame] | 822 | if (atomic_read(&net_device-> |
KY Srinivasan | 3a67c9c | 2014-10-05 10:42:51 -0700 | [diff] [blame] | 823 | queue_sends[q_idx]) < 1) |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 824 | netif_tx_wake_queue(netdev_get_tx_queue( |
KY Srinivasan | 3a67c9c | 2014-10-05 10:42:51 -0700 | [diff] [blame] | 825 | ndev, q_idx)); |
Haiyang Zhang | 33be96e | 2012-03-27 13:20:45 +0000 | [diff] [blame] | 826 | } |
Haiyang Zhang | 1d06825 | 2011-12-02 11:56:25 -0800 | [diff] [blame] | 827 | } else if (ret == -EAGAIN) { |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 828 | netif_tx_stop_queue(netdev_get_tx_queue( |
KY Srinivasan | 3a67c9c | 2014-10-05 10:42:51 -0700 | [diff] [blame] | 829 | ndev, q_idx)); |
| 830 | if (atomic_read(&net_device->queue_sends[q_idx]) < 1) { |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 831 | netif_tx_wake_queue(netdev_get_tx_queue( |
KY Srinivasan | 3a67c9c | 2014-10-05 10:42:51 -0700 | [diff] [blame] | 832 | ndev, q_idx)); |
Haiyang Zhang | 33be96e | 2012-03-27 13:20:45 +0000 | [diff] [blame] | 833 | ret = -ENOSPC; |
| 834 | } |
Haiyang Zhang | 1d06825 | 2011-12-02 11:56:25 -0800 | [diff] [blame] | 835 | } else { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 836 | netdev_err(ndev, "Unable to send packet %p ret %d\n", |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 837 | packet, ret); |
Haiyang Zhang | 1d06825 | 2011-12-02 11:56:25 -0800 | [diff] [blame] | 838 | } |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 839 | |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 840 | return ret; |
| 841 | } |
| 842 | |
Haiyang Zhang | c85e492 | 2016-01-25 09:49:31 -0800 | [diff] [blame] | 843 | /* Move packet out of multi send data (msd), and clear msd */ |
| 844 | static inline void move_pkt_msd(struct hv_netvsc_packet **msd_send, |
| 845 | struct sk_buff **msd_skb, |
| 846 | struct multi_send_data *msdp) |
| 847 | { |
| 848 | *msd_skb = msdp->skb; |
| 849 | *msd_send = msdp->pkt; |
| 850 | msdp->skb = NULL; |
| 851 | msdp->pkt = NULL; |
| 852 | msdp->count = 0; |
| 853 | } |
| 854 | |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 855 | int netvsc_send(struct hv_device *device, |
KY Srinivasan | 2447676 | 2015-12-01 16:43:06 -0800 | [diff] [blame] | 856 | struct hv_netvsc_packet *packet, |
KY Srinivasan | a9f2e2d | 2015-12-01 16:43:13 -0800 | [diff] [blame] | 857 | struct rndis_message *rndis_msg, |
KY Srinivasan | 3a3d9a0 | 2015-12-01 16:43:14 -0800 | [diff] [blame] | 858 | struct hv_page_buffer **pb, |
| 859 | struct sk_buff *skb) |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 860 | { |
| 861 | struct netvsc_device *net_device; |
| 862 | int ret = 0, m_ret = 0; |
| 863 | struct vmbus_channel *out_channel; |
| 864 | u16 q_idx = packet->q_idx; |
| 865 | u32 pktlen = packet->total_data_buflen, msd_len = 0; |
| 866 | unsigned int section_index = NETVSC_INVALID_INDEX; |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 867 | struct multi_send_data *msdp; |
| 868 | struct hv_netvsc_packet *msd_send = NULL, *cur_send = NULL; |
Haiyang Zhang | c85e492 | 2016-01-25 09:49:31 -0800 | [diff] [blame] | 869 | struct sk_buff *msd_skb = NULL; |
Haiyang Zhang | aa0a34b | 2015-04-13 16:34:35 -0700 | [diff] [blame] | 870 | bool try_batch; |
KY Srinivasan | bde79be | 2015-12-01 16:43:17 -0800 | [diff] [blame] | 871 | bool xmit_more = (skb != NULL) ? skb->xmit_more : false; |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 872 | |
| 873 | net_device = get_outbound_net_device(device); |
| 874 | if (!net_device) |
| 875 | return -ENODEV; |
| 876 | |
Vitaly Kuznetsov | 8b9fbe1 | 2015-12-01 16:43:11 -0800 | [diff] [blame] | 877 | out_channel = net_device->chn_table[q_idx]; |
KY Srinivasan | 25b85ee | 2015-12-01 16:43:05 -0800 | [diff] [blame] | 878 | |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 879 | packet->send_buf_index = NETVSC_INVALID_INDEX; |
Haiyang Zhang | aa0a34b | 2015-04-13 16:34:35 -0700 | [diff] [blame] | 880 | packet->cp_partial = false; |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 881 | |
Haiyang Zhang | cf8190e | 2015-12-10 12:19:35 -0800 | [diff] [blame] | 882 | /* Send control message directly without accessing msd (Multi-Send |
| 883 | * Data) field which may be changed during data packet processing. |
| 884 | */ |
| 885 | if (!skb) { |
| 886 | cur_send = packet; |
| 887 | goto send_now; |
| 888 | } |
| 889 | |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 890 | msdp = &net_device->msd[q_idx]; |
| 891 | |
| 892 | /* batch packets in send buffer if possible */ |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 893 | if (msdp->pkt) |
| 894 | msd_len = msdp->pkt->total_data_buflen; |
| 895 | |
KY Srinivasan | 694a9fb | 2015-12-01 16:43:15 -0800 | [diff] [blame] | 896 | try_batch = (skb != NULL) && msd_len > 0 && msdp->count < |
Haiyang Zhang | aa0a34b | 2015-04-13 16:34:35 -0700 | [diff] [blame] | 897 | net_device->max_pkt; |
| 898 | |
| 899 | if (try_batch && msd_len + pktlen + net_device->pkt_align < |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 900 | net_device->send_section_size) { |
| 901 | section_index = msdp->pkt->send_buf_index; |
| 902 | |
Haiyang Zhang | aa0a34b | 2015-04-13 16:34:35 -0700 | [diff] [blame] | 903 | } else if (try_batch && msd_len + packet->rmsg_size < |
| 904 | net_device->send_section_size) { |
| 905 | section_index = msdp->pkt->send_buf_index; |
| 906 | packet->cp_partial = true; |
| 907 | |
KY Srinivasan | 694a9fb | 2015-12-01 16:43:15 -0800 | [diff] [blame] | 908 | } else if ((skb != NULL) && pktlen + net_device->pkt_align < |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 909 | net_device->send_section_size) { |
| 910 | section_index = netvsc_get_next_send_section(net_device); |
| 911 | if (section_index != NETVSC_INVALID_INDEX) { |
Haiyang Zhang | c85e492 | 2016-01-25 09:49:31 -0800 | [diff] [blame] | 912 | move_pkt_msd(&msd_send, &msd_skb, msdp); |
| 913 | msd_len = 0; |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 914 | } |
| 915 | } |
| 916 | |
| 917 | if (section_index != NETVSC_INVALID_INDEX) { |
| 918 | netvsc_copy_to_send_buf(net_device, |
| 919 | section_index, msd_len, |
KY Srinivasan | 694a9fb | 2015-12-01 16:43:15 -0800 | [diff] [blame] | 920 | packet, rndis_msg, pb, skb); |
KY Srinivasan | b08cc79 | 2015-03-29 21:08:42 -0700 | [diff] [blame] | 921 | |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 922 | packet->send_buf_index = section_index; |
Haiyang Zhang | aa0a34b | 2015-04-13 16:34:35 -0700 | [diff] [blame] | 923 | |
| 924 | if (packet->cp_partial) { |
| 925 | packet->page_buf_cnt -= packet->rmsg_pgcnt; |
| 926 | packet->total_data_buflen = msd_len + packet->rmsg_size; |
| 927 | } else { |
| 928 | packet->page_buf_cnt = 0; |
| 929 | packet->total_data_buflen += msd_len; |
Haiyang Zhang | aa0a34b | 2015-04-13 16:34:35 -0700 | [diff] [blame] | 930 | } |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 931 | |
Haiyang Zhang | c85e492 | 2016-01-25 09:49:31 -0800 | [diff] [blame] | 932 | if (msdp->skb) |
| 933 | dev_kfree_skb_any(msdp->skb); |
Haiyang Zhang | ee90b81 | 2015-04-06 15:22:54 -0700 | [diff] [blame] | 934 | |
KY Srinivasan | bde79be | 2015-12-01 16:43:17 -0800 | [diff] [blame] | 935 | if (xmit_more && !packet->cp_partial) { |
Haiyang Zhang | c85e492 | 2016-01-25 09:49:31 -0800 | [diff] [blame] | 936 | msdp->skb = skb; |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 937 | msdp->pkt = packet; |
| 938 | msdp->count++; |
| 939 | } else { |
| 940 | cur_send = packet; |
Haiyang Zhang | c85e492 | 2016-01-25 09:49:31 -0800 | [diff] [blame] | 941 | msdp->skb = NULL; |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 942 | msdp->pkt = NULL; |
| 943 | msdp->count = 0; |
| 944 | } |
| 945 | } else { |
Haiyang Zhang | c85e492 | 2016-01-25 09:49:31 -0800 | [diff] [blame] | 946 | move_pkt_msd(&msd_send, &msd_skb, msdp); |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 947 | cur_send = packet; |
| 948 | } |
| 949 | |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 950 | if (msd_send) { |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 951 | m_ret = netvsc_send_pkt(device, msd_send, net_device, |
| 952 | NULL, msd_skb); |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 953 | |
| 954 | if (m_ret != 0) { |
| 955 | netvsc_free_send_slot(net_device, |
| 956 | msd_send->send_buf_index); |
Haiyang Zhang | c85e492 | 2016-01-25 09:49:31 -0800 | [diff] [blame] | 957 | dev_kfree_skb_any(msd_skb); |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 958 | } |
| 959 | } |
| 960 | |
Haiyang Zhang | cf8190e | 2015-12-10 12:19:35 -0800 | [diff] [blame] | 961 | send_now: |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 962 | if (cur_send) |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 963 | ret = netvsc_send_pkt(device, cur_send, net_device, pb, skb); |
Haiyang Zhang | 7c3877f | 2015-03-26 09:03:37 -0700 | [diff] [blame] | 964 | |
Jerry Snitselaar | 7aab515 | 2015-05-04 10:57:16 -0700 | [diff] [blame] | 965 | if (ret != 0 && section_index != NETVSC_INVALID_INDEX) |
| 966 | netvsc_free_send_slot(net_device, section_index); |
Haiyang Zhang | d953ca4 | 2015-01-29 12:34:49 -0800 | [diff] [blame] | 967 | |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 968 | return ret; |
| 969 | } |
| 970 | |
Haiyang Zhang | 5fa9d3c | 2011-04-21 12:30:42 -0700 | [diff] [blame] | 971 | static void netvsc_send_recv_completion(struct hv_device *device, |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 972 | struct vmbus_channel *channel, |
KY Srinivasan | 97c1723 | 2014-02-16 16:38:44 -0800 | [diff] [blame] | 973 | struct netvsc_device *net_device, |
Haiyang Zhang | 63f6921 | 2012-10-02 05:30:23 +0000 | [diff] [blame] | 974 | u64 transaction_id, u32 status) |
Haiyang Zhang | 5fa9d3c | 2011-04-21 12:30:42 -0700 | [diff] [blame] | 975 | { |
| 976 | struct nvsp_message recvcompMessage; |
| 977 | int retries = 0; |
| 978 | int ret; |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 979 | struct net_device *ndev = hv_get_drvdata(device); |
Haiyang Zhang | 5fa9d3c | 2011-04-21 12:30:42 -0700 | [diff] [blame] | 980 | |
| 981 | recvcompMessage.hdr.msg_type = |
| 982 | NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE; |
| 983 | |
Haiyang Zhang | 63f6921 | 2012-10-02 05:30:23 +0000 | [diff] [blame] | 984 | recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status; |
Haiyang Zhang | 5fa9d3c | 2011-04-21 12:30:42 -0700 | [diff] [blame] | 985 | |
| 986 | retry_send_cmplt: |
| 987 | /* Send the completion */ |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 988 | ret = vmbus_sendpacket(channel, &recvcompMessage, |
Haiyang Zhang | 5fa9d3c | 2011-04-21 12:30:42 -0700 | [diff] [blame] | 989 | sizeof(struct nvsp_message), transaction_id, |
| 990 | VM_PKT_COMP, 0); |
| 991 | if (ret == 0) { |
| 992 | /* success */ |
| 993 | /* no-op */ |
K. Y. Srinivasan | d2598f0 | 2011-08-25 09:48:58 -0700 | [diff] [blame] | 994 | } else if (ret == -EAGAIN) { |
Haiyang Zhang | 5fa9d3c | 2011-04-21 12:30:42 -0700 | [diff] [blame] | 995 | /* no more room...wait a bit and attempt to retry 3 times */ |
| 996 | retries++; |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 997 | netdev_err(ndev, "unable to send receive completion pkt" |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 998 | " (tid %llx)...retrying %d\n", transaction_id, retries); |
Haiyang Zhang | 5fa9d3c | 2011-04-21 12:30:42 -0700 | [diff] [blame] | 999 | |
| 1000 | if (retries < 4) { |
| 1001 | udelay(100); |
| 1002 | goto retry_send_cmplt; |
| 1003 | } else { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 1004 | netdev_err(ndev, "unable to send receive " |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 1005 | "completion pkt (tid %llx)...give up retrying\n", |
Haiyang Zhang | 5fa9d3c | 2011-04-21 12:30:42 -0700 | [diff] [blame] | 1006 | transaction_id); |
| 1007 | } |
| 1008 | } else { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 1009 | netdev_err(ndev, "unable to send receive " |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 1010 | "completion pkt - %llx\n", transaction_id); |
Haiyang Zhang | 5fa9d3c | 2011-04-21 12:30:42 -0700 | [diff] [blame] | 1011 | } |
| 1012 | } |
| 1013 | |
KY Srinivasan | 97c1723 | 2014-02-16 16:38:44 -0800 | [diff] [blame] | 1014 | static void netvsc_receive(struct netvsc_device *net_device, |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1015 | struct vmbus_channel *channel, |
KY Srinivasan | 97c1723 | 2014-02-16 16:38:44 -0800 | [diff] [blame] | 1016 | struct hv_device *device, |
| 1017 | struct vmpacket_descriptor *packet) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1018 | { |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 1019 | struct vmtransfer_page_packet_header *vmxferpage_packet; |
| 1020 | struct nvsp_message *nvsp_packet; |
Haiyang Zhang | 4baab26 | 2014-04-21 14:54:43 -0700 | [diff] [blame] | 1021 | struct hv_netvsc_packet nv_pkt; |
| 1022 | struct hv_netvsc_packet *netvsc_packet = &nv_pkt; |
| 1023 | u32 status = NVSP_STAT_SUCCESS; |
Haiyang Zhang | 4532634 | 2011-12-15 13:45:15 -0800 | [diff] [blame] | 1024 | int i; |
| 1025 | int count = 0; |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 1026 | struct net_device *ndev = hv_get_drvdata(device); |
KY Srinivasan | c4b20c6 | 2015-12-01 16:43:07 -0800 | [diff] [blame] | 1027 | void *data; |
K. Y. Srinivasan | 779b4d1 | 2011-04-26 09:20:22 -0700 | [diff] [blame] | 1028 | |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 1029 | /* |
| 1030 | * All inbound packets other than send completion should be xfer page |
| 1031 | * packet |
| 1032 | */ |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 1033 | if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 1034 | netdev_err(ndev, "Unknown packet type received - %d\n", |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 1035 | packet->type); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1036 | return; |
| 1037 | } |
| 1038 | |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 1039 | nvsp_packet = (struct nvsp_message *)((unsigned long)packet + |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 1040 | (packet->offset8 << 3)); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1041 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 1042 | /* Make sure this is a valid nvsp packet */ |
Haiyang Zhang | 53d21fd | 2010-12-10 12:03:59 -0800 | [diff] [blame] | 1043 | if (nvsp_packet->hdr.msg_type != |
| 1044 | NVSP_MSG1_TYPE_SEND_RNDIS_PKT) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 1045 | netdev_err(ndev, "Unknown nvsp packet type received-" |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 1046 | " %d\n", nvsp_packet->hdr.msg_type); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1047 | return; |
| 1048 | } |
| 1049 | |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 1050 | vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1051 | |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 1052 | if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 1053 | netdev_err(ndev, "Invalid xfer page set id - " |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 1054 | "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID, |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 1055 | vmxferpage_packet->xfer_pageset_id); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1056 | return; |
| 1057 | } |
| 1058 | |
Haiyang Zhang | 4baab26 | 2014-04-21 14:54:43 -0700 | [diff] [blame] | 1059 | count = vmxferpage_packet->range_cnt; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1060 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 1061 | /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */ |
Haiyang Zhang | 4baab26 | 2014-04-21 14:54:43 -0700 | [diff] [blame] | 1062 | for (i = 0; i < count; i++) { |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 1063 | /* Initialize the netvsc packet */ |
KY Srinivasan | c4b20c6 | 2015-12-01 16:43:07 -0800 | [diff] [blame] | 1064 | data = (void *)((unsigned long)net_device-> |
Haiyang Zhang | 4532634 | 2011-12-15 13:45:15 -0800 | [diff] [blame] | 1065 | recv_buf + vmxferpage_packet->ranges[i].byte_offset); |
Haiyang Zhang | 72a2f5b | 2010-12-10 12:03:58 -0800 | [diff] [blame] | 1066 | netvsc_packet->total_data_buflen = |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 1067 | vmxferpage_packet->ranges[i].byte_count; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1068 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 1069 | /* Pass it to the upper layer */ |
KY Srinivasan | 10082f9 | 2015-12-01 16:43:18 -0800 | [diff] [blame] | 1070 | status = rndis_filter_receive(device, netvsc_packet, &data, |
| 1071 | channel); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1072 | |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1073 | } |
| 1074 | |
Haiyang Zhang | 4baab26 | 2014-04-21 14:54:43 -0700 | [diff] [blame] | 1075 | netvsc_send_recv_completion(device, channel, net_device, |
| 1076 | vmxferpage_packet->d.trans_id, status); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1077 | } |
| 1078 | |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1079 | |
| 1080 | static void netvsc_send_table(struct hv_device *hdev, |
Haiyang Zhang | 71790a2 | 2015-07-24 10:08:40 -0700 | [diff] [blame] | 1081 | struct nvsp_message *nvmsg) |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1082 | { |
| 1083 | struct netvsc_device *nvscdev; |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 1084 | struct net_device *ndev = hv_get_drvdata(hdev); |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1085 | int i; |
| 1086 | u32 count, *tab; |
| 1087 | |
| 1088 | nvscdev = get_outbound_net_device(hdev); |
| 1089 | if (!nvscdev) |
| 1090 | return; |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1091 | |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1092 | count = nvmsg->msg.v5_msg.send_table.count; |
| 1093 | if (count != VRSS_SEND_TAB_SIZE) { |
| 1094 | netdev_err(ndev, "Received wrong send-table size:%u\n", count); |
| 1095 | return; |
| 1096 | } |
| 1097 | |
| 1098 | tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table + |
| 1099 | nvmsg->msg.v5_msg.send_table.offset); |
| 1100 | |
| 1101 | for (i = 0; i < count; i++) |
| 1102 | nvscdev->send_table[i] = tab[i]; |
| 1103 | } |
| 1104 | |
Vitaly Kuznetsov | f9a7da9 | 2016-08-15 17:48:39 +0200 | [diff] [blame^] | 1105 | static void netvsc_send_vf(struct net_device_context *net_device_ctx, |
Haiyang Zhang | 71790a2 | 2015-07-24 10:08:40 -0700 | [diff] [blame] | 1106 | struct nvsp_message *nvmsg) |
| 1107 | { |
Vitaly Kuznetsov | f9a7da9 | 2016-08-15 17:48:39 +0200 | [diff] [blame^] | 1108 | net_device_ctx->vf_alloc = nvmsg->msg.v4_msg.vf_assoc.allocated; |
| 1109 | net_device_ctx->vf_serial = nvmsg->msg.v4_msg.vf_assoc.serial; |
Haiyang Zhang | 71790a2 | 2015-07-24 10:08:40 -0700 | [diff] [blame] | 1110 | } |
| 1111 | |
| 1112 | static inline void netvsc_receive_inband(struct hv_device *hdev, |
Vitaly Kuznetsov | f9a7da9 | 2016-08-15 17:48:39 +0200 | [diff] [blame^] | 1113 | struct net_device_context *net_device_ctx, |
| 1114 | struct nvsp_message *nvmsg) |
Haiyang Zhang | 71790a2 | 2015-07-24 10:08:40 -0700 | [diff] [blame] | 1115 | { |
| 1116 | switch (nvmsg->hdr.msg_type) { |
| 1117 | case NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE: |
| 1118 | netvsc_send_table(hdev, nvmsg); |
| 1119 | break; |
| 1120 | |
| 1121 | case NVSP_MSG4_TYPE_SEND_VF_ASSOCIATION: |
Vitaly Kuznetsov | f9a7da9 | 2016-08-15 17:48:39 +0200 | [diff] [blame^] | 1122 | netvsc_send_vf(net_device_ctx, nvmsg); |
Haiyang Zhang | 71790a2 | 2015-07-24 10:08:40 -0700 | [diff] [blame] | 1123 | break; |
| 1124 | } |
| 1125 | } |
| 1126 | |
K. Y. Srinivasan | 99a50bb | 2016-07-05 16:52:46 -0700 | [diff] [blame] | 1127 | static void netvsc_process_raw_pkt(struct hv_device *device, |
| 1128 | struct vmbus_channel *channel, |
| 1129 | struct netvsc_device *net_device, |
| 1130 | struct net_device *ndev, |
| 1131 | u64 request_id, |
| 1132 | struct vmpacket_descriptor *desc) |
| 1133 | { |
| 1134 | struct nvsp_message *nvmsg; |
Vitaly Kuznetsov | f9a7da9 | 2016-08-15 17:48:39 +0200 | [diff] [blame^] | 1135 | struct net_device_context *net_device_ctx = netdev_priv(ndev); |
K. Y. Srinivasan | 99a50bb | 2016-07-05 16:52:46 -0700 | [diff] [blame] | 1136 | |
| 1137 | nvmsg = (struct nvsp_message *)((unsigned long) |
| 1138 | desc + (desc->offset8 << 3)); |
| 1139 | |
| 1140 | switch (desc->type) { |
| 1141 | case VM_PKT_COMP: |
| 1142 | netvsc_send_completion(net_device, channel, device, desc); |
| 1143 | break; |
| 1144 | |
| 1145 | case VM_PKT_DATA_USING_XFER_PAGES: |
| 1146 | netvsc_receive(net_device, channel, device, desc); |
| 1147 | break; |
| 1148 | |
| 1149 | case VM_PKT_DATA_INBAND: |
Vitaly Kuznetsov | f9a7da9 | 2016-08-15 17:48:39 +0200 | [diff] [blame^] | 1150 | netvsc_receive_inband(device, net_device_ctx, nvmsg); |
K. Y. Srinivasan | 99a50bb | 2016-07-05 16:52:46 -0700 | [diff] [blame] | 1151 | break; |
| 1152 | |
| 1153 | default: |
| 1154 | netdev_err(ndev, "unhandled packet type %d, tid %llx\n", |
| 1155 | desc->type, request_id); |
| 1156 | break; |
| 1157 | } |
| 1158 | } |
| 1159 | |
| 1160 | |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1161 | void netvsc_channel_cb(void *context) |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1162 | { |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 1163 | int ret; |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1164 | struct vmbus_channel *channel = (struct vmbus_channel *)context; |
| 1165 | struct hv_device *device; |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 1166 | struct netvsc_device *net_device; |
| 1167 | u32 bytes_recvd; |
| 1168 | u64 request_id; |
Greg Kroah-Hartman | 8dc0a06 | 2009-08-27 16:02:36 -0700 | [diff] [blame] | 1169 | struct vmpacket_descriptor *desc; |
Bill Pemberton | c6fcf0b | 2010-04-27 16:23:47 -0400 | [diff] [blame] | 1170 | unsigned char *buffer; |
| 1171 | int bufferlen = NETVSC_PACKET_SIZE; |
K. Y. Srinivasan | 2ddd5e5 | 2011-09-13 10:59:49 -0700 | [diff] [blame] | 1172 | struct net_device *ndev; |
K. Y. Srinivasan | 99a50bb | 2016-07-05 16:52:46 -0700 | [diff] [blame] | 1173 | bool need_to_commit = false; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1174 | |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1175 | if (channel->primary_channel != NULL) |
| 1176 | device = channel->primary_channel->device_obj; |
| 1177 | else |
| 1178 | device = channel->device_obj; |
| 1179 | |
Haiyang Zhang | 5a71ae3 | 2010-12-10 12:03:55 -0800 | [diff] [blame] | 1180 | net_device = get_inbound_net_device(device); |
K. Y. Srinivasan | 2ddd5e5 | 2011-09-13 10:59:49 -0700 | [diff] [blame] | 1181 | if (!net_device) |
KY Srinivasan | ee0c4c3 | 2014-02-16 16:38:45 -0800 | [diff] [blame] | 1182 | return; |
Vitaly Kuznetsov | 0a1275c | 2016-05-13 13:55:23 +0200 | [diff] [blame] | 1183 | ndev = hv_get_drvdata(device); |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1184 | buffer = get_per_channel_state(channel); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1185 | |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 1186 | do { |
K. Y. Srinivasan | 99a50bb | 2016-07-05 16:52:46 -0700 | [diff] [blame] | 1187 | desc = get_next_pkt_raw(channel); |
| 1188 | if (desc != NULL) { |
| 1189 | netvsc_process_raw_pkt(device, |
| 1190 | channel, |
| 1191 | net_device, |
| 1192 | ndev, |
| 1193 | desc->trans_id, |
| 1194 | desc); |
| 1195 | |
| 1196 | put_pkt_raw(channel, desc); |
| 1197 | need_to_commit = true; |
| 1198 | continue; |
| 1199 | } |
| 1200 | if (need_to_commit) { |
| 1201 | need_to_commit = false; |
| 1202 | commit_rd_index(channel); |
| 1203 | } |
| 1204 | |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1205 | ret = vmbus_recvpacket_raw(channel, buffer, bufferlen, |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 1206 | &bytes_recvd, &request_id); |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 1207 | if (ret == 0) { |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 1208 | if (bytes_recvd > 0) { |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 1209 | desc = (struct vmpacket_descriptor *)buffer; |
K. Y. Srinivasan | 99a50bb | 2016-07-05 16:52:46 -0700 | [diff] [blame] | 1210 | netvsc_process_raw_pkt(device, |
| 1211 | channel, |
| 1212 | net_device, |
| 1213 | ndev, |
| 1214 | request_id, |
| 1215 | desc); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1216 | |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1217 | |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 1218 | } else { |
KY Srinivasan | ee0c4c3 | 2014-02-16 16:38:45 -0800 | [diff] [blame] | 1219 | /* |
| 1220 | * We are done for this pass. |
| 1221 | */ |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1222 | break; |
| 1223 | } |
KY Srinivasan | ee0c4c3 | 2014-02-16 16:38:45 -0800 | [diff] [blame] | 1224 | |
K. Y. Srinivasan | 3d5cad9 | 2011-08-25 09:48:59 -0700 | [diff] [blame] | 1225 | } else if (ret == -ENOBUFS) { |
KY Srinivasan | ee0c4c3 | 2014-02-16 16:38:45 -0800 | [diff] [blame] | 1226 | if (bufferlen > NETVSC_PACKET_SIZE) |
| 1227 | kfree(buffer); |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 1228 | /* Handle large packet */ |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 1229 | buffer = kmalloc(bytes_recvd, GFP_ATOMIC); |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 1230 | if (buffer == NULL) { |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 1231 | /* Try again next time around */ |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 1232 | netdev_err(ndev, |
Greg Kroah-Hartman | 21a80820 | 2009-09-02 10:33:05 -0700 | [diff] [blame] | 1233 | "unable to allocate buffer of size " |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 1234 | "(%d)!!\n", bytes_recvd); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1235 | break; |
| 1236 | } |
| 1237 | |
Haiyang Zhang | 85799a3 | 2010-12-10 12:03:54 -0800 | [diff] [blame] | 1238 | bufferlen = bytes_recvd; |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1239 | } |
| 1240 | } while (1); |
| 1241 | |
KY Srinivasan | ee0c4c3 | 2014-02-16 16:38:45 -0800 | [diff] [blame] | 1242 | if (bufferlen > NETVSC_PACKET_SIZE) |
| 1243 | kfree(buffer); |
Hank Janssen | fceaf24 | 2009-07-13 15:34:54 -0700 | [diff] [blame] | 1244 | return; |
| 1245 | } |
Haiyang Zhang | af24ce4 | 2011-04-21 12:30:40 -0700 | [diff] [blame] | 1246 | |
| 1247 | /* |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1248 | * netvsc_device_add - Callback when the device belonging to this |
| 1249 | * driver is added |
| 1250 | */ |
K. Y. Srinivasan | 7bd23a4 | 2011-05-10 07:54:53 -0700 | [diff] [blame] | 1251 | int netvsc_device_add(struct hv_device *device, void *additional_info) |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1252 | { |
Vitaly Kuznetsov | 8809883 | 2016-05-13 13:55:25 +0200 | [diff] [blame] | 1253 | int i, ret = 0; |
K. Y. Srinivasan | aae2398 | 2011-05-12 19:35:05 -0700 | [diff] [blame] | 1254 | int ring_size = |
| 1255 | ((struct netvsc_device_info *)additional_info)->ring_size; |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1256 | struct netvsc_device *net_device; |
Vitaly Kuznetsov | 8809883 | 2016-05-13 13:55:25 +0200 | [diff] [blame] | 1257 | struct net_device *ndev = hv_get_drvdata(device); |
| 1258 | struct net_device_context *net_device_ctx = netdev_priv(ndev); |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1259 | |
Vitaly Kuznetsov | 8809883 | 2016-05-13 13:55:25 +0200 | [diff] [blame] | 1260 | net_device = alloc_net_device(); |
Dan Carpenter | b1c8492 | 2014-09-04 14:11:23 +0300 | [diff] [blame] | 1261 | if (!net_device) |
| 1262 | return -ENOMEM; |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1263 | |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1264 | net_device->ring_size = ring_size; |
| 1265 | |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1266 | /* Initialize the NetVSC channel extension */ |
K. Y. Srinivasan | 35abb21 | 2011-05-10 07:55:41 -0700 | [diff] [blame] | 1267 | init_completion(&net_device->channel_init_wait); |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1268 | |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1269 | set_per_channel_state(device->channel, net_device->cb_buffer); |
| 1270 | |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1271 | /* Open the channel */ |
K. Y. Srinivasan | aae2398 | 2011-05-12 19:35:05 -0700 | [diff] [blame] | 1272 | ret = vmbus_open(device->channel, ring_size * PAGE_SIZE, |
| 1273 | ring_size * PAGE_SIZE, NULL, 0, |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1274 | netvsc_channel_cb, device->channel); |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1275 | |
| 1276 | if (ret != 0) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 1277 | netdev_err(ndev, "unable to open channel: %d\n", ret); |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1278 | goto cleanup; |
| 1279 | } |
| 1280 | |
| 1281 | /* Channel is opened */ |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 1282 | pr_info("hv_netvsc channel opened successfully\n"); |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1283 | |
Vitaly Kuznetsov | 8809883 | 2016-05-13 13:55:25 +0200 | [diff] [blame] | 1284 | /* If we're reopening the device we may have multiple queues, fill the |
| 1285 | * chn_table with the default channel to use it before subchannels are |
| 1286 | * opened. |
| 1287 | */ |
| 1288 | for (i = 0; i < VRSS_CHANNEL_MAX; i++) |
| 1289 | net_device->chn_table[i] = device->channel; |
| 1290 | |
| 1291 | /* Writing nvdev pointer unlocks netvsc_send(), make sure chn_table is |
| 1292 | * populated. |
| 1293 | */ |
| 1294 | wmb(); |
| 1295 | |
| 1296 | net_device_ctx->nvdev = net_device; |
Haiyang Zhang | 5b54dac | 2014-04-21 10:20:28 -0700 | [diff] [blame] | 1297 | |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1298 | /* Connect with the NetVsp */ |
| 1299 | ret = netvsc_connect_vsp(device); |
| 1300 | if (ret != 0) { |
Haiyang Zhang | d987115 | 2011-09-01 12:19:41 -0700 | [diff] [blame] | 1301 | netdev_err(ndev, |
Haiyang Zhang | c909ebb | 2011-09-01 12:19:40 -0700 | [diff] [blame] | 1302 | "unable to connect to NetVSP - %d\n", ret); |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1303 | goto close; |
| 1304 | } |
| 1305 | |
| 1306 | return ret; |
| 1307 | |
| 1308 | close: |
| 1309 | /* Now, we can close the channel safely */ |
| 1310 | vmbus_close(device->channel); |
| 1311 | |
| 1312 | cleanup: |
Haiyang Zhang | f90251c | 2014-08-15 19:18:19 +0000 | [diff] [blame] | 1313 | free_netvsc_device(net_device); |
Haiyang Zhang | b637e02 | 2011-04-21 12:30:45 -0700 | [diff] [blame] | 1314 | |
| 1315 | return ret; |
| 1316 | } |