2016-02-24 05:01:18 +00:00
|
|
|
/*-
|
2016-04-22 05:01:43 +00:00
|
|
|
* Copyright (c) 2014,2016 Microsoft Corp.
|
2016-02-24 05:01:18 +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.
|
|
|
|
*/
|
|
|
|
|
2016-08-25 05:11:04 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2016-02-24 05:01:18 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/bus.h>
|
2016-08-25 05:11:04 +00:00
|
|
|
#include <sys/kernel.h>
|
2016-02-24 05:01:18 +00:00
|
|
|
#include <sys/module.h>
|
2016-07-28 06:46:10 +00:00
|
|
|
#include <sys/systm.h>
|
2016-02-24 05:01:18 +00:00
|
|
|
|
|
|
|
#include <dev/hyperv/include/hyperv.h>
|
2016-07-15 06:58:21 +00:00
|
|
|
#include <dev/hyperv/include/vmbus.h>
|
2016-08-25 05:11:04 +00:00
|
|
|
#include <dev/hyperv/utilities/vmbus_icreg.h>
|
2016-12-20 05:26:38 +00:00
|
|
|
#include <dev/hyperv/utilities/vmbus_icvar.h>
|
2016-08-25 05:11:04 +00:00
|
|
|
|
2016-10-24 05:36:19 +00:00
|
|
|
#define VMBUS_HEARTBEAT_FWVER_MAJOR 3
|
|
|
|
#define VMBUS_HEARTBEAT_FWVER \
|
|
|
|
VMBUS_IC_VERSION(VMBUS_HEARTBEAT_FWVER_MAJOR, 0)
|
|
|
|
|
|
|
|
#define VMBUS_HEARTBEAT_MSGVER_MAJOR 3
|
|
|
|
#define VMBUS_HEARTBEAT_MSGVER \
|
|
|
|
VMBUS_IC_VERSION(VMBUS_HEARTBEAT_MSGVER_MAJOR, 0)
|
|
|
|
|
2016-12-20 07:34:44 +00:00
|
|
|
static int vmbus_heartbeat_probe(device_t);
|
|
|
|
static int vmbus_heartbeat_attach(device_t);
|
|
|
|
|
2016-08-17 08:38:49 +00:00
|
|
|
static const struct vmbus_ic_desc vmbus_heartbeat_descs[] = {
|
|
|
|
{
|
|
|
|
.ic_guid = { .hv_guid = {
|
|
|
|
0x39, 0x4f, 0x16, 0x57, 0x15, 0x91, 0x78, 0x4e,
|
|
|
|
0xab, 0x55, 0x38, 0x2f, 0x3b, 0xd5, 0x42, 0x2d} },
|
|
|
|
.ic_desc = "Hyper-V Heartbeat"
|
|
|
|
},
|
|
|
|
VMBUS_IC_DESC_END
|
|
|
|
};
|
2016-02-24 05:01:18 +00:00
|
|
|
|
2016-12-20 07:34:44 +00:00
|
|
|
static device_method_t vmbus_heartbeat_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, vmbus_heartbeat_probe),
|
|
|
|
DEVMETHOD(device_attach, vmbus_heartbeat_attach),
|
|
|
|
DEVMETHOD(device_detach, vmbus_ic_detach),
|
|
|
|
DEVMETHOD_END
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t vmbus_heartbeat_driver = {
|
|
|
|
"hvheartbeat",
|
|
|
|
vmbus_heartbeat_methods,
|
|
|
|
sizeof(struct vmbus_ic_softc)
|
|
|
|
};
|
|
|
|
|
|
|
|
static devclass_t vmbus_heartbeat_devclass;
|
|
|
|
|
|
|
|
DRIVER_MODULE(hv_heartbeat, vmbus, vmbus_heartbeat_driver,
|
|
|
|
vmbus_heartbeat_devclass, NULL, NULL);
|
|
|
|
MODULE_VERSION(hv_heartbeat, 1);
|
|
|
|
MODULE_DEPEND(hv_heartbeat, vmbus, 1, 1, 1);
|
|
|
|
|
2016-02-24 05:01:18 +00:00
|
|
|
static void
|
2016-08-25 05:11:04 +00:00
|
|
|
vmbus_heartbeat_cb(struct vmbus_channel *chan, void *xsc)
|
2016-02-24 05:01:18 +00:00
|
|
|
{
|
2016-12-20 05:07:12 +00:00
|
|
|
struct vmbus_ic_softc *sc = xsc;
|
2016-08-25 05:11:04 +00:00
|
|
|
struct vmbus_icmsg_hdr *hdr;
|
|
|
|
int dlen, error;
|
|
|
|
uint64_t xactid;
|
|
|
|
void *data;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Receive request.
|
|
|
|
*/
|
2016-12-20 05:07:12 +00:00
|
|
|
data = sc->ic_buf;
|
2016-08-25 05:11:04 +00:00
|
|
|
dlen = sc->ic_buflen;
|
|
|
|
error = vmbus_chan_recv(chan, data, &dlen, &xactid);
|
|
|
|
KASSERT(error != ENOBUFS, ("icbuf is not large enough"));
|
|
|
|
if (error)
|
|
|
|
return;
|
|
|
|
|
2016-09-02 06:08:08 +00:00
|
|
|
if (dlen < sizeof(*hdr)) {
|
2016-08-25 05:11:04 +00:00
|
|
|
device_printf(sc->ic_dev, "invalid data len %d\n", dlen);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
hdr = data;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update request, which will be echoed back as response.
|
|
|
|
*/
|
|
|
|
switch (hdr->ic_type) {
|
|
|
|
case VMBUS_ICMSG_TYPE_NEGOTIATE:
|
2016-10-24 05:36:19 +00:00
|
|
|
error = vmbus_ic_negomsg(sc, data, &dlen,
|
|
|
|
VMBUS_HEARTBEAT_FWVER, VMBUS_HEARTBEAT_MSGVER);
|
2016-08-24 04:36:04 +00:00
|
|
|
if (error)
|
|
|
|
return;
|
2016-08-25 05:11:04 +00:00
|
|
|
break;
|
2016-02-24 05:01:18 +00:00
|
|
|
|
2016-08-25 05:11:04 +00:00
|
|
|
case VMBUS_ICMSG_TYPE_HEARTBEAT:
|
|
|
|
/* Only ic_seq is a must */
|
|
|
|
if (dlen < VMBUS_ICMSG_HEARTBEAT_SIZE_MIN) {
|
|
|
|
device_printf(sc->ic_dev, "invalid heartbeat len %d\n",
|
|
|
|
dlen);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
((struct vmbus_icmsg_heartbeat *)data)->ic_seq++;
|
|
|
|
break;
|
2016-02-24 05:01:18 +00:00
|
|
|
|
2016-08-25 05:11:04 +00:00
|
|
|
default:
|
|
|
|
device_printf(sc->ic_dev, "got 0x%08x icmsg\n", hdr->ic_type);
|
|
|
|
break;
|
2016-02-24 05:01:18 +00:00
|
|
|
}
|
2016-08-25 05:11:04 +00:00
|
|
|
|
|
|
|
/*
|
2016-12-20 04:51:14 +00:00
|
|
|
* Send response by echoing the request back.
|
2016-08-25 05:11:04 +00:00
|
|
|
*/
|
2016-12-20 04:51:14 +00:00
|
|
|
vmbus_ic_sendresp(sc, chan, data, dlen, xactid);
|
2016-02-24 05:01:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2016-12-20 07:34:44 +00:00
|
|
|
vmbus_heartbeat_probe(device_t dev)
|
2016-02-24 05:01:18 +00:00
|
|
|
{
|
2016-03-24 01:12:28 +00:00
|
|
|
|
2016-08-17 08:38:49 +00:00
|
|
|
return (vmbus_ic_probe(dev, vmbus_heartbeat_descs));
|
2016-02-24 05:01:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2016-12-20 07:34:44 +00:00
|
|
|
vmbus_heartbeat_attach(device_t dev)
|
2016-02-24 05:01:18 +00:00
|
|
|
{
|
2016-08-25 05:11:04 +00:00
|
|
|
|
2016-12-20 05:07:12 +00:00
|
|
|
return (vmbus_ic_attach(dev, vmbus_heartbeat_cb));
|
2016-02-24 05:01:18 +00:00
|
|
|
}
|