#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/sysctl.h>
#include <linux/reboot.h>
#include <linux/hyperv.h>
#include <linux/clockchips.h>
#include <linux/ptp_clock_kernel.h>
#include <asm/mshyperv.h>
#include "hyperv_vmbus.h"
#define SD_VERSION (SD_MAJOR << 16 | SD_MINOR)
#define SD_VERSION_1 (SD_MAJOR_1 << 16 | SD_MINOR)
#define TS_VERSION (TS_MAJOR << 16 | TS_MINOR)
#define TS_VERSION_1 (TS_MAJOR_1 << 16 | TS_MINOR)
#define TS_VERSION_3 (TS_MAJOR_3 << 16 | TS_MINOR)
#define HB_VERSION (HB_MAJOR << 16 | HB_MINOR)
#define HB_VERSION_1 (HB_MAJOR_1 << 16 | HB_MINOR)
static int sd_srv_version;
static int ts_srv_version;
static int hb_srv_version;
static const int sd_versions[] = {
static const int ts_versions[] = {
static const int hb_versions[] = {
static const int fw_versions[] = {
static void shutdown_onchannelcallback(void *context);
static struct hv_util_service util_shutdown = {
.util_cb = shutdown_onchannelcallback,