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