Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[linux-btrfs-devel.git] / drivers / staging / hv / netvsc.c
blobb902579c7fe6802c26e7eb6882a37793ab7ce6e1
1 /*
2 * Copyright (c) 2009, Microsoft Corporation.
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.
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.
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 * Authors:
18 * Haiyang Zhang <haiyangz@microsoft.com>
19 * Hank Janssen <hjanssen@microsoft.com>
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #include <linux/kernel.h>
24 #include <linux/sched.h>
25 #include <linux/wait.h>
26 #include <linux/mm.h>
27 #include <linux/delay.h>
28 #include <linux/io.h>
29 #include <linux/slab.h>
30 #include <linux/netdevice.h>
32 #include "hyperv_net.h"
35 static struct netvsc_device *alloc_net_device(struct hv_device *device)
37 struct netvsc_device *net_device;
38 struct net_device *ndev = hv_get_drvdata(device);
40 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
41 if (!net_device)
42 return NULL;
45 net_device->destroy = false;
46 net_device->dev = device;
47 net_device->ndev = ndev;
49 hv_set_drvdata(device, net_device);
50 return net_device;
53 static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
55 struct netvsc_device *net_device;
57 net_device = hv_get_drvdata(device);
58 if (net_device && net_device->destroy)
59 net_device = NULL;
61 return net_device;
64 static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
66 struct netvsc_device *net_device;
68 net_device = hv_get_drvdata(device);
70 if (!net_device)
71 goto get_in_err;
73 if (net_device->destroy &&
74 atomic_read(&net_device->num_outstanding_sends) == 0)
75 net_device = NULL;
77 get_in_err:
78 return net_device;
82 static int netvsc_destroy_recv_buf(struct netvsc_device *net_device)
84 struct nvsp_message *revoke_packet;
85 int ret = 0;
86 struct net_device *ndev = net_device->ndev;
89 * If we got a section count, it means we received a
90 * SendReceiveBufferComplete msg (ie sent
91 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
92 * to send a revoke msg here
94 if (net_device->recv_section_cnt) {
95 /* Send the revoke receive buffer */
96 revoke_packet = &net_device->revoke_packet;
97 memset(revoke_packet, 0, sizeof(struct nvsp_message));
99 revoke_packet->hdr.msg_type =
100 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
101 revoke_packet->msg.v1_msg.
102 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
104 ret = vmbus_sendpacket(net_device->dev->channel,
105 revoke_packet,
106 sizeof(struct nvsp_message),
107 (unsigned long)revoke_packet,
108 VM_PKT_DATA_INBAND, 0);
110 * If we failed here, we might as well return and
111 * have a leak rather than continue and a bugchk
113 if (ret != 0) {
114 netdev_err(ndev, "unable to send "
115 "revoke receive buffer to netvsp\n");
116 return ret;
120 /* Teardown the gpadl on the vsp end */
121 if (net_device->recv_buf_gpadl_handle) {
122 ret = vmbus_teardown_gpadl(net_device->dev->channel,
123 net_device->recv_buf_gpadl_handle);
125 /* If we failed here, we might as well return and have a leak
126 * rather than continue and a bugchk
128 if (ret != 0) {
129 netdev_err(ndev,
130 "unable to teardown receive buffer's gpadl\n");
131 return ret;
133 net_device->recv_buf_gpadl_handle = 0;
136 if (net_device->recv_buf) {
137 /* Free up the receive buffer */
138 free_pages((unsigned long)net_device->recv_buf,
139 get_order(net_device->recv_buf_size));
140 net_device->recv_buf = NULL;
143 if (net_device->recv_section) {
144 net_device->recv_section_cnt = 0;
145 kfree(net_device->recv_section);
146 net_device->recv_section = NULL;
149 return ret;
152 static int netvsc_init_recv_buf(struct hv_device *device)
154 int ret = 0;
155 int t;
156 struct netvsc_device *net_device;
157 struct nvsp_message *init_packet;
158 struct net_device *ndev;
160 net_device = get_outbound_net_device(device);
161 if (!net_device)
162 return -ENODEV;
163 ndev = net_device->ndev;
165 net_device->recv_buf =
166 (void *)__get_free_pages(GFP_KERNEL|__GFP_ZERO,
167 get_order(net_device->recv_buf_size));
168 if (!net_device->recv_buf) {
169 netdev_err(ndev, "unable to allocate receive "
170 "buffer of size %d\n", net_device->recv_buf_size);
171 ret = -ENOMEM;
172 goto cleanup;
176 * Establish the gpadl handle for this buffer on this
177 * channel. Note: This call uses the vmbus connection rather
178 * than the channel to establish the gpadl handle.
180 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
181 net_device->recv_buf_size,
182 &net_device->recv_buf_gpadl_handle);
183 if (ret != 0) {
184 netdev_err(ndev,
185 "unable to establish receive buffer's gpadl\n");
186 goto cleanup;
190 /* Notify the NetVsp of the gpadl handle */
191 init_packet = &net_device->channel_init_pkt;
193 memset(init_packet, 0, sizeof(struct nvsp_message));
195 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
196 init_packet->msg.v1_msg.send_recv_buf.
197 gpadl_handle = net_device->recv_buf_gpadl_handle;
198 init_packet->msg.v1_msg.
199 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
201 /* Send the gpadl notification request */
202 ret = vmbus_sendpacket(device->channel, init_packet,
203 sizeof(struct nvsp_message),
204 (unsigned long)init_packet,
205 VM_PKT_DATA_INBAND,
206 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
207 if (ret != 0) {
208 netdev_err(ndev,
209 "unable to send receive buffer's gpadl to netvsp\n");
210 goto cleanup;
213 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
214 BUG_ON(t == 0);
217 /* Check the response */
218 if (init_packet->msg.v1_msg.
219 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
220 netdev_err(ndev, "Unable to complete receive buffer "
221 "initialization with NetVsp - status %d\n",
222 init_packet->msg.v1_msg.
223 send_recv_buf_complete.status);
224 ret = -EINVAL;
225 goto cleanup;
228 /* Parse the response */
230 net_device->recv_section_cnt = init_packet->msg.
231 v1_msg.send_recv_buf_complete.num_sections;
233 net_device->recv_section = kmalloc(net_device->recv_section_cnt
234 * sizeof(struct nvsp_1_receive_buffer_section), GFP_KERNEL);
235 if (net_device->recv_section == NULL) {
236 ret = -EINVAL;
237 goto cleanup;
240 memcpy(net_device->recv_section,
241 init_packet->msg.v1_msg.
242 send_recv_buf_complete.sections,
243 net_device->recv_section_cnt *
244 sizeof(struct nvsp_1_receive_buffer_section));
247 * For 1st release, there should only be 1 section that represents the
248 * entire receive buffer
250 if (net_device->recv_section_cnt != 1 ||
251 net_device->recv_section->offset != 0) {
252 ret = -EINVAL;
253 goto cleanup;
256 goto exit;
258 cleanup:
259 netvsc_destroy_recv_buf(net_device);
261 exit:
262 return ret;
266 static int netvsc_connect_vsp(struct hv_device *device)
268 int ret, t;
269 struct netvsc_device *net_device;
270 struct nvsp_message *init_packet;
271 int ndis_version;
272 struct net_device *ndev;
274 net_device = get_outbound_net_device(device);
275 if (!net_device)
276 return -ENODEV;
277 ndev = net_device->ndev;
279 init_packet = &net_device->channel_init_pkt;
281 memset(init_packet, 0, sizeof(struct nvsp_message));
282 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
283 init_packet->msg.init_msg.init.min_protocol_ver =
284 NVSP_MIN_PROTOCOL_VERSION;
285 init_packet->msg.init_msg.init.max_protocol_ver =
286 NVSP_MAX_PROTOCOL_VERSION;
288 /* Send the init request */
289 ret = vmbus_sendpacket(device->channel, init_packet,
290 sizeof(struct nvsp_message),
291 (unsigned long)init_packet,
292 VM_PKT_DATA_INBAND,
293 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
295 if (ret != 0)
296 goto cleanup;
298 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
300 if (t == 0) {
301 ret = -ETIMEDOUT;
302 goto cleanup;
305 if (init_packet->msg.init_msg.init_complete.status !=
306 NVSP_STAT_SUCCESS) {
307 ret = -EINVAL;
308 goto cleanup;
311 if (init_packet->msg.init_msg.init_complete.
312 negotiated_protocol_ver != NVSP_PROTOCOL_VERSION_1) {
313 ret = -EPROTO;
314 goto cleanup;
316 /* Send the ndis version */
317 memset(init_packet, 0, sizeof(struct nvsp_message));
319 ndis_version = 0x00050000;
321 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
322 init_packet->msg.v1_msg.
323 send_ndis_ver.ndis_major_ver =
324 (ndis_version & 0xFFFF0000) >> 16;
325 init_packet->msg.v1_msg.
326 send_ndis_ver.ndis_minor_ver =
327 ndis_version & 0xFFFF;
329 /* Send the init request */
330 ret = vmbus_sendpacket(device->channel, init_packet,
331 sizeof(struct nvsp_message),
332 (unsigned long)init_packet,
333 VM_PKT_DATA_INBAND, 0);
334 if (ret != 0)
335 goto cleanup;
337 /* Post the big receive buffer to NetVSP */
338 ret = netvsc_init_recv_buf(device);
340 cleanup:
341 return ret;
344 static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
346 netvsc_destroy_recv_buf(net_device);
350 * netvsc_device_remove - Callback when the root bus device is removed
352 int netvsc_device_remove(struct hv_device *device)
354 struct netvsc_device *net_device;
355 struct hv_netvsc_packet *netvsc_packet, *pos;
356 unsigned long flags;
358 net_device = hv_get_drvdata(device);
359 spin_lock_irqsave(&device->channel->inbound_lock, flags);
360 net_device->destroy = true;
361 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
363 /* Wait for all send completions */
364 while (atomic_read(&net_device->num_outstanding_sends)) {
365 dev_info(&device->device,
366 "waiting for %d requests to complete...\n",
367 atomic_read(&net_device->num_outstanding_sends));
368 udelay(100);
371 netvsc_disconnect_vsp(net_device);
374 * Since we have already drained, we don't need to busy wait
375 * as was done in final_release_stor_device()
376 * Note that we cannot set the ext pointer to NULL until
377 * we have drained - to drain the outgoing packets, we need to
378 * allow incoming packets.
381 spin_lock_irqsave(&device->channel->inbound_lock, flags);
382 hv_set_drvdata(device, NULL);
383 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
386 * At this point, no one should be accessing net_device
387 * except in here
389 dev_notice(&device->device, "net device safe to remove\n");
391 /* Now, we can close the channel safely */
392 vmbus_close(device->channel);
394 /* Release all resources */
395 list_for_each_entry_safe(netvsc_packet, pos,
396 &net_device->recv_pkt_list, list_ent) {
397 list_del(&netvsc_packet->list_ent);
398 kfree(netvsc_packet);
401 kfree(net_device);
402 return 0;
405 static void netvsc_send_completion(struct hv_device *device,
406 struct vmpacket_descriptor *packet)
408 struct netvsc_device *net_device;
409 struct nvsp_message *nvsp_packet;
410 struct hv_netvsc_packet *nvsc_packet;
411 struct net_device *ndev;
413 net_device = get_inbound_net_device(device);
414 if (!net_device)
415 return;
416 ndev = net_device->ndev;
418 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
419 (packet->offset8 << 3));
421 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
422 (nvsp_packet->hdr.msg_type ==
423 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
424 (nvsp_packet->hdr.msg_type ==
425 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE)) {
426 /* Copy the response back */
427 memcpy(&net_device->channel_init_pkt, nvsp_packet,
428 sizeof(struct nvsp_message));
429 complete(&net_device->channel_init_wait);
430 } else if (nvsp_packet->hdr.msg_type ==
431 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
432 /* Get the send context */
433 nvsc_packet = (struct hv_netvsc_packet *)(unsigned long)
434 packet->trans_id;
436 /* Notify the layer above us */
437 nvsc_packet->completion.send.send_completion(
438 nvsc_packet->completion.send.send_completion_ctx);
440 atomic_dec(&net_device->num_outstanding_sends);
441 } else {
442 netdev_err(ndev, "Unknown send completion packet type- "
443 "%d received!!\n", nvsp_packet->hdr.msg_type);
448 int netvsc_send(struct hv_device *device,
449 struct hv_netvsc_packet *packet)
451 struct netvsc_device *net_device;
452 int ret = 0;
453 struct nvsp_message sendMessage;
454 struct net_device *ndev;
456 net_device = get_outbound_net_device(device);
457 if (!net_device)
458 return -ENODEV;
459 ndev = net_device->ndev;
461 sendMessage.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
462 if (packet->is_data_pkt) {
463 /* 0 is RMC_DATA; */
464 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 0;
465 } else {
466 /* 1 is RMC_CONTROL; */
467 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 1;
470 /* Not using send buffer section */
471 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
472 0xFFFFFFFF;
473 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0;
475 if (packet->page_buf_cnt) {
476 ret = vmbus_sendpacket_pagebuffer(device->channel,
477 packet->page_buf,
478 packet->page_buf_cnt,
479 &sendMessage,
480 sizeof(struct nvsp_message),
481 (unsigned long)packet);
482 } else {
483 ret = vmbus_sendpacket(device->channel, &sendMessage,
484 sizeof(struct nvsp_message),
485 (unsigned long)packet,
486 VM_PKT_DATA_INBAND,
487 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
491 if (ret != 0)
492 netdev_err(ndev, "Unable to send packet %p ret %d\n",
493 packet, ret);
494 else
495 atomic_inc(&net_device->num_outstanding_sends);
497 return ret;
500 static void netvsc_send_recv_completion(struct hv_device *device,
501 u64 transaction_id)
503 struct nvsp_message recvcompMessage;
504 int retries = 0;
505 int ret;
506 struct net_device *ndev;
507 struct netvsc_device *net_device = hv_get_drvdata(device);
509 ndev = net_device->ndev;
511 recvcompMessage.hdr.msg_type =
512 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
514 /* FIXME: Pass in the status */
515 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status =
516 NVSP_STAT_SUCCESS;
518 retry_send_cmplt:
519 /* Send the completion */
520 ret = vmbus_sendpacket(device->channel, &recvcompMessage,
521 sizeof(struct nvsp_message), transaction_id,
522 VM_PKT_COMP, 0);
523 if (ret == 0) {
524 /* success */
525 /* no-op */
526 } else if (ret == -EAGAIN) {
527 /* no more room...wait a bit and attempt to retry 3 times */
528 retries++;
529 netdev_err(ndev, "unable to send receive completion pkt"
530 " (tid %llx)...retrying %d\n", transaction_id, retries);
532 if (retries < 4) {
533 udelay(100);
534 goto retry_send_cmplt;
535 } else {
536 netdev_err(ndev, "unable to send receive "
537 "completion pkt (tid %llx)...give up retrying\n",
538 transaction_id);
540 } else {
541 netdev_err(ndev, "unable to send receive "
542 "completion pkt - %llx\n", transaction_id);
546 /* Send a receive completion packet to RNDIS device (ie NetVsp) */
547 static void netvsc_receive_completion(void *context)
549 struct hv_netvsc_packet *packet = context;
550 struct hv_device *device = (struct hv_device *)packet->device;
551 struct netvsc_device *net_device;
552 u64 transaction_id = 0;
553 bool fsend_receive_comp = false;
554 unsigned long flags;
555 struct net_device *ndev;
558 * Even though it seems logical to do a GetOutboundNetDevice() here to
559 * send out receive completion, we are using GetInboundNetDevice()
560 * since we may have disable outbound traffic already.
562 net_device = get_inbound_net_device(device);
563 if (!net_device)
564 return;
565 ndev = net_device->ndev;
567 /* Overloading use of the lock. */
568 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
570 packet->xfer_page_pkt->count--;
573 * Last one in the line that represent 1 xfer page packet.
574 * Return the xfer page packet itself to the freelist
576 if (packet->xfer_page_pkt->count == 0) {
577 fsend_receive_comp = true;
578 transaction_id = packet->completion.recv.recv_completion_tid;
579 list_add_tail(&packet->xfer_page_pkt->list_ent,
580 &net_device->recv_pkt_list);
584 /* Put the packet back */
585 list_add_tail(&packet->list_ent, &net_device->recv_pkt_list);
586 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, flags);
588 /* Send a receive completion for the xfer page packet */
589 if (fsend_receive_comp)
590 netvsc_send_recv_completion(device, transaction_id);
594 static void netvsc_receive(struct hv_device *device,
595 struct vmpacket_descriptor *packet)
597 struct netvsc_device *net_device;
598 struct vmtransfer_page_packet_header *vmxferpage_packet;
599 struct nvsp_message *nvsp_packet;
600 struct hv_netvsc_packet *netvsc_packet = NULL;
601 unsigned long start;
602 unsigned long end, end_virtual;
603 /* struct netvsc_driver *netvscDriver; */
604 struct xferpage_packet *xferpage_packet = NULL;
605 int i, j;
606 int count = 0, bytes_remain = 0;
607 unsigned long flags;
608 struct net_device *ndev;
610 LIST_HEAD(listHead);
612 net_device = get_inbound_net_device(device);
613 if (!net_device)
614 return;
615 ndev = net_device->ndev;
618 * All inbound packets other than send completion should be xfer page
619 * packet
621 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
622 netdev_err(ndev, "Unknown packet type received - %d\n",
623 packet->type);
624 return;
627 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
628 (packet->offset8 << 3));
630 /* Make sure this is a valid nvsp packet */
631 if (nvsp_packet->hdr.msg_type !=
632 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
633 netdev_err(ndev, "Unknown nvsp packet type received-"
634 " %d\n", nvsp_packet->hdr.msg_type);
635 return;
638 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
640 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
641 netdev_err(ndev, "Invalid xfer page set id - "
642 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
643 vmxferpage_packet->xfer_pageset_id);
644 return;
648 * Grab free packets (range count + 1) to represent this xfer
649 * page packet. +1 to represent the xfer page packet itself.
650 * We grab it here so that we know exactly how many we can
651 * fulfil
653 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
654 while (!list_empty(&net_device->recv_pkt_list)) {
655 list_move_tail(net_device->recv_pkt_list.next, &listHead);
656 if (++count == vmxferpage_packet->range_cnt + 1)
657 break;
659 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, flags);
662 * We need at least 2 netvsc pkts (1 to represent the xfer
663 * page and at least 1 for the range) i.e. we can handled
664 * some of the xfer page packet ranges...
666 if (count < 2) {
667 netdev_err(ndev, "Got only %d netvsc pkt...needed "
668 "%d pkts. Dropping this xfer page packet completely!\n",
669 count, vmxferpage_packet->range_cnt + 1);
671 /* Return it to the freelist */
672 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
673 for (i = count; i != 0; i--) {
674 list_move_tail(listHead.next,
675 &net_device->recv_pkt_list);
677 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock,
678 flags);
680 netvsc_send_recv_completion(device,
681 vmxferpage_packet->d.trans_id);
683 return;
686 /* Remove the 1st packet to represent the xfer page packet itself */
687 xferpage_packet = (struct xferpage_packet *)listHead.next;
688 list_del(&xferpage_packet->list_ent);
690 /* This is how much we can satisfy */
691 xferpage_packet->count = count - 1;
693 if (xferpage_packet->count != vmxferpage_packet->range_cnt) {
694 netdev_err(ndev, "Needed %d netvsc pkts to satisfy "
695 "this xfer page...got %d\n",
696 vmxferpage_packet->range_cnt, xferpage_packet->count);
699 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
700 for (i = 0; i < (count - 1); i++) {
701 netvsc_packet = (struct hv_netvsc_packet *)listHead.next;
702 list_del(&netvsc_packet->list_ent);
704 /* Initialize the netvsc packet */
705 netvsc_packet->xfer_page_pkt = xferpage_packet;
706 netvsc_packet->completion.recv.recv_completion =
707 netvsc_receive_completion;
708 netvsc_packet->completion.recv.recv_completion_ctx =
709 netvsc_packet;
710 netvsc_packet->device = device;
711 /* Save this so that we can send it back */
712 netvsc_packet->completion.recv.recv_completion_tid =
713 vmxferpage_packet->d.trans_id;
715 netvsc_packet->total_data_buflen =
716 vmxferpage_packet->ranges[i].byte_count;
717 netvsc_packet->page_buf_cnt = 1;
719 netvsc_packet->page_buf[0].len =
720 vmxferpage_packet->ranges[i].byte_count;
722 start = virt_to_phys((void *)((unsigned long)net_device->
723 recv_buf + vmxferpage_packet->ranges[i].byte_offset));
725 netvsc_packet->page_buf[0].pfn = start >> PAGE_SHIFT;
726 end_virtual = (unsigned long)net_device->recv_buf
727 + vmxferpage_packet->ranges[i].byte_offset
728 + vmxferpage_packet->ranges[i].byte_count - 1;
729 end = virt_to_phys((void *)end_virtual);
731 /* Calculate the page relative offset */
732 netvsc_packet->page_buf[0].offset =
733 vmxferpage_packet->ranges[i].byte_offset &
734 (PAGE_SIZE - 1);
735 if ((end >> PAGE_SHIFT) != (start >> PAGE_SHIFT)) {
736 /* Handle frame across multiple pages: */
737 netvsc_packet->page_buf[0].len =
738 (netvsc_packet->page_buf[0].pfn <<
739 PAGE_SHIFT)
740 + PAGE_SIZE - start;
741 bytes_remain = netvsc_packet->total_data_buflen -
742 netvsc_packet->page_buf[0].len;
743 for (j = 1; j < NETVSC_PACKET_MAXPAGE; j++) {
744 netvsc_packet->page_buf[j].offset = 0;
745 if (bytes_remain <= PAGE_SIZE) {
746 netvsc_packet->page_buf[j].len =
747 bytes_remain;
748 bytes_remain = 0;
749 } else {
750 netvsc_packet->page_buf[j].len =
751 PAGE_SIZE;
752 bytes_remain -= PAGE_SIZE;
754 netvsc_packet->page_buf[j].pfn =
755 virt_to_phys((void *)(end_virtual -
756 bytes_remain)) >> PAGE_SHIFT;
757 netvsc_packet->page_buf_cnt++;
758 if (bytes_remain == 0)
759 break;
763 /* Pass it to the upper layer */
764 rndis_filter_receive(device, netvsc_packet);
766 netvsc_receive_completion(netvsc_packet->
767 completion.recv.recv_completion_ctx);
772 static void netvsc_channel_cb(void *context)
774 int ret;
775 struct hv_device *device = context;
776 struct netvsc_device *net_device;
777 u32 bytes_recvd;
778 u64 request_id;
779 unsigned char *packet;
780 struct vmpacket_descriptor *desc;
781 unsigned char *buffer;
782 int bufferlen = NETVSC_PACKET_SIZE;
783 struct net_device *ndev;
785 packet = kzalloc(NETVSC_PACKET_SIZE * sizeof(unsigned char),
786 GFP_ATOMIC);
787 if (!packet)
788 return;
789 buffer = packet;
791 net_device = get_inbound_net_device(device);
792 if (!net_device)
793 goto out;
794 ndev = net_device->ndev;
796 do {
797 ret = vmbus_recvpacket_raw(device->channel, buffer, bufferlen,
798 &bytes_recvd, &request_id);
799 if (ret == 0) {
800 if (bytes_recvd > 0) {
801 desc = (struct vmpacket_descriptor *)buffer;
802 switch (desc->type) {
803 case VM_PKT_COMP:
804 netvsc_send_completion(device, desc);
805 break;
807 case VM_PKT_DATA_USING_XFER_PAGES:
808 netvsc_receive(device, desc);
809 break;
811 default:
812 netdev_err(ndev,
813 "unhandled packet type %d, "
814 "tid %llx len %d\n",
815 desc->type, request_id,
816 bytes_recvd);
817 break;
820 /* reset */
821 if (bufferlen > NETVSC_PACKET_SIZE) {
822 kfree(buffer);
823 buffer = packet;
824 bufferlen = NETVSC_PACKET_SIZE;
826 } else {
827 /* reset */
828 if (bufferlen > NETVSC_PACKET_SIZE) {
829 kfree(buffer);
830 buffer = packet;
831 bufferlen = NETVSC_PACKET_SIZE;
834 break;
836 } else if (ret == -ENOBUFS) {
837 /* Handle large packet */
838 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
839 if (buffer == NULL) {
840 /* Try again next time around */
841 netdev_err(ndev,
842 "unable to allocate buffer of size "
843 "(%d)!!\n", bytes_recvd);
844 break;
847 bufferlen = bytes_recvd;
849 } while (1);
851 out:
852 kfree(buffer);
853 return;
857 * netvsc_device_add - Callback when the device belonging to this
858 * driver is added
860 int netvsc_device_add(struct hv_device *device, void *additional_info)
862 int ret = 0;
863 int i;
864 int ring_size =
865 ((struct netvsc_device_info *)additional_info)->ring_size;
866 struct netvsc_device *net_device;
867 struct hv_netvsc_packet *packet, *pos;
868 struct net_device *ndev;
870 net_device = alloc_net_device(device);
871 if (!net_device) {
872 ret = -ENOMEM;
873 goto cleanup;
877 * Coming into this function, struct net_device * is
878 * registered as the driver private data.
879 * In alloc_net_device(), we register struct netvsc_device *
880 * as the driver private data and stash away struct net_device *
881 * in struct netvsc_device *.
883 ndev = net_device->ndev;
885 /* Initialize the NetVSC channel extension */
886 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
887 spin_lock_init(&net_device->recv_pkt_list_lock);
889 INIT_LIST_HEAD(&net_device->recv_pkt_list);
891 for (i = 0; i < NETVSC_RECEIVE_PACKETLIST_COUNT; i++) {
892 packet = kzalloc(sizeof(struct hv_netvsc_packet) +
893 (NETVSC_RECEIVE_SG_COUNT *
894 sizeof(struct hv_page_buffer)), GFP_KERNEL);
895 if (!packet)
896 break;
898 list_add_tail(&packet->list_ent,
899 &net_device->recv_pkt_list);
901 init_completion(&net_device->channel_init_wait);
903 /* Open the channel */
904 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
905 ring_size * PAGE_SIZE, NULL, 0,
906 netvsc_channel_cb, device);
908 if (ret != 0) {
909 netdev_err(ndev, "unable to open channel: %d\n", ret);
910 goto cleanup;
913 /* Channel is opened */
914 pr_info("hv_netvsc channel opened successfully\n");
916 /* Connect with the NetVsp */
917 ret = netvsc_connect_vsp(device);
918 if (ret != 0) {
919 netdev_err(ndev,
920 "unable to connect to NetVSP - %d\n", ret);
921 goto close;
924 return ret;
926 close:
927 /* Now, we can close the channel safely */
928 vmbus_close(device->channel);
930 cleanup:
932 if (net_device) {
933 list_for_each_entry_safe(packet, pos,
934 &net_device->recv_pkt_list,
935 list_ent) {
936 list_del(&packet->list_ent);
937 kfree(packet);
940 kfree(net_device);
943 return ret;