#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/debugfs.h>
#include <linux/completion.h>
#include <linux/watchdog.h>
#include <linux/mei_cl_bus.h>
#define INTEL_AMT_WATCHDOG_ID "iamt_wdt"
#define MEI_WDT_DEFAULT_TIMEOUT 120
#define MEI_WDT_MIN_TIMEOUT 120
#define MEI_WDT_MAX_TIMEOUT 65535
#define MEI_MANAGEMENT_CONTROL 0x02
#define MEI_MC_VERSION_NUMBER 0x10
#define MEI_MC_START_WD_TIMER_REQ 0x13
#define MEI_MC_START_WD_TIMER_RES 0x83
#define MEI_WDT_STATUS_SUCCESS 0
#define MEI_WDT_WDSTATE_NOT_REQUIRED 0x1
#define MEI_MC_STOP_WD_TIMER_REQ 0x14
static const char *mei_wdt_state_str(enum mei_wdt_state state)