2013-05-03 02:03:36 +00:00
|
|
|
/*-
|
2014-09-13 02:15:31 +00:00
|
|
|
* Copyright (c) 2014 Microsoft Corp.
|
2013-05-03 02:03:36 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice unmodified, this list of conditions, and the following
|
|
|
|
* disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2014-09-13 02:15:31 +00:00
|
|
|
*
|
|
|
|
* $FreeBSD$
|
2013-05-03 02:03:36 +00:00
|
|
|
*/
|
|
|
|
|
2014-09-13 02:15:31 +00:00
|
|
|
/*
|
2013-05-03 02:03:36 +00:00
|
|
|
* A common driver for all hyper-V util services.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/module.h>
|
|
|
|
#include <sys/reboot.h>
|
|
|
|
#include <sys/timetc.h>
|
2013-09-09 08:07:46 +00:00
|
|
|
#include <sys/syscallsubr.h>
|
2013-05-03 02:03:36 +00:00
|
|
|
|
|
|
|
#include <dev/hyperv/include/hyperv.h>
|
2016-02-24 05:01:18 +00:00
|
|
|
#include "hv_util.h"
|
2013-05-03 02:03:36 +00:00
|
|
|
|
2016-02-24 05:01:18 +00:00
|
|
|
void
|
2013-05-03 02:03:36 +00:00
|
|
|
hv_negotiate_version(
|
|
|
|
struct hv_vmbus_icmsg_hdr* icmsghdrp,
|
|
|
|
struct hv_vmbus_icmsg_negotiate* negop,
|
|
|
|
uint8_t* buf)
|
2013-09-09 08:07:46 +00:00
|
|
|
{
|
2013-05-03 02:03:36 +00:00
|
|
|
icmsghdrp->icmsgsize = 0x10;
|
|
|
|
|
|
|
|
negop = (struct hv_vmbus_icmsg_negotiate *)&buf[
|
|
|
|
sizeof(struct hv_vmbus_pipe_hdr) +
|
|
|
|
sizeof(struct hv_vmbus_icmsg_hdr)];
|
|
|
|
|
2013-09-09 08:07:46 +00:00
|
|
|
if (negop->icframe_vercnt >= 2 &&
|
2013-05-03 02:03:36 +00:00
|
|
|
negop->icversion_data[1].major == 3) {
|
|
|
|
negop->icversion_data[0].major = 3;
|
|
|
|
negop->icversion_data[0].minor = 0;
|
|
|
|
negop->icversion_data[1].major = 3;
|
|
|
|
negop->icversion_data[1].minor = 0;
|
|
|
|
} else {
|
|
|
|
negop->icversion_data[0].major = 1;
|
|
|
|
negop->icversion_data[0].minor = 0;
|
|
|
|
negop->icversion_data[1].major = 1;
|
|
|
|
negop->icversion_data[1].minor = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
negop->icframe_vercnt = 1;
|
|
|
|
negop->icmsg_vercnt = 1;
|
|
|
|
}
|
|
|
|
|
2016-02-24 05:01:18 +00:00
|
|
|
int
|
2013-05-03 02:03:36 +00:00
|
|
|
hv_util_attach(device_t dev)
|
|
|
|
{
|
2016-02-24 05:01:18 +00:00
|
|
|
struct hv_device* hv_dev;
|
|
|
|
struct hv_util_sc* softc;
|
|
|
|
int ret;
|
2013-05-03 02:03:36 +00:00
|
|
|
|
|
|
|
hv_dev = vmbus_get_devctx(dev);
|
2016-02-24 05:01:18 +00:00
|
|
|
softc = device_get_softc(dev);
|
|
|
|
softc->hv_dev = hv_dev;
|
|
|
|
softc->receive_buffer =
|
2013-09-09 08:07:46 +00:00
|
|
|
malloc(4 * PAGE_SIZE, M_DEVBUF, M_WAITOK | M_ZERO);
|
2013-05-03 02:03:36 +00:00
|
|
|
|
2015-04-29 10:12:34 +00:00
|
|
|
/*
|
|
|
|
* These services are not performance critical and do not need
|
|
|
|
* batched reading. Furthermore, some services such as KVP can
|
|
|
|
* only handle one message from the host at a time.
|
|
|
|
* Turn off batched reading for all util drivers before we open the
|
|
|
|
* channel.
|
|
|
|
*/
|
|
|
|
hv_set_channel_read_state(hv_dev->channel, FALSE);
|
|
|
|
|
2013-09-09 08:07:46 +00:00
|
|
|
ret = hv_vmbus_channel_open(hv_dev->channel, 4 * PAGE_SIZE,
|
2016-02-24 05:01:18 +00:00
|
|
|
4 * PAGE_SIZE, NULL, 0,
|
|
|
|
softc->callback, softc);
|
2013-05-03 02:03:36 +00:00
|
|
|
|
|
|
|
if (ret)
|
2016-02-24 05:01:18 +00:00
|
|
|
goto error0;
|
2013-05-03 02:03:36 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
2016-02-24 05:01:18 +00:00
|
|
|
error0:
|
|
|
|
free(softc->receive_buffer, M_DEVBUF);
|
2013-05-03 02:03:36 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2016-02-24 05:01:18 +00:00
|
|
|
int
|
2013-05-03 02:03:36 +00:00
|
|
|
hv_util_detach(device_t dev)
|
|
|
|
{
|
2016-02-24 05:01:18 +00:00
|
|
|
struct hv_device* hv_dev;
|
|
|
|
struct hv_util_sc* softc;
|
2014-09-13 02:15:31 +00:00
|
|
|
|
2013-05-03 02:03:36 +00:00
|
|
|
hv_dev = vmbus_get_devctx(dev);
|
|
|
|
|
|
|
|
hv_vmbus_channel_close(hv_dev->channel);
|
2016-02-24 05:01:18 +00:00
|
|
|
softc = device_get_softc(dev);
|
2013-05-03 02:03:36 +00:00
|
|
|
|
2016-02-24 05:01:18 +00:00
|
|
|
free(softc->receive_buffer, M_DEVBUF);
|
2013-05-03 02:03:36 +00:00
|
|
|
return (0);
|
|
|
|
}
|