📄 ccir.h
字号:
/*
Copyright(c) 1998,1999 SIC/Hitachi,Ltd.
Module Name:
ccir.h
Revision History:
26th April 1999 Released
*/
#ifndef __SER16550_H__
#define __SER16550_H__
#ifdef __cplusplus
extern "C" {
#endif
// We use a callback for serial events
typedef VOID (*EVENT_FUNC)(PVOID Arg1, ULONG Arg2);
// The library has a default baud table, but this can be replaced
typedef struct __PAIRS {
ULONG Key;
ULONG AssociatedValue;
} PAIRS, *PPAIRS;
typedef struct __LOOKUP_TBL {
ULONG Size;
PPAIRS Table;
} LOOKUP_TBL, *PLOOKUP_TBL;
//
// @doc HWINTERNAL
// @struct LS_SERIAL_INFO | Passed to serial lib routines.
//
typedef struct __LS_SERIAL_INFO
{
// Store volatile pointers to each 16550 register
volatile PUCHAR pData; // @field RX data / Transmit Holding Reg
volatile PUCHAR pIER; // @field Interrupt Enable
volatile PUCHAR pIIR_FCR; // @field read IIR (Int ID) / Write FCR (FIFO Ctrl)
volatile PUCHAR pLCR; // @field Line Control
volatile PUCHAR pMCR; // @field Modem Control
volatile PUCHAR pLSR; // @field Line Status
volatile PUCHAR pMSR; // @field Modem Status
volatile PUCHAR pScratch; // @field Scratch Register
// And we keep shadows of many of the 16550 registers
UCHAR FCR; // @field FIFO control state.
UCHAR IIR; // @field State of Interrupt Identification Register.
UCHAR LSR; // @field Line Status Register.
UCHAR MSR; // @field Modem Status Register.
// We wouldn't normally shadow these, except for power on/off
UCHAR IER; // @field Interrupt Enable Register.
UCHAR LCR; // @field Line Control Register.
UCHAR MCR; // @field Modem Control Register.
UCHAR Scratch; // @field Scratch Register.
// We have an event callback into the MDD
EVENT_FUNC EventCallback; // This callback exists in MDD
PVOID pMddHead; // This is the first parm to callback
// Keep a copy of DCB since we rely on may of its parms
DCB dcb; // @field Device Control Block (copy of DCB in MDD)
// And the same thing applies for CommTimeouts
COMMTIMEOUTS CommTimeouts; // @field Copy of CommTimeouts structure
// Misc fields used by ser16550 library
ULONG OpenCount; // @field Count of simultaneous opens.
PLOOKUP_TBL pBaudTable; // @field Pointer to Baud Table
ULONG DroppedBytes; // @field Number of dropped bytes
HANDLE FlushDone; // @field Handle to flush done event.
BOOL CTSFlowOff; // @field Flag - CTS flow control state.
BOOL DSRFlowOff; // @field Flag - DSR flow control state.
BOOL AddTXIntr; // @field Flag - Fake a TX intr.
COMSTAT Status; // @field Bitfield representing Win32 comm status.
ULONG CommErrors; // @field Bitfield representing Win32 comm error status.
ULONG ModemStatus; // @field Bitfield representing Win32 modem status.
CRITICAL_SECTION TransmitCritSec; // @field Protects UART TX FIFO from simultaneous access
ULONG ChipID; // @field Chip identifier (CHIP_ID_16550 or CHIP_ID_16450)
} SER16550_INFO, *PSER16550_INFO;
// Values for SER16550_INFO.ChipID
#define CHIP_ID_16550 1
#define CHIP_ID_16450 2
// Here is the callback for serial events
typedef VOID (*PFN_SER_EVENT) (
PVOID pHandle, // PHW_INDEP_INFO, but pdd doesn't know it
UINT32 events // What events where encountered?
);
// And now, all the function prototypes
VOID CCIR_Init(
PVOID pHead, // points to device head
PUCHAR pRegBase, // Pointer to 16550 register base
UINT8 RegStride, // Stride amongst the 16550 registers
EVENT_FUNC EventCallback, // This callback exists in MDD
PVOID pMddHead, // This is the first parm to callback
PLOOKUP_TBL pBaudTable // Pointer to baud rate table
);
VOID CCIR_Deinit(
PVOID pHead // points to device head
);
VOID CCIR_Open(
PVOID pHead
);
VOID CCIR_Close(
PVOID pHead
);
VOID CCIR_ClearDTR(
PVOID pHead
);
VOID CCIR_SetDTR(
PVOID pHead
);
VOID CCIR_ClearRTS(
PVOID pHead
);
VOID CCIR_SetRTS(
PVOID pHead
);
VOID CCIR_ClearBreak(
PVOID pHead
);
VOID CCIR_SetBreak(
PVOID pHead
);
VOID CCIR_ClearBreak(
PVOID pHead
);
VOID CCIR_SetBreak(
PVOID pHead
);
ULONG CCIR_GetByteNumber(
PVOID pHead
);
VOID CCIR_DisableXmit(
PVOID pHead
);
VOID CCIR_EnableXmit(
PVOID pHead
);
BOOL CCIR_SetBaudRate(
PVOID pHead,
ULONG BaudRate // ULONG representing decimal baud rate.
);
ULONG CCIR_SetDCB(
PVOID pHead,
LPDCB lpDCB // Pointer to DCB structure
);
ULONG CCIR_SetCommTimeouts(
PVOID pHead,
LPCOMMTIMEOUTS lpCommTimeouts // Pointer to CommTimeout structure
);
ULONG CCIR_GetRxBufferSize(
PVOID pHead
);
PVOID CCIR_GetRxStart(
PVOID pHead
);
INTERRUPT_TYPE CCIR_GetInterruptType(
PVOID pHead
);
ULONG CCIR_RxIntr(
PVOID pHead,
PUCHAR pRxBuffer, // Pointer to receive buffer
ULONG *pBufflen // In = max bytes to read, out = bytes read
);
ULONG CCIR_PutBytes(
PVOID pHead,
PUCHAR pSrc, // Pointer to bytes to be sent.
ULONG NumberOfBytes, // Number of bytes to be sent.
PULONG pBytesSent // Pointer to actual number of bytes put.
);
VOID CCIR_TxIntr(
PVOID pHead
);
VOID CCIR_LineIntr(
PVOID pHead
);
VOID CCIR_OtherIntr(
PVOID pHead
);
ULONG CCIR_GetStatus(
PVOID pHead,
LPCOMSTAT lpStat // Pointer to LPCOMMSTAT to hold status.
);
VOID CCIR_Reset(
PVOID pHead
);
VOID CCIR_GetModemStatus(
PVOID pHead,
PULONG pModemStatus // PULONG passed in by user.
);
VOID CCIR_PurgeComm(
PVOID pHead,
DWORD fdwAction // Action to take.
);
BOOL CCIR_XmitComChar(
PVOID pHead,
UCHAR ComChar // Character to transmit.
);
VOID CCIR_PowerOn(
PVOID pHead
);
VOID CCIR_PowerOff(
PVOID pHead
);
BOOL CCIR_Ioctl(
PVOID pHead,
DWORD dwCode,
PBYTE pBufIn,
DWORD dwLenIn,
PBYTE pBufOut,
DWORD dwLenOut,
PDWORD pdwActualOut);
#ifdef __cplusplus
}
#endif
#endif __SER16550_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -