]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/dev/hyperv/utilities/hv_util.c
MFC 302698-302704,302706
[FreeBSD/stable/10.git] / sys / dev / hyperv / utilities / hv_util.c
1 /*-
2  * Copyright (c) 2014,2016 Microsoft Corp.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice unmodified, this list of conditions, and the following
10  *    disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 /*
30  * A common driver for all hyper-V util services.
31  */
32
33 #include <sys/param.h>
34 #include <sys/kernel.h>
35 #include <sys/bus.h>
36 #include <sys/malloc.h>
37 #include <sys/module.h>
38 #include <sys/reboot.h>
39 #include <sys/timetc.h>
40 #include <sys/syscallsubr.h>
41
42 #include <dev/hyperv/include/hyperv.h>
43 #include "hv_util.h"
44
45 void
46 hv_negotiate_version(
47         struct hv_vmbus_icmsg_hdr*              icmsghdrp,
48         struct hv_vmbus_icmsg_negotiate*        negop,
49         uint8_t*                                buf)
50 {
51         icmsghdrp->icmsgsize = 0x10;
52
53         negop = (struct hv_vmbus_icmsg_negotiate *)&buf[
54                 sizeof(struct hv_vmbus_pipe_hdr) +
55                 sizeof(struct hv_vmbus_icmsg_hdr)];
56
57         if (negop->icframe_vercnt >= 2 &&
58             negop->icversion_data[1].major == 3) {
59                 negop->icversion_data[0].major = 3;
60                 negop->icversion_data[0].minor = 0;
61                 negop->icversion_data[1].major = 3;
62                 negop->icversion_data[1].minor = 0;
63         } else {
64                 negop->icversion_data[0].major = 1;
65                 negop->icversion_data[0].minor = 0;
66                 negop->icversion_data[1].major = 1;
67                 negop->icversion_data[1].minor = 0;
68         }
69
70         negop->icframe_vercnt = 1;
71         negop->icmsg_vercnt = 1;
72 }
73
74 int
75 hv_util_attach(device_t dev)
76 {
77         struct hv_util_sc*      softc;
78         int                     ret;
79
80         softc = device_get_softc(dev);
81         softc->channel = vmbus_get_channel(dev);
82         softc->receive_buffer =
83                 malloc(4 * PAGE_SIZE, M_DEVBUF, M_WAITOK | M_ZERO);
84
85         /*
86          * These services are not performance critical and do not need
87          * batched reading. Furthermore, some services such as KVP can
88          * only handle one message from the host at a time.
89          * Turn off batched reading for all util drivers before we open the
90          * channel.
91          */
92         hv_set_channel_read_state(softc->channel, FALSE);
93
94         ret = hv_vmbus_channel_open(softc->channel, 4 * PAGE_SIZE,
95                         4 * PAGE_SIZE, NULL, 0,
96                         softc->callback, softc);
97
98         if (ret)
99                 goto error0;
100
101         return (0);
102
103 error0:
104         free(softc->receive_buffer, M_DEVBUF);
105         return (ret);
106 }
107
108 int
109 hv_util_detach(device_t dev)
110 {
111         struct hv_util_sc *sc = device_get_softc(dev);
112
113         hv_vmbus_channel_close(sc->channel);
114         free(sc->receive_buffer, M_DEVBUF);
115
116         return (0);
117 }