📄 whyt1_lib.c
字号:
/************************************************************************
* File: whyt1_lib.c
*
* Library for accessing WHYT1 devices.
* The code accesses hardware using WinDriver's WDC library.
* Code was generated by DriverWizard v9.01.
*
* Copyright (c) 2007 Jungo Ltd. http://www.jungo.com
*************************************************************************/
#include <stdio.h>
#include <stdarg.h>
#include "wdc_defs.h"
#include "utils.h"
#include "status_strings.h"
#include "whyt1_lib.h"
/*************************************************************
Internal definitions
*************************************************************/
/* WinDriver license registration string */
/* TODO: When using a registered WinDriver version, make sure the license string
below is your specific WinDriver license registration string and set
* the driver name to your driver's name */
#define WHYT1_DEFAULT_LICENSE_STRING "12345abcde12345.abcde"
#define WHYT1_DEFAULT_DRIVER_NAME "windrvr6"
/* WHYT1 device information struct */
typedef struct {
WD_TRANSFER *pIntTransCmds;
WHYT1_INT_HANDLER funcDiagIntHandler;
WHYT1_EVENT_HANDLER funcDiagEventHandler;
} WHYT1_DEV_CTX, *PWHYT1_DEV_CTX;
/* TODO: You can add fields to store additional device-specific information */
static CHAR gsWHYT1_LastErr[256];
/*************************************************************
Static functions prototypes and inline implementation
*************************************************************/
static BOOL DeviceValidate(const PWDC_DEVICE pDev);
static void DLLCALLCONV WHYT1_IntHandler(PVOID pData);
static void WHYT1_EventHandler(WD_EVENT *pEvent, PVOID pData);
static void ErrLog(const CHAR *sFormat, ...);
static void TraceLog(const CHAR *sFormat, ...);
static inline BOOL IsValidDevice(PWDC_DEVICE pDev, const CHAR *sFunc)
{
if (!pDev || !WDC_GetDevContext(pDev))
{
snprintf(gsWHYT1_LastErr, sizeof(gsWHYT1_LastErr) - 1, "%s: NULL device %s\n",
sFunc, !pDev ? "handle" : "context");
ErrLog(gsWHYT1_LastErr);
return FALSE;
}
return TRUE;
}
/*************************************************************
Functions implementation
*************************************************************/
/* -----------------------------------------------
WHYT1 and WDC library initialize/uninit
----------------------------------------------- */
DWORD WHYT1_LibInit(void)
{
DWORD dwStatus;
#if defined(WD_DRIVER_NAME_CHANGE)
/* Set the driver name */
if (!WD_DriverName(WHYT1_DEFAULT_DRIVER_NAME))
{
ErrLog("Failed to set the driver name for WDC library.\n");
return WD_SYSTEM_INTERNAL_ERROR;
}
#endif
/* Set WDC library's debug options (default: level TRACE, output to Debug Monitor) */
dwStatus = WDC_SetDebugOptions(WDC_DBG_DEFAULT, NULL);
if (WD_STATUS_SUCCESS != dwStatus)
{
ErrLog("Failed to initialize debug options for WDC library.\n"
"Error 0x%lx - %s\n", dwStatus, Stat2Str(dwStatus));
return dwStatus;
}
/* Open a handle to the driver and initialize the WDC library */
dwStatus = WDC_DriverOpen(WDC_DRV_OPEN_DEFAULT, WHYT1_DEFAULT_LICENSE_STRING);
if (WD_STATUS_SUCCESS != dwStatus)
{
ErrLog("Failed to initialize the WDC library. Error 0x%lx - %s\n",
dwStatus, Stat2Str(dwStatus));
return dwStatus;
}
return WD_STATUS_SUCCESS;
}
DWORD WHYT1_LibUninit(void)
{
DWORD dwStatus;
/* Uninit the WDC library and close the handle to WinDriver */
dwStatus = WDC_DriverClose();
if (WD_STATUS_SUCCESS != dwStatus)
{
ErrLog("Failed to uninit the WDC library. Error 0x%lx - %s\n",
dwStatus, Stat2Str(dwStatus));
}
return dwStatus;
}
/* -----------------------------------------------
Device open/close
----------------------------------------------- */
WDC_DEVICE_HANDLE WHYT1_DeviceOpen(const WD_PCI_CARD_INFO *pDeviceInfo)
{
DWORD dwStatus;
PWHYT1_DEV_CTX pDevCtx = NULL;
WDC_DEVICE_HANDLE hDev = NULL;
/* Validate arguments */
if (!pDeviceInfo)
{
ErrLog("WHYT1_DeviceOpen: Error - NULL device information struct pointer\n");
return NULL;
}
/* Allocate memory for the WHYT1 device context */
pDevCtx = (PWHYT1_DEV_CTX)malloc(sizeof (WHYT1_DEV_CTX));
if (!pDevCtx)
{
ErrLog("Failed allocating memory for WHYT1 device context\n");
return NULL;
}
BZERO(*pDevCtx);
/* Open a WDC device handle */
dwStatus = WDC_PciDeviceOpen(&hDev, pDeviceInfo, pDevCtx, NULL, NULL, NULL);
if (WD_STATUS_SUCCESS != dwStatus)
{
ErrLog("Failed opening a WDC device handle. Error 0x%lx - %s\n",
dwStatus, Stat2Str(dwStatus));
goto Error;
}
/* Validate device information */
if (!DeviceValidate((PWDC_DEVICE)hDev))
goto Error;
/* Return handle to the new device */
TraceLog("WHYT1_DeviceOpen: Opened a WHYT1 device (handle 0x%p)\n", hDev);
return hDev;
Error:
if (hDev)
WHYT1_DeviceClose(hDev);
else
free(pDevCtx);
return NULL;
}
BOOL WHYT1_DeviceClose(WDC_DEVICE_HANDLE hDev)
{
DWORD dwStatus;
PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
PWHYT1_DEV_CTX pDevCtx;
TraceLog("WHYT1_DeviceClose entered. Device handle: 0x%p\n", hDev);
if (!hDev)
{
ErrLog("WHYT1_DeviceClose: Error - NULL device handle\n");
return FALSE;
}
pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);
/* Disable interrupts */
if (WDC_IntIsEnabled(hDev))
{
dwStatus = WHYT1_IntDisable(hDev);
if (WD_STATUS_SUCCESS != dwStatus)
{
ErrLog("Failed disabling interrupts. Error 0x%lx - %s\n",
dwStatus, Stat2Str(dwStatus));
}
}
/* Close the device */
dwStatus = WDC_PciDeviceClose(hDev);
if (WD_STATUS_SUCCESS != dwStatus)
{
ErrLog("Failed closing a WDC device handle (0x%p). Error 0x%lx - %s\n",
hDev, dwStatus, Stat2Str(dwStatus));
}
/* Free WHYT1 device context memory */
if (pDevCtx)
free (pDevCtx);
return (WD_STATUS_SUCCESS == dwStatus);
}
static BOOL DeviceValidate(const PWDC_DEVICE pDev)
{
DWORD i, dwNumAddrSpaces = pDev->dwNumAddrSpaces;
/* TODO: You can modify the implementation of this function in order to
verify that the device has all expected resources. */
/* Verify that the device has at least one active address space */
for (i = 0; i < dwNumAddrSpaces; i++)
{
if (WDC_AddrSpaceIsActive(pDev, i))
return TRUE;
}
ErrLog("Device does not have any active memory or I/O address spaces\n");
return FALSE;
}
/* -----------------------------------------------
Interrupts
----------------------------------------------- */
static void DLLCALLCONV WHYT1_IntHandler(PVOID pData)
{
PWDC_DEVICE pDev = (PWDC_DEVICE)pData;
PWHYT1_DEV_CTX pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);
WHYT1_INT_RESULT intResult;
BZERO(intResult);
intResult.dwCounter = pDev->Int.dwCounter;
intResult.dwLost = pDev->Int.dwLost;
intResult.waitResult = (WD_INTERRUPT_WAIT_RESULT)pDev->Int.fStopped;
/* Execute the diagnostics application's interrupt handler routine */
pDevCtx->funcDiagIntHandler((WDC_DEVICE_HANDLE)pDev, &intResult);
}
DWORD WHYT1_IntEnable(WDC_DEVICE_HANDLE hDev, WHYT1_INT_HANDLER funcIntHandler)
{
DWORD dwStatus;
PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
PWHYT1_DEV_CTX pDevCtx;
WDC_ADDR_DESC *pAddrDesc;
WD_TRANSFER *pTrans;
TraceLog("WHYT1_IntEnable entered. Device handle: 0x%p\n", hDev);
if (!IsValidDevice(pDev, "WHYT1_IntEnable"))
return WD_INVALID_PARAMETER;
pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);
/* Check if interrupts are already enabled */
if (WDC_IntIsEnabled(hDev))
{
ErrLog("Interrupts are already enabled ...\n");
return WD_OPERATION_ALREADY_DONE;
}
/* Define the number of interrupt transfer commands to use */
#define NUM_TRANS_CMDS 1
/* Allocate memory for the interrupt transfer commands */
pTrans = (WD_TRANSFER*)calloc(NUM_TRANS_CMDS, sizeof(WD_TRANSFER));
if (!pTrans)
{
ErrLog("Failed allocating memory for interrupt transfer commands\n");
return WD_INSUFFICIENT_RESOURCES;
}
/* Prepare the interrupt transfer commands */
/* The transfer commands will be executed by WinDriver in the kernel
for each interrupt that is received */
/* #1: Write to the INTMAK register */
pAddrDesc = &pDev->pAddrDesc[AD_PCI_BAR0];
pTrans[0].dwPort = pAddrDesc->kptAddr + 0x48;
pTrans[0].cmdTrans = WDC_ADDR_IS_MEM(pAddrDesc) ? WM_BYTE : WP_BYTE;
pTrans[0].Data.Byte = 0x0;
/* Store the diag interrupt handler routine, which will be executed by
WHYT1_IntHandler() when an interrupt is received */
pDevCtx->funcDiagIntHandler = funcIntHandler;
/* Enable the interrupts */
dwStatus = WDC_IntEnable(hDev, pTrans, NUM_TRANS_CMDS, INTERRUPT_CMD_COPY,
WHYT1_IntHandler, (PVOID)pDev, WDC_IS_KP(hDev));
if (WD_STATUS_SUCCESS != dwStatus)
{
ErrLog("Failed enabling interrupts. Error 0x%lx - %s\n",
dwStatus, Stat2Str(dwStatus));
free(pTrans);
return dwStatus;
}
/* Store the interrupt transfer commands in the device context */
pDevCtx->pIntTransCmds = pTrans;
/* TODO: You can add code here to write to the device in order
to physically enable the hardware interrupts */
TraceLog("WHYT1_IntEnable: Interrupts enabled\n");
return WD_STATUS_SUCCESS;
}
DWORD WHYT1_IntDisable(WDC_DEVICE_HANDLE hDev)
{
DWORD dwStatus;
PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
PWHYT1_DEV_CTX pDevCtx;
TraceLog("WHYT1_IntDisable entered. Device handle: 0x%p\n", hDev);
if (!IsValidDevice(pDev, "WHYT1_IntDisable"))
return WD_INVALID_PARAMETER;
pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);
if (!WDC_IntIsEnabled(hDev))
{
ErrLog("Interrupts are already disabled ...\n");
return WD_OPERATION_ALREADY_DONE;
}
/* TODO: You can add code here to write to the device in order
to physically disable the hardware interrupts */
/* Disable the interrupts */
dwStatus = WDC_IntDisable(hDev);
if (WD_STATUS_SUCCESS != dwStatus)
{
ErrLog("Failed disabling interrupts. Error 0x%lx - %s\n",
dwStatus, Stat2Str(dwStatus));
}
/* Free the memory allocated for the interrupt transfer commands */
if (pDevCtx->pIntTransCmds)
{
free(pDevCtx->pIntTransCmds);
pDevCtx->pIntTransCmds = NULL;
}
return dwStatus;
}
BOOL WHYT1_IntIsEnabled(WDC_DEVICE_HANDLE hDev)
{
if (!IsValidDevice((PWDC_DEVICE)hDev, "WHYT1_IntIsEnabled"))
return FALSE;
return WDC_IntIsEnabled(hDev);
}
/* -----------------------------------------------
Plug-and-play and power management events
----------------------------------------------- */
static void WHYT1_EventHandler(WD_EVENT *pEvent, PVOID pData)
{
PWDC_DEVICE pDev = (PWDC_DEVICE)pData;
PWHYT1_DEV_CTX pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);
TraceLog("WHYT1_EventHandler entered, pData: 0x%p, dwAction 0x%lx\n",
pData, pEvent->dwAction);
/* Execute the diagnostics application's event handler function */
pDevCtx->funcDiagEventHandler((WDC_DEVICE_HANDLE)pDev, pEvent->dwAction);
}
DWORD WHYT1_EventRegister(WDC_DEVICE_HANDLE hDev, WHYT1_EVENT_HANDLER funcEventHandler)
{
DWORD dwStatus;
PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
PWHYT1_DEV_CTX pDevCtx;
DWORD dwActions = WD_ACTIONS_ALL;
/* TODO: Modify the above to set up the plug-and-play/power management
events for which you wish to receive notifications.
dwActions can be set to any combination of the WD_EVENT_ACTION
flags defined in windrvr.h */
TraceLog("WHYT1_EventRegister entered. Device handle: 0x%p\n", hDev);
if (!IsValidDevice(pDev, "WHYT1_EventRegister"))
return WD_INVALID_PARAMETER;
pDevCtx = (PWHYT1_DEV_CTX)WDC_GetDevContext(pDev);
/* Check if event is already registered */
if (WDC_EventIsRegistered(hDev))
{
ErrLog("Events are already registered ...\n");
return WD_OPERATION_ALREADY_DONE;
}
/* Store the diag event handler routine to be executed from WHYT1_EventHandler() upon an event */
pDevCtx->funcDiagEventHandler = funcEventHandler;
/* Register event */
dwStatus = WDC_EventRegister(hDev, dwActions, WHYT1_EventHandler, hDev, FALSE);
if (WD_STATUS_SUCCESS != dwStatus)
{
ErrLog("Failed to register events. Error 0x%lx - %s\n",
dwStatus, Stat2Str(dwStatus));
return dwStatus;
}
TraceLog("Events registered\n");
return WD_STATUS_SUCCESS;
}
DWORD WHYT1_EventUnregister(WDC_DEVICE_HANDLE hDev)
{
DWORD dwStatus;
TraceLog("WHYT1_EventUnregister entered. Device handle: 0x%p\n", hDev);
if (!IsValidDevice((PWDC_DEVICE)hDev, "WHYT1_EventUnregister"))
return WD_INVALID_PARAMETER;
if (!WDC_EventIsRegistered(hDev))
{
ErrLog("Cannot unregister events - no events currently registered ...\n");
return WD_OPERATION_ALREADY_DONE;
}
dwStatus = WDC_EventUnregister(hDev);
if (WD_STATUS_SUCCESS != dwStatus)
{
ErrLog("Failed to unregister events. Error 0x%lx - %s\n",
dwStatus, Stat2Str(dwStatus));
}
return dwStatus;
}
BOOL WHYT1_EventIsRegistered(WDC_DEVICE_HANDLE hDev)
{
if (!IsValidDevice((PWDC_DEVICE)hDev, "WHYT1_EventIsRegistered"))
return FALSE;
return WDC_EventIsRegistered(hDev);
}
/* -----------------------------------------------
Address spaces information
----------------------------------------------- */
DWORD WHYT1_GetNumAddrSpaces(WDC_DEVICE_HANDLE hDev)
{
PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
if (!IsValidDevice(pDev, "WHYT1_GetNumAddrSpaces"))
return 0;
return pDev->dwNumAddrSpaces;
}
BOOL WHYT1_GetAddrSpaceInfo(WDC_DEVICE_HANDLE hDev, WHYT1_ADDR_SPACE_INFO *pAddrSpaceInfo)
{
PWDC_DEVICE pDev = (PWDC_DEVICE)hDev;
WDC_ADDR_DESC *pAddrDesc;
DWORD dwAddrSpace, dwMaxAddrSpace;
BOOL fIsMemory;
if (!IsValidDevice(pDev, "WHYT1_GetAddrSpaceInfo"))
return FALSE;
#if defined(DEBUG)
if (!pAddrSpaceInfo)
{
ErrLog("WHYT1_GetAddrSpaceInfo: Error - NULL address space information pointer\n");
return FALSE;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -