1503 lines
38 KiB
C
1503 lines
38 KiB
C
|
/*++
|
|||
|
|
|||
|
Copyright (c) 1990, 1991, 1992, 1993 Microsoft Corporation
|
|||
|
Copyright (c) 1993 Logitech Inc.
|
|||
|
|
|||
|
Module Name:
|
|||
|
|
|||
|
sermcmn.c
|
|||
|
|
|||
|
Abstract:
|
|||
|
|
|||
|
The common portions of the Microsoft serial (i8250) mouse port driver.
|
|||
|
This file should not require modification to support new mice
|
|||
|
that are similar to the serial mouse.
|
|||
|
|
|||
|
Environment:
|
|||
|
|
|||
|
Kernel mode only.
|
|||
|
|
|||
|
Notes:
|
|||
|
|
|||
|
NOTES: (Future/outstanding issues)
|
|||
|
|
|||
|
- Powerfail not implemented.
|
|||
|
|
|||
|
- IOCTL_INTERNAL_MOUSE_DISCONNECT has not been implemented. It's not
|
|||
|
needed until the class unload routine is implemented. Right now,
|
|||
|
we don't want to allow the mouse class driver to unload.
|
|||
|
|
|||
|
- Consolidate duplicate code, where possible and appropriate.
|
|||
|
|
|||
|
Revision History:
|
|||
|
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
#include "stdarg.h"
|
|||
|
#include "stdio.h"
|
|||
|
#include "string.h"
|
|||
|
#include "ntddk.h"
|
|||
|
#include "sermouse.h"
|
|||
|
#include "sermlog.h"
|
|||
|
#include "debug.h"
|
|||
|
|
|||
|
|
|||
|
VOID
|
|||
|
SerialMouseErrorLogDpc(
|
|||
|
IN PKDPC Dpc,
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
IN PIRP Irp,
|
|||
|
IN PVOID Context
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine runs at DISPATCH_LEVEL IRQL to log errors that are
|
|||
|
discovered at IRQL > DISPATCH_LEVEL (e.g., in the ISR routine or
|
|||
|
in a routine that is executed via KeSynchronizeExecution). There
|
|||
|
is not necessarily a current request associated with this condition.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Dpc - Pointer to the DPC object.
|
|||
|
|
|||
|
DeviceObject - Pointer to the device object.
|
|||
|
|
|||
|
Irp - Not used.
|
|||
|
|
|||
|
Context - Indicates type of error to log.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
PDEVICE_EXTENSION deviceExtension;
|
|||
|
PIO_ERROR_LOG_PACKET errorLogEntry;
|
|||
|
|
|||
|
UNREFERENCED_PARAMETER(Dpc);
|
|||
|
UNREFERENCED_PARAMETER(Irp);
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseErrorLogDpc: enter\n"));
|
|||
|
|
|||
|
deviceExtension = DeviceObject->DeviceExtension;
|
|||
|
|
|||
|
//
|
|||
|
// Log an error packet.
|
|||
|
//
|
|||
|
|
|||
|
errorLogEntry = (PIO_ERROR_LOG_PACKET)IoAllocateErrorLogEntry(
|
|||
|
DeviceObject,
|
|||
|
sizeof(IO_ERROR_LOG_PACKET)
|
|||
|
+ (2 * sizeof(ULONG))
|
|||
|
);
|
|||
|
if (errorLogEntry != NULL) {
|
|||
|
|
|||
|
errorLogEntry->DumpDataSize = 2 * sizeof(ULONG);
|
|||
|
|
|||
|
if ((ULONG) Context == SERMOUSE_MOU_BUFFER_OVERFLOW) {
|
|||
|
errorLogEntry->UniqueErrorValue = SERIAL_MOUSE_ERROR_VALUE_BASE + 210;
|
|||
|
errorLogEntry->DumpData[0] = sizeof(MOUSE_INPUT_DATA);
|
|||
|
errorLogEntry->DumpData[1] =
|
|||
|
deviceExtension->Configuration.MouseAttributes.InputDataQueueLength;
|
|||
|
} else {
|
|||
|
errorLogEntry->UniqueErrorValue = SERIAL_MOUSE_ERROR_VALUE_BASE + 220;
|
|||
|
errorLogEntry->DumpData[0] = 0;
|
|||
|
errorLogEntry->DumpData[1] = 0;
|
|||
|
}
|
|||
|
|
|||
|
errorLogEntry->ErrorCode = (ULONG) Context;
|
|||
|
errorLogEntry->SequenceNumber = 0;
|
|||
|
errorLogEntry->MajorFunctionCode = 0;
|
|||
|
errorLogEntry->IoControlCode = 0;
|
|||
|
errorLogEntry->RetryCount = 0;
|
|||
|
errorLogEntry->FinalStatus = 0;
|
|||
|
|
|||
|
IoWriteErrorLogEntry(errorLogEntry);
|
|||
|
}
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseErrorLogDpc: exit\n"));
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
NTSTATUS
|
|||
|
SerialMouseFlush(
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
IN PIRP Irp
|
|||
|
)
|
|||
|
{
|
|||
|
UNREFERENCED_PARAMETER(DeviceObject);
|
|||
|
UNREFERENCED_PARAMETER(Irp);
|
|||
|
|
|||
|
SerMouPrint((2,"SERMOUSE-SerialMouseFlush: enter\n"));
|
|||
|
SerMouPrint((2,"SERMOUSE-SerialMouseFlush: exit\n"));
|
|||
|
|
|||
|
return(STATUS_NOT_IMPLEMENTED);
|
|||
|
}
|
|||
|
|
|||
|
NTSTATUS
|
|||
|
SerialMouseInternalDeviceControl(
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
IN PIRP Irp
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine is the dispatch routine for internal device control requests.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
DeviceObject - Pointer to the device object.
|
|||
|
|
|||
|
Irp - Pointer to the request packet.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
Status is returned.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
PIO_STACK_LOCATION irpSp;
|
|||
|
PDEVICE_EXTENSION deviceExtension;
|
|||
|
NTSTATUS status;
|
|||
|
|
|||
|
SerMouPrint((2,"SERMOUSE-SerialMouseInternalDeviceControl: enter\n"));
|
|||
|
|
|||
|
//
|
|||
|
// Get a pointer to the device extension.
|
|||
|
//
|
|||
|
|
|||
|
deviceExtension = DeviceObject->DeviceExtension;
|
|||
|
|
|||
|
//
|
|||
|
// Initialize the returned Information field.
|
|||
|
//
|
|||
|
|
|||
|
Irp->IoStatus.Information = 0;
|
|||
|
|
|||
|
//
|
|||
|
// Get a pointer to the current parameters for this request. The
|
|||
|
// information is contained in the current stack location.
|
|||
|
//
|
|||
|
|
|||
|
irpSp = IoGetCurrentIrpStackLocation(Irp);
|
|||
|
|
|||
|
//
|
|||
|
// Case on the device control subfunction that is being performed by the
|
|||
|
// requestor.
|
|||
|
//
|
|||
|
|
|||
|
switch (irpSp->Parameters.DeviceIoControl.IoControlCode) {
|
|||
|
|
|||
|
//
|
|||
|
// Connect a mouse class device driver to the port driver.
|
|||
|
//
|
|||
|
|
|||
|
case IOCTL_INTERNAL_MOUSE_CONNECT:
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInternalDeviceControl: mouse connect\n"
|
|||
|
));
|
|||
|
|
|||
|
//
|
|||
|
// Only allow one connection.
|
|||
|
//
|
|||
|
// FUTURE: Consider allowing multiple connections, just for
|
|||
|
// the sake of generality?
|
|||
|
//
|
|||
|
|
|||
|
if (deviceExtension->ConnectData.ClassService
|
|||
|
!= NULL) {
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInternalDeviceControl: error - already connected\n"
|
|||
|
));
|
|||
|
|
|||
|
status = STATUS_SHARING_VIOLATION;
|
|||
|
break;
|
|||
|
|
|||
|
} else
|
|||
|
if (irpSp->Parameters.DeviceIoControl.InputBufferLength <
|
|||
|
sizeof(CONNECT_DATA)) {
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInternalDeviceControl: error - invalid buffer length\n"
|
|||
|
));
|
|||
|
|
|||
|
status = STATUS_INVALID_PARAMETER;
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
//
|
|||
|
// Copy the connection parameters to the device extension.
|
|||
|
//
|
|||
|
|
|||
|
deviceExtension->ConnectData =
|
|||
|
*((PCONNECT_DATA) (irpSp->Parameters.DeviceIoControl.Type3InputBuffer));
|
|||
|
|
|||
|
//
|
|||
|
// Reinitialize the port input data queue synchronously.
|
|||
|
//
|
|||
|
|
|||
|
KeSynchronizeExecution(
|
|||
|
deviceExtension->InterruptObject,
|
|||
|
(PKSYNCHRONIZE_ROUTINE) SerMouInitializeDataQueue,
|
|||
|
(PVOID) deviceExtension
|
|||
|
);
|
|||
|
|
|||
|
//
|
|||
|
// Set the completion status.
|
|||
|
//
|
|||
|
|
|||
|
status = STATUS_SUCCESS;
|
|||
|
break;
|
|||
|
|
|||
|
//
|
|||
|
// Disconnect a mouse class device driver from the port driver.
|
|||
|
//
|
|||
|
// NOTE: Not implemented.
|
|||
|
//
|
|||
|
|
|||
|
case IOCTL_INTERNAL_MOUSE_DISCONNECT:
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInternalDeviceControl: mouse disconnect\n"
|
|||
|
));
|
|||
|
|
|||
|
//
|
|||
|
// Perform a mouse interrupt disable call.
|
|||
|
//
|
|||
|
|
|||
|
//
|
|||
|
// Clear the connection parameters in the device extension.
|
|||
|
// NOTE: Must synchronize this with the mouse ISR.
|
|||
|
//
|
|||
|
//
|
|||
|
//deviceExtension->ConnectData.ClassDeviceObject =
|
|||
|
// Null;
|
|||
|
//deviceExtension->ConnectData.ClassService =
|
|||
|
// Null;
|
|||
|
|
|||
|
//
|
|||
|
// Set the completion status.
|
|||
|
//
|
|||
|
|
|||
|
status = STATUS_NOT_IMPLEMENTED;
|
|||
|
break;
|
|||
|
|
|||
|
//
|
|||
|
// Enable mouse interrupts (mark the request pending and handle
|
|||
|
// it in StartIo).
|
|||
|
//
|
|||
|
|
|||
|
case IOCTL_INTERNAL_MOUSE_ENABLE:
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInternalDeviceControl: mouse enable\n"
|
|||
|
));
|
|||
|
|
|||
|
status = STATUS_PENDING;
|
|||
|
break;
|
|||
|
|
|||
|
//
|
|||
|
// Disable mouse interrupts (mark the request pending and handle
|
|||
|
// it in StartIo).
|
|||
|
//
|
|||
|
|
|||
|
case IOCTL_INTERNAL_MOUSE_DISABLE:
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInternalDeviceControl: mouse disable\n"
|
|||
|
));
|
|||
|
|
|||
|
status = STATUS_PENDING;
|
|||
|
break;
|
|||
|
|
|||
|
//
|
|||
|
// Query the mouse attributes. First check for adequate buffer
|
|||
|
// length. Then, copy the mouse attributes from the device
|
|||
|
// extension to the output buffer.
|
|||
|
//
|
|||
|
|
|||
|
case IOCTL_MOUSE_QUERY_ATTRIBUTES:
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInternalDeviceControl: mouse query attributes\n"
|
|||
|
));
|
|||
|
|
|||
|
if (irpSp->Parameters.DeviceIoControl.OutputBufferLength <
|
|||
|
sizeof(MOUSE_ATTRIBUTES)) {
|
|||
|
status = STATUS_BUFFER_TOO_SMALL;
|
|||
|
} else {
|
|||
|
|
|||
|
//
|
|||
|
// Copy the attributes from the DeviceExtension to the
|
|||
|
// buffer.
|
|||
|
//
|
|||
|
|
|||
|
*(PMOUSE_ATTRIBUTES) Irp->AssociatedIrp.SystemBuffer =
|
|||
|
deviceExtension->Configuration.MouseAttributes;
|
|||
|
|
|||
|
Irp->IoStatus.Information = sizeof(MOUSE_ATTRIBUTES);
|
|||
|
status = STATUS_SUCCESS;
|
|||
|
}
|
|||
|
|
|||
|
break;
|
|||
|
|
|||
|
default:
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInternalDeviceControl: INVALID REQUEST\n"
|
|||
|
));
|
|||
|
|
|||
|
status = STATUS_INVALID_DEVICE_REQUEST;
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
Irp->IoStatus.Status = status;
|
|||
|
if (status == STATUS_PENDING) {
|
|||
|
IoMarkIrpPending(Irp);
|
|||
|
IoStartPacket(DeviceObject, Irp, (PULONG)NULL, NULL);
|
|||
|
} else {
|
|||
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
|||
|
}
|
|||
|
|
|||
|
SerMouPrint((2,"SERMOUSE-SerialMouseInternalDeviceControl: exit\n"));
|
|||
|
|
|||
|
return(status);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
BOOLEAN
|
|||
|
SerialMouseInterruptService(
|
|||
|
IN PKINTERRUPT Interrupt,
|
|||
|
IN PVOID Context
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This is the interrupt service routine for the mouse device.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Interrupt - A pointer to the interrupt object for this interrupt.
|
|||
|
|
|||
|
Context - A pointer to the device object.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
Returns TRUE if the interrupt was expected (and therefore processed);
|
|||
|
otherwise, FALSE is returned.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
PDEVICE_EXTENSION deviceExtension;
|
|||
|
PDEVICE_OBJECT deviceObject;
|
|||
|
PMOUSE_INPUT_DATA currentInput;
|
|||
|
PUCHAR port;
|
|||
|
UCHAR value;
|
|||
|
UCHAR lineState;
|
|||
|
ULONG buttonsDelta;
|
|||
|
|
|||
|
UNREFERENCED_PARAMETER(Interrupt);
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseInterruptService: enter\n"));
|
|||
|
|
|||
|
//
|
|||
|
// Get the device extension.
|
|||
|
//
|
|||
|
|
|||
|
deviceObject = (PDEVICE_OBJECT) Context;
|
|||
|
deviceExtension = (PDEVICE_EXTENSION) deviceObject->DeviceExtension;
|
|||
|
|
|||
|
//
|
|||
|
// Get the serial mouse port address.
|
|||
|
//
|
|||
|
|
|||
|
port = deviceExtension->Configuration.DeviceRegisters[0];
|
|||
|
|
|||
|
//
|
|||
|
// Verify that the interrupt really belongs to this driver.
|
|||
|
//
|
|||
|
|
|||
|
if ((READ_PORT_UCHAR((PUCHAR) (port + ACE_IIDR)) & ACE_IIP) == ACE_IIP) {
|
|||
|
|
|||
|
//
|
|||
|
// Not our interrupt.
|
|||
|
//
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInterruptService: not our interrupt\n"
|
|||
|
));
|
|||
|
return(FALSE);
|
|||
|
}
|
|||
|
|
|||
|
//
|
|||
|
// Get the line state byte. This value can be checked by the
|
|||
|
// protocol handler for errors.
|
|||
|
//
|
|||
|
|
|||
|
lineState = READ_PORT_UCHAR((PUCHAR) (port + ACE_LSR));
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-Line status: 0x%x\n", lineState
|
|||
|
));
|
|||
|
|
|||
|
//
|
|||
|
// Read the byte from the serial mouse port. If the mouse has not
|
|||
|
// been enabled, don't process the byte further.
|
|||
|
//
|
|||
|
|
|||
|
value = READ_PORT_UCHAR((PUCHAR) port + ACE_RBR);
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInterruptService: byte 0x%x\n", value
|
|||
|
));
|
|||
|
|
|||
|
if (deviceExtension->MouseEnableCount == 0) {
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseInterruptService: not enabled\n"
|
|||
|
));
|
|||
|
return(TRUE);
|
|||
|
}
|
|||
|
|
|||
|
//
|
|||
|
// At this point, the protocol handler should already be set because
|
|||
|
// the hardware is enabled.
|
|||
|
//
|
|||
|
|
|||
|
ASSERT(deviceExtension->ProtocolHandler);
|
|||
|
|
|||
|
currentInput = &deviceExtension->CurrentInput;
|
|||
|
|
|||
|
//
|
|||
|
// Call the current protocol handler for this device
|
|||
|
//
|
|||
|
|
|||
|
if ((*deviceExtension->ProtocolHandler)(
|
|||
|
currentInput,
|
|||
|
&deviceExtension->HandlerData,
|
|||
|
value,
|
|||
|
lineState
|
|||
|
)){
|
|||
|
|
|||
|
//
|
|||
|
// The report is complete, compute the button deltas and queue it.
|
|||
|
//
|
|||
|
|
|||
|
currentInput->UnitId = deviceExtension->UnitId;
|
|||
|
|
|||
|
//
|
|||
|
// Do we have a button state change?
|
|||
|
//
|
|||
|
|
|||
|
if (deviceExtension->HandlerData.PreviousButtons ^ currentInput->RawButtons) {
|
|||
|
|
|||
|
|
|||
|
//
|
|||
|
// The state of the buttons changed. Make some calculations...
|
|||
|
//
|
|||
|
|
|||
|
buttonsDelta = deviceExtension->HandlerData.PreviousButtons ^
|
|||
|
currentInput->RawButtons;
|
|||
|
|
|||
|
//
|
|||
|
// Button 1.
|
|||
|
//
|
|||
|
|
|||
|
if (buttonsDelta & MOUSE_BUTTON_1) {
|
|||
|
if (currentInput->RawButtons & MOUSE_BUTTON_1) {
|
|||
|
currentInput->ButtonFlags |= MOUSE_BUTTON_1_DOWN;
|
|||
|
}
|
|||
|
else {
|
|||
|
currentInput->ButtonFlags |= MOUSE_BUTTON_1_UP;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
//
|
|||
|
// Button 2.
|
|||
|
//
|
|||
|
|
|||
|
if (buttonsDelta & MOUSE_BUTTON_2) {
|
|||
|
if (currentInput->RawButtons & MOUSE_BUTTON_2) {
|
|||
|
currentInput->ButtonFlags |= MOUSE_BUTTON_2_DOWN;
|
|||
|
}
|
|||
|
else {
|
|||
|
currentInput->ButtonFlags |= MOUSE_BUTTON_2_UP;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
//
|
|||
|
// Button 3.
|
|||
|
//
|
|||
|
|
|||
|
if (buttonsDelta & MOUSE_BUTTON_3) {
|
|||
|
if (currentInput->RawButtons & MOUSE_BUTTON_3) {
|
|||
|
currentInput->ButtonFlags |= MOUSE_BUTTON_3_DOWN;
|
|||
|
}
|
|||
|
else {
|
|||
|
currentInput->ButtonFlags |= MOUSE_BUTTON_3_UP;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
deviceExtension->HandlerData.PreviousButtons =
|
|||
|
currentInput->RawButtons;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
SerMouPrint((1, "SERMOUSE-Buttons: %0lx\n", currentInput->Buttons));
|
|||
|
|
|||
|
SerMouSendReport(deviceObject);
|
|||
|
|
|||
|
//
|
|||
|
// Clear the button flags for the next packet
|
|||
|
//
|
|||
|
|
|||
|
currentInput->Buttons = 0;
|
|||
|
}
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseInterruptService: exit\n"));
|
|||
|
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
VOID
|
|||
|
SerialMouseIsrDpc(
|
|||
|
IN PKDPC Dpc,
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
IN PIRP Irp,
|
|||
|
IN PVOID Context
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine runs at DISPATCH_LEVEL IRQL to finish processing
|
|||
|
mouse interrupts. It is queued in the mouse ISR. The real
|
|||
|
work is done via a callback to the connected mouse class driver.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Dpc - Pointer to the DPC object.
|
|||
|
|
|||
|
DeviceObject - Pointer to the device object.
|
|||
|
|
|||
|
Irp - Pointer to the Irp.
|
|||
|
|
|||
|
Context - Not used.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
PDEVICE_EXTENSION deviceExtension;
|
|||
|
GET_DATA_POINTER_CONTEXT getPointerContext;
|
|||
|
SET_DATA_POINTER_CONTEXT setPointerContext;
|
|||
|
VARIABLE_OPERATION_CONTEXT operationContext;
|
|||
|
PVOID classService;
|
|||
|
PVOID classDeviceObject;
|
|||
|
LONG interlockedResult;
|
|||
|
BOOLEAN moreDpcProcessing;
|
|||
|
ULONG dataNotConsumed = 0;
|
|||
|
ULONG inputDataConsumed = 0;
|
|||
|
LARGE_INTEGER deltaTime;
|
|||
|
|
|||
|
UNREFERENCED_PARAMETER(Dpc);
|
|||
|
UNREFERENCED_PARAMETER(Irp);
|
|||
|
UNREFERENCED_PARAMETER(Context);
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseIsrDpc: enter\n"));
|
|||
|
|
|||
|
deviceExtension = (PDEVICE_EXTENSION) DeviceObject->DeviceExtension;
|
|||
|
|
|||
|
//
|
|||
|
// Use DpcInterlockVariable to determine whether the DPC is running
|
|||
|
// concurrently on another processor. We only want one instantiation
|
|||
|
// of the DPC to actually do any work. DpcInterlockVariable is -1
|
|||
|
// when no DPC is executing. We increment it, and if the result is
|
|||
|
// zero then the current instantiation is the only one executing, and it
|
|||
|
// is okay to proceed. Otherwise, we just return.
|
|||
|
//
|
|||
|
//
|
|||
|
|
|||
|
operationContext.VariableAddress =
|
|||
|
&deviceExtension->DpcInterlockVariable;
|
|||
|
operationContext.Operation = IncrementOperation;
|
|||
|
operationContext.NewValue = &interlockedResult;
|
|||
|
|
|||
|
KeSynchronizeExecution(
|
|||
|
deviceExtension->InterruptObject,
|
|||
|
(PKSYNCHRONIZE_ROUTINE) SerMouDpcVariableOperation,
|
|||
|
(PVOID) &operationContext
|
|||
|
);
|
|||
|
|
|||
|
moreDpcProcessing = (interlockedResult == 0)? TRUE:FALSE;
|
|||
|
|
|||
|
while (moreDpcProcessing) {
|
|||
|
|
|||
|
dataNotConsumed = 0;
|
|||
|
inputDataConsumed = 0;
|
|||
|
|
|||
|
//
|
|||
|
// Get the port InputData queue pointers synchronously.
|
|||
|
//
|
|||
|
|
|||
|
getPointerContext.DeviceExtension = deviceExtension;
|
|||
|
setPointerContext.DeviceExtension = deviceExtension;
|
|||
|
setPointerContext.InputCount = 0;
|
|||
|
|
|||
|
KeSynchronizeExecution(
|
|||
|
deviceExtension->InterruptObject,
|
|||
|
(PKSYNCHRONIZE_ROUTINE) SerMouGetDataQueuePointer,
|
|||
|
(PVOID) &getPointerContext
|
|||
|
);
|
|||
|
|
|||
|
if (getPointerContext.InputCount != 0) {
|
|||
|
|
|||
|
//
|
|||
|
// Call the connected class driver's callback ISR with the
|
|||
|
// port InputData queue pointers. If we have to wrap the queue,
|
|||
|
// break the operation into two pieces, and call the class callback
|
|||
|
// ISR once for each piece.
|
|||
|
//
|
|||
|
|
|||
|
classDeviceObject =
|
|||
|
deviceExtension->ConnectData.ClassDeviceObject;
|
|||
|
classService =
|
|||
|
deviceExtension->ConnectData.ClassService;
|
|||
|
ASSERT(classService != NULL);
|
|||
|
|
|||
|
if (getPointerContext.DataOut >= getPointerContext.DataIn) {
|
|||
|
|
|||
|
//
|
|||
|
// We'll have to wrap the InputData circular buffer. Call
|
|||
|
// the class callback ISR with the chunk of data starting at
|
|||
|
// DataOut and ending at the end of the queue.
|
|||
|
//
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseIsrDpc: calling class callback\n"
|
|||
|
));
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseIsrDpc: with Start 0x%x and End 0x%x\n",
|
|||
|
getPointerContext.DataOut,
|
|||
|
deviceExtension->DataEnd
|
|||
|
));
|
|||
|
|
|||
|
(*(PSERVICE_CALLBACK_ROUTINE) classService)(
|
|||
|
classDeviceObject,
|
|||
|
getPointerContext.DataOut,
|
|||
|
deviceExtension->DataEnd,
|
|||
|
&inputDataConsumed
|
|||
|
);
|
|||
|
|
|||
|
dataNotConsumed = ((ULONG)((PUCHAR)
|
|||
|
deviceExtension->DataEnd -
|
|||
|
(PUCHAR) getPointerContext.DataOut)
|
|||
|
/ sizeof(MOUSE_INPUT_DATA)) - inputDataConsumed;
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseIsrDpc: (Wrap) Call callback consumed %d items, left %d\n",
|
|||
|
inputDataConsumed,
|
|||
|
dataNotConsumed
|
|||
|
));
|
|||
|
|
|||
|
setPointerContext.InputCount += inputDataConsumed;
|
|||
|
|
|||
|
if (dataNotConsumed) {
|
|||
|
setPointerContext.DataOut =
|
|||
|
((PUCHAR)getPointerContext.DataOut) +
|
|||
|
(inputDataConsumed * sizeof(MOUSE_INPUT_DATA));
|
|||
|
} else {
|
|||
|
setPointerContext.DataOut =
|
|||
|
deviceExtension->InputData;
|
|||
|
getPointerContext.DataOut = setPointerContext.DataOut;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
//
|
|||
|
// Call the class callback ISR with data remaining in the queue.
|
|||
|
//
|
|||
|
|
|||
|
if ((dataNotConsumed == 0) &&
|
|||
|
(inputDataConsumed < getPointerContext.InputCount)){
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseIsrDpc: calling class callback\n"
|
|||
|
));
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseIsrDpc: with Start 0x%x and End 0x%x\n",
|
|||
|
getPointerContext.DataOut,
|
|||
|
getPointerContext.DataIn
|
|||
|
));
|
|||
|
|
|||
|
(*(PSERVICE_CALLBACK_ROUTINE) classService)(
|
|||
|
classDeviceObject,
|
|||
|
getPointerContext.DataOut,
|
|||
|
getPointerContext.DataIn,
|
|||
|
&inputDataConsumed
|
|||
|
);
|
|||
|
|
|||
|
dataNotConsumed = ((ULONG)((PUCHAR) getPointerContext.DataIn -
|
|||
|
(PUCHAR) getPointerContext.DataOut)
|
|||
|
/ sizeof(MOUSE_INPUT_DATA)) - inputDataConsumed;
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseIsrDpc: Call callback consumed %d items, left %d\n",
|
|||
|
inputDataConsumed,
|
|||
|
dataNotConsumed
|
|||
|
));
|
|||
|
|
|||
|
setPointerContext.DataOut =
|
|||
|
((PUCHAR)getPointerContext.DataOut) +
|
|||
|
(inputDataConsumed * sizeof(MOUSE_INPUT_DATA));
|
|||
|
setPointerContext.InputCount += inputDataConsumed;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//
|
|||
|
// Update the port InputData queue DataOut pointer and InputCount
|
|||
|
// synchronously.
|
|||
|
//
|
|||
|
|
|||
|
KeSynchronizeExecution(
|
|||
|
deviceExtension->InterruptObject,
|
|||
|
(PKSYNCHRONIZE_ROUTINE) SerMouSetDataQueuePointer,
|
|||
|
(PVOID) &setPointerContext
|
|||
|
);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
if (dataNotConsumed) {
|
|||
|
|
|||
|
//
|
|||
|
// The class driver was unable to consume all the data.
|
|||
|
// Reset the interlocked variable to -1. We do not want
|
|||
|
// to attempt to move more data to the class driver at this
|
|||
|
// point, because it is already overloaded. Need to wait a
|
|||
|
// while to give the Raw Input Thread a chance to read some
|
|||
|
// of the data out of the class driver's queue. We accomplish
|
|||
|
// this "wait" via a timer.
|
|||
|
//
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseIsrDpc: set timer in DPC\n"));
|
|||
|
|
|||
|
operationContext.Operation = WriteOperation;
|
|||
|
interlockedResult = -1;
|
|||
|
operationContext.NewValue = &interlockedResult;
|
|||
|
|
|||
|
KeSynchronizeExecution(
|
|||
|
deviceExtension->InterruptObject,
|
|||
|
(PKSYNCHRONIZE_ROUTINE) SerMouDpcVariableOperation,
|
|||
|
(PVOID) &operationContext
|
|||
|
);
|
|||
|
|
|||
|
deltaTime.LowPart = (ULONG)(-10 * 1000 * 1000);
|
|||
|
deltaTime.HighPart = -1;
|
|||
|
|
|||
|
(VOID) KeSetTimer(
|
|||
|
&deviceExtension->DataConsumptionTimer,
|
|||
|
deltaTime,
|
|||
|
&deviceExtension->IsrDpcRetry
|
|||
|
);
|
|||
|
|
|||
|
moreDpcProcessing = FALSE;
|
|||
|
|
|||
|
} else {
|
|||
|
|
|||
|
//
|
|||
|
// Decrement DpcInterlockVariable. If the result goes negative,
|
|||
|
// then we're all finished processing the DPC. Otherwise, either
|
|||
|
// the ISR incremented DpcInterlockVariable because it has more
|
|||
|
// work for the ISR DPC to do, or a concurrent DPC executed on
|
|||
|
// some processor while the current DPC was running (the
|
|||
|
// concurrent DPC wouldn't have done any work). Make sure that
|
|||
|
// the current DPC handles any extra work that is ready to be
|
|||
|
// done.
|
|||
|
//
|
|||
|
|
|||
|
operationContext.Operation = DecrementOperation;
|
|||
|
operationContext.NewValue = &interlockedResult;
|
|||
|
|
|||
|
KeSynchronizeExecution(
|
|||
|
deviceExtension->InterruptObject,
|
|||
|
(PKSYNCHRONIZE_ROUTINE) SerMouDpcVariableOperation,
|
|||
|
(PVOID) &operationContext
|
|||
|
);
|
|||
|
|
|||
|
if (interlockedResult != -1) {
|
|||
|
|
|||
|
//
|
|||
|
// The interlocked variable is still greater than or equal to
|
|||
|
// zero. Reset it to zero, so that we execute the loop one
|
|||
|
// more time (assuming no more DPCs execute and bump the
|
|||
|
// variable up again).
|
|||
|
//
|
|||
|
|
|||
|
operationContext.Operation = WriteOperation;
|
|||
|
interlockedResult = 0;
|
|||
|
operationContext.NewValue = &interlockedResult;
|
|||
|
|
|||
|
KeSynchronizeExecution(
|
|||
|
deviceExtension->InterruptObject,
|
|||
|
(PKSYNCHRONIZE_ROUTINE) SerMouDpcVariableOperation,
|
|||
|
(PVOID) &operationContext
|
|||
|
);
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseIsrDpc: loop in DPC\n"));
|
|||
|
} else {
|
|||
|
moreDpcProcessing = FALSE;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseIsrDpc: exit\n"));
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
NTSTATUS
|
|||
|
SerialMouseOpenClose(
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
IN PIRP Irp
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This is the dispatch routine for create/open and close requests.
|
|||
|
These requests complete successfully.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
DeviceObject - Pointer to the device object.
|
|||
|
|
|||
|
Irp - Pointer to the request packet.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
Status is returned.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
UNREFERENCED_PARAMETER(DeviceObject);
|
|||
|
|
|||
|
SerMouPrint((3,"SERMOUSE-SerialMouseOpenClose: enter\n"));
|
|||
|
|
|||
|
//
|
|||
|
// Complete the request with successful status.
|
|||
|
//
|
|||
|
|
|||
|
Irp->IoStatus.Status = STATUS_SUCCESS;
|
|||
|
Irp->IoStatus.Information = 0;
|
|||
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
|||
|
|
|||
|
SerMouPrint((3,"SERMOUSE-SerialMouseOpenClose: exit\n"));
|
|||
|
|
|||
|
return(STATUS_SUCCESS);
|
|||
|
|
|||
|
} // end SerialMouseOpenClose
|
|||
|
|
|||
|
VOID
|
|||
|
SerialMouseStartIo(
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
IN PIRP Irp
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine starts an I/O operation for the device.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
DeviceObject - Pointer to the device object.
|
|||
|
|
|||
|
Irp - Pointer to the request packet.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
PDEVICE_EXTENSION deviceExtension;
|
|||
|
PIO_STACK_LOCATION irpSp;
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseStartIo: enter\n"));
|
|||
|
|
|||
|
deviceExtension = DeviceObject->DeviceExtension;
|
|||
|
|
|||
|
//
|
|||
|
// Bump the error log sequence number.
|
|||
|
//
|
|||
|
|
|||
|
deviceExtension->SequenceNumber += 1;
|
|||
|
|
|||
|
//
|
|||
|
// Get a pointer to the current parameters for this request. The
|
|||
|
// information is contained in the current stack location.
|
|||
|
//
|
|||
|
|
|||
|
irpSp = IoGetCurrentIrpStackLocation(Irp);
|
|||
|
|
|||
|
//
|
|||
|
// We know we got here with an internal device control request. Switch
|
|||
|
// on IoControlCode.
|
|||
|
//
|
|||
|
|
|||
|
switch(irpSp->Parameters.DeviceIoControl.IoControlCode) {
|
|||
|
|
|||
|
//
|
|||
|
// Enable mouse interrupts, by calling SerMouEnableInterrupts
|
|||
|
// synchronously.
|
|||
|
//
|
|||
|
|
|||
|
case IOCTL_INTERNAL_MOUSE_ENABLE:
|
|||
|
|
|||
|
KeSynchronizeExecution(
|
|||
|
deviceExtension->InterruptObject,
|
|||
|
(PKSYNCHRONIZE_ROUTINE) SerMouEnableInterrupts,
|
|||
|
(PVOID) deviceExtension
|
|||
|
);
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerialMouseStartIo: mouse enable (count %d)\n",
|
|||
|
deviceExtension->MouseEnableCount
|
|||
|
));
|
|||
|
|
|||
|
Irp->IoStatus.Status = STATUS_SUCCESS;
|
|||
|
|
|||
|
//
|
|||
|
// Complete the request.
|
|||
|
//
|
|||
|
|
|||
|
IoStartNextPacket(DeviceObject, FALSE);
|
|||
|
IoCompleteRequest(Irp, IO_MOUSE_INCREMENT);
|
|||
|
|
|||
|
break;
|
|||
|
|
|||
|
//
|
|||
|
// Disable mouse interrupts, by calling SerMouDisableInterrupts
|
|||
|
// synchronously.
|
|||
|
//
|
|||
|
|
|||
|
case IOCTL_INTERNAL_MOUSE_DISABLE:
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseStartIo: mouse disable"));
|
|||
|
|
|||
|
if (deviceExtension->MouseEnableCount == 0) {
|
|||
|
|
|||
|
//
|
|||
|
// Mouse already disabled.
|
|||
|
//
|
|||
|
|
|||
|
SerMouPrint((2, " - error\n"));
|
|||
|
|
|||
|
Irp->IoStatus.Status = STATUS_DEVICE_DATA_ERROR;
|
|||
|
|
|||
|
} else {
|
|||
|
|
|||
|
//
|
|||
|
// Disable mouse by calling SerMouDisableInterrupts.
|
|||
|
//
|
|||
|
|
|||
|
KeSynchronizeExecution(
|
|||
|
deviceExtension->InterruptObject,
|
|||
|
(PKSYNCHRONIZE_ROUTINE) SerMouDisableInterrupts,
|
|||
|
(PVOID) deviceExtension
|
|||
|
);
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
" (count %d)\n",
|
|||
|
deviceExtension->MouseEnableCount
|
|||
|
));
|
|||
|
|
|||
|
Irp->IoStatus.Status = STATUS_SUCCESS;
|
|||
|
}
|
|||
|
|
|||
|
//
|
|||
|
// Complete the request.
|
|||
|
//
|
|||
|
|
|||
|
IoStartNextPacket(DeviceObject, FALSE);
|
|||
|
IoCompleteRequest(Irp, IO_MOUSE_INCREMENT);
|
|||
|
|
|||
|
break;
|
|||
|
|
|||
|
default:
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseStartIo: INVALID REQUEST\n"));
|
|||
|
|
|||
|
//
|
|||
|
// Log an internal error. Note that we're calling the
|
|||
|
// error log DPC routine directly, rather than duplicating
|
|||
|
// code.
|
|||
|
//
|
|||
|
|
|||
|
SerialMouseErrorLogDpc(
|
|||
|
(PKDPC) NULL,
|
|||
|
DeviceObject,
|
|||
|
Irp,
|
|||
|
(PVOID) (ULONG) SERMOUSE_INVALID_STARTIO_REQUEST
|
|||
|
);
|
|||
|
|
|||
|
|
|||
|
ASSERT(FALSE);
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
SerMouPrint((2, "SERMOUSE-SerialMouseStartIo: exit\n"));
|
|||
|
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
VOID
|
|||
|
SerMouDpcVariableOperation(
|
|||
|
IN PVOID Context
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine is called synchronously by the ISR DPC to perform an
|
|||
|
operation on the InterlockedDpcVariable. The operations that can be
|
|||
|
performed include increment, decrement, write, and read. The ISR
|
|||
|
itself reads and writes the InterlockedDpcVariable without calling this
|
|||
|
routine.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Context - Pointer to a structure containing the address of the variable
|
|||
|
to be operated on, the operation to perform, and the address at
|
|||
|
which to copy the resulting value of the variable (the latter is also
|
|||
|
used to pass in the value to write to the variable, on a write
|
|||
|
operation).
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
PVARIABLE_OPERATION_CONTEXT operationContext = Context;
|
|||
|
|
|||
|
SerMouPrint((3,"SERMOUSE-SerMouDpcVariableOperation: enter\n"));
|
|||
|
SerMouPrint((
|
|||
|
3,
|
|||
|
"\tPerforming %s at 0x%x (current value 0x%x)\n",
|
|||
|
(operationContext->Operation == IncrementOperation)? "increment":
|
|||
|
(operationContext->Operation == DecrementOperation)? "decrement":
|
|||
|
(operationContext->Operation == WriteOperation)? "write":
|
|||
|
(operationContext->Operation == ReadOperation)? "read":"",
|
|||
|
operationContext->VariableAddress,
|
|||
|
*(operationContext->VariableAddress)
|
|||
|
));
|
|||
|
|
|||
|
//
|
|||
|
// Perform the specified operation at the specified address.
|
|||
|
//
|
|||
|
|
|||
|
switch(operationContext->Operation) {
|
|||
|
case IncrementOperation:
|
|||
|
*(operationContext->VariableAddress) += 1;
|
|||
|
break;
|
|||
|
case DecrementOperation:
|
|||
|
*(operationContext->VariableAddress) -= 1;
|
|||
|
break;
|
|||
|
case ReadOperation:
|
|||
|
break;
|
|||
|
case WriteOperation:
|
|||
|
SerMouPrint((
|
|||
|
3,
|
|||
|
"\tWriting 0x%x\n",
|
|||
|
*(operationContext->NewValue)
|
|||
|
));
|
|||
|
*(operationContext->VariableAddress) =
|
|||
|
*(operationContext->NewValue);
|
|||
|
break;
|
|||
|
default:
|
|||
|
ASSERT(FALSE);
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
*(operationContext->NewValue) = *(operationContext->VariableAddress);
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
3,
|
|||
|
"SERMOUSE-SerMouDpcVariableOperation: exit with value 0x%x\n",
|
|||
|
*(operationContext->NewValue)
|
|||
|
));
|
|||
|
}
|
|||
|
|
|||
|
VOID
|
|||
|
SerMouGetDataQueuePointer(
|
|||
|
IN PVOID Context
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine is called synchronously to get the current DataIn and DataOut
|
|||
|
pointers for the port InputData queue.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Context - Pointer to a structure containing the device extension,
|
|||
|
address at which to store the current DataIn pointer, and the
|
|||
|
address at which to store the current DataOut pointer.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
PDEVICE_EXTENSION deviceExtension;
|
|||
|
|
|||
|
SerMouPrint((3,"SERMOUSE-SerMouGetDataQueuePointer: enter\n"));
|
|||
|
|
|||
|
//
|
|||
|
// Get address of device extension.
|
|||
|
//
|
|||
|
|
|||
|
deviceExtension = (PDEVICE_EXTENSION)
|
|||
|
((PGET_DATA_POINTER_CONTEXT) Context)->DeviceExtension;
|
|||
|
|
|||
|
//
|
|||
|
// Get the DataIn and DataOut pointers.
|
|||
|
//
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
3,
|
|||
|
"SERMOUSE-SerMouGetDataQueuePointer: DataIn 0x%x, DataOut 0x%x\n",
|
|||
|
deviceExtension->DataIn,
|
|||
|
deviceExtension->DataOut
|
|||
|
));
|
|||
|
((PGET_DATA_POINTER_CONTEXT) Context)->DataIn = deviceExtension->DataIn;
|
|||
|
((PGET_DATA_POINTER_CONTEXT) Context)->DataOut = deviceExtension->DataOut;
|
|||
|
((PGET_DATA_POINTER_CONTEXT) Context)->InputCount =
|
|||
|
deviceExtension->InputCount;
|
|||
|
|
|||
|
SerMouPrint((3,"SERMOUSE-SerMouGetDataQueuePointer: exit\n"));
|
|||
|
}
|
|||
|
|
|||
|
VOID
|
|||
|
SerMouInitializeDataQueue (
|
|||
|
IN PVOID Context
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine initializes the input data queue. It is called
|
|||
|
via KeSynchronization, except when called from the initialization routine.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Context - Pointer to the device extension.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
PDEVICE_EXTENSION deviceExtension;
|
|||
|
|
|||
|
SerMouPrint((3,"SERMOUSE-SerMouInitializeDataQueue: enter\n"));
|
|||
|
|
|||
|
//
|
|||
|
// Get address of device extension.
|
|||
|
//
|
|||
|
|
|||
|
deviceExtension = (PDEVICE_EXTENSION) Context;
|
|||
|
|
|||
|
//
|
|||
|
// Initialize the input data queue.
|
|||
|
//
|
|||
|
|
|||
|
deviceExtension->InputCount = 0;
|
|||
|
deviceExtension->DataIn = deviceExtension->InputData;
|
|||
|
deviceExtension->DataOut = deviceExtension->InputData;
|
|||
|
|
|||
|
deviceExtension->OkayToLogOverflow = TRUE;
|
|||
|
|
|||
|
SerMouPrint((3,"SERMOUSE-SerMouInitializeDataQueue: exit\n"));
|
|||
|
|
|||
|
} // end SerMouInitializeDataQueue
|
|||
|
|
|||
|
VOID
|
|||
|
SerMouSendReport(
|
|||
|
IN PDEVICE_OBJECT DeviceObject
|
|||
|
)
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
Place a completed report in the queue for subsequent processing by a DPC.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Device Object - Pointer to the device object.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
PDEVICE_EXTENSION deviceExtension;
|
|||
|
|
|||
|
deviceExtension = (PDEVICE_EXTENSION) DeviceObject->DeviceExtension;
|
|||
|
|
|||
|
if (!SerMouWriteDataToQueue(
|
|||
|
deviceExtension,
|
|||
|
&deviceExtension->CurrentInput
|
|||
|
)) {
|
|||
|
|
|||
|
//
|
|||
|
// The mouse input data queue is full. Just drop the
|
|||
|
// latest input on the floor.
|
|||
|
//
|
|||
|
// Queue a DPC to log an overrun error.
|
|||
|
//
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
1,
|
|||
|
"SERMOUSE-SerMouSendReport: queue overflow\n"
|
|||
|
));
|
|||
|
|
|||
|
if (deviceExtension->OkayToLogOverflow) {
|
|||
|
KeInsertQueueDpc(
|
|||
|
&deviceExtension->ErrorLogDpc,
|
|||
|
(PIRP) NULL,
|
|||
|
(PVOID) (ULONG) SERMOUSE_MOU_BUFFER_OVERFLOW
|
|||
|
);
|
|||
|
deviceExtension->OkayToLogOverflow = FALSE;
|
|||
|
}
|
|||
|
|
|||
|
} else if (deviceExtension->DpcInterlockVariable >= 0) {
|
|||
|
|
|||
|
//
|
|||
|
// The ISR DPC is already executing. Tell the ISR DPC it has
|
|||
|
// more work to do by incrementing the DpcInterlockVariable.
|
|||
|
//
|
|||
|
|
|||
|
deviceExtension->DpcInterlockVariable += 1;
|
|||
|
|
|||
|
} else {
|
|||
|
|
|||
|
//
|
|||
|
// Queue the ISR DPC.
|
|||
|
//
|
|||
|
|
|||
|
KeInsertQueueDpc(
|
|||
|
&deviceExtension->IsrDpc,
|
|||
|
DeviceObject->CurrentIrp,
|
|||
|
NULL
|
|||
|
);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
VOID
|
|||
|
SerMouSetDataQueuePointer(
|
|||
|
IN PVOID Context
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine is called synchronously to set the DataOut pointer
|
|||
|
and InputCount for the port InputData queue.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Context - Pointer to a structure containing the device extension
|
|||
|
and the new DataOut value for the port InputData queue.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
PDEVICE_EXTENSION deviceExtension;
|
|||
|
|
|||
|
SerMouPrint((3,"SERMOUSE-SerMouSetDataQueuePointer: enter\n"));
|
|||
|
|
|||
|
//
|
|||
|
// Get address of device extension.
|
|||
|
//
|
|||
|
|
|||
|
deviceExtension = (PDEVICE_EXTENSION)
|
|||
|
((PSET_DATA_POINTER_CONTEXT) Context)->DeviceExtension;
|
|||
|
|
|||
|
//
|
|||
|
// Set the DataOut pointer.
|
|||
|
//
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
3,
|
|||
|
"SERMOUSE-SerMouSetDataQueuePointer: old mouse DataOut 0x%x, InputCount %d\n",
|
|||
|
deviceExtension->DataOut,
|
|||
|
deviceExtension->InputCount
|
|||
|
));
|
|||
|
deviceExtension->DataOut = ((PSET_DATA_POINTER_CONTEXT) Context)->DataOut;
|
|||
|
deviceExtension->InputCount -=
|
|||
|
((PSET_DATA_POINTER_CONTEXT) Context)->InputCount;
|
|||
|
|
|||
|
if (deviceExtension->InputCount == 0) {
|
|||
|
|
|||
|
//
|
|||
|
// Reset the flag that determines whether it is time to log
|
|||
|
// queue overflow errors. We don't want to log errors too often.
|
|||
|
// Instead, log an error on the first overflow that occurs after
|
|||
|
// the ring buffer has been emptied, and then stop logging errors
|
|||
|
// until it gets cleared out and overflows again.
|
|||
|
//
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
1,
|
|||
|
"SERMOUSE-SerMouSetDataQueuePointer: Okay to log overflow\n"
|
|||
|
));
|
|||
|
deviceExtension->OkayToLogOverflow = TRUE;
|
|||
|
}
|
|||
|
|
|||
|
SerMouPrint((
|
|||
|
3,
|
|||
|
"SERMOUSE-SerMouSetDataQueuePointer: new mouse DataOut 0x%x, InputCount %d\n",
|
|||
|
deviceExtension->DataOut,
|
|||
|
deviceExtension->InputCount
|
|||
|
));
|
|||
|
|
|||
|
SerMouPrint((3,"SERMOUSE-SerMouSetDataQueuePointer: exit\n"));
|
|||
|
}
|
|||
|
|
|||
|
BOOLEAN
|
|||
|
SerMouWriteDataToQueue(
|
|||
|
PDEVICE_EXTENSION DeviceExtension,
|
|||
|
IN PMOUSE_INPUT_DATA InputData
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine adds input data from the mouse to the InputData queue.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
DeviceExtension - Pointer to the device extension.
|
|||
|
|
|||
|
InputData - Pointer to the data to add to the InputData queue.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
Returns TRUE if the data was added, otherwise FALSE.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
SerMouPrint((2,"SERMOUSE-SerMouWriteDataToQueue: enter\n"));
|
|||
|
SerMouPrint((
|
|||
|
3,
|
|||
|
"SERMOUSE-SerMouWriteDataToQueue: DataIn 0x%x, DataOut 0x%x\n",
|
|||
|
DeviceExtension->DataIn,
|
|||
|
DeviceExtension->DataOut
|
|||
|
));
|
|||
|
SerMouPrint((
|
|||
|
3,
|
|||
|
"SERMOUSE-SerMouWriteDataToQueue: InputCount %d\n",
|
|||
|
DeviceExtension->InputCount
|
|||
|
));
|
|||
|
|
|||
|
//
|
|||
|
// Check for full input data queue.
|
|||
|
//
|
|||
|
|
|||
|
if ((DeviceExtension->DataIn == DeviceExtension->DataOut) &&
|
|||
|
(DeviceExtension->InputCount != 0)) {
|
|||
|
|
|||
|
//
|
|||
|
// The input data queue is full. Intentionally ignore
|
|||
|
// the new data.
|
|||
|
//
|
|||
|
|
|||
|
SerMouPrint((1,"SERMOUSE-SerMouWriteDataToQueue: OVERFLOW\n"));
|
|||
|
return(FALSE);
|
|||
|
|
|||
|
} else {
|
|||
|
*(DeviceExtension->DataIn) = *InputData;
|
|||
|
DeviceExtension->InputCount += 1;
|
|||
|
DeviceExtension->DataIn++;
|
|||
|
SerMouPrint((
|
|||
|
2,
|
|||
|
"SERMOUSE-SerMouWriteDataToQueue: new InputCount %d\n",
|
|||
|
DeviceExtension->InputCount
|
|||
|
));
|
|||
|
if (DeviceExtension->DataIn ==
|
|||
|
DeviceExtension->DataEnd) {
|
|||
|
SerMouPrint((2,"SERMOUSE-SerMouWriteDataToQueue: wrap buffer\n"));
|
|||
|
DeviceExtension->DataIn = DeviceExtension->InputData;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
SerMouPrint((2,"SERMOUSE-SerMouWriteDataToQueue: exit\n"));
|
|||
|
|
|||
|
return(TRUE);
|
|||
|
}
|
|||
|
|