564 lines
12 KiB
C
564 lines
12 KiB
C
|
/*++
|
|||
|
|
|||
|
Copyright (c) 1991, 1992, 1993 - 1997 Microsoft Corporation
|
|||
|
|
|||
|
Module Name:
|
|||
|
|
|||
|
immediat.c
|
|||
|
|
|||
|
Abstract:
|
|||
|
|
|||
|
This module contains the code that is very specific to transmit
|
|||
|
immediate character operations in the serial driver
|
|||
|
|
|||
|
Author:
|
|||
|
|
|||
|
Anthony V. Ercolano 26-Sep-1991
|
|||
|
|
|||
|
Environment:
|
|||
|
|
|||
|
Kernel mode
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
#include "precomp.h"
|
|||
|
|
|||
|
VOID
|
|||
|
SerialGetNextImmediate(
|
|||
|
IN PIRP *CurrentOpIrp,
|
|||
|
IN PLIST_ENTRY QueueToProcess,
|
|||
|
IN PIRP *NewIrp,
|
|||
|
IN BOOLEAN CompleteCurrent,
|
|||
|
IN PSERIAL_DEVICE_EXTENSION Extension
|
|||
|
);
|
|||
|
|
|||
|
VOID
|
|||
|
SerialCancelImmediate(
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
IN PIRP Irp
|
|||
|
);
|
|||
|
|
|||
|
BOOLEAN
|
|||
|
SerialGiveImmediateToIsr(
|
|||
|
IN PVOID Context
|
|||
|
);
|
|||
|
|
|||
|
BOOLEAN
|
|||
|
SerialGrabImmediateFromIsr(
|
|||
|
IN PVOID Context
|
|||
|
);
|
|||
|
|
|||
|
BOOLEAN
|
|||
|
SerialGiveImmediateToIsr(
|
|||
|
IN PVOID Context
|
|||
|
);
|
|||
|
|
|||
|
BOOLEAN
|
|||
|
SerialGrabImmediateFromIsr(
|
|||
|
IN PVOID Context
|
|||
|
);
|
|||
|
|
|||
|
|
|||
|
#ifdef ALLOC_PRAGMA
|
|||
|
#pragma alloc_text(PAGESER,SerialStartImmediate)
|
|||
|
#pragma alloc_text(PAGESER,SerialGetNextImmediate)
|
|||
|
#pragma alloc_text(PAGESER,SerialCancelImmediate)
|
|||
|
#pragma alloc_text(PAGESER,SerialGiveImmediateToIsr)
|
|||
|
#pragma alloc_text(PAGESER,SerialGrabImmediateFromIsr)
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
VOID
|
|||
|
SerialStartImmediate(
|
|||
|
IN PSERIAL_DEVICE_EXTENSION Extension
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine will calculate the timeouts needed for the
|
|||
|
write. It will then hand the irp off to the isr. It
|
|||
|
will need to be careful incase the irp has been canceled.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Extension - A pointer to the serial device extension.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
KIRQL OldIrql;
|
|||
|
LARGE_INTEGER TotalTime;
|
|||
|
BOOLEAN UseATimer;
|
|||
|
SERIAL_TIMEOUTS Timeouts;
|
|||
|
|
|||
|
SERIAL_LOCKED_PAGED_CODE();
|
|||
|
|
|||
|
|
|||
|
SerialDump(SERTRACECALLS, ("SERIAL: SerialStartImmediate\n"));
|
|||
|
|
|||
|
|
|||
|
UseATimer = FALSE;
|
|||
|
Extension->CurrentImmediateIrp->IoStatus.Status = STATUS_PENDING;
|
|||
|
IoMarkIrpPending(Extension->CurrentImmediateIrp);
|
|||
|
|
|||
|
//
|
|||
|
// Calculate the timeout value needed for the
|
|||
|
// request. Note that the values stored in the
|
|||
|
// timeout record are in milliseconds. Note that
|
|||
|
// if the timeout values are zero then we won't start
|
|||
|
// the timer.
|
|||
|
//
|
|||
|
|
|||
|
KeAcquireSpinLock(
|
|||
|
&Extension->ControlLock,
|
|||
|
&OldIrql
|
|||
|
);
|
|||
|
|
|||
|
Timeouts = Extension->Timeouts;
|
|||
|
|
|||
|
KeReleaseSpinLock(
|
|||
|
&Extension->ControlLock,
|
|||
|
OldIrql
|
|||
|
);
|
|||
|
|
|||
|
if (Timeouts.WriteTotalTimeoutConstant ||
|
|||
|
Timeouts.WriteTotalTimeoutMultiplier) {
|
|||
|
|
|||
|
UseATimer = TRUE;
|
|||
|
|
|||
|
//
|
|||
|
// We have some timer values to calculate.
|
|||
|
//
|
|||
|
|
|||
|
TotalTime.QuadPart = (LONGLONG)((ULONG)Timeouts.WriteTotalTimeoutMultiplier);
|
|||
|
|
|||
|
TotalTime.QuadPart += Timeouts.WriteTotalTimeoutConstant;
|
|||
|
|
|||
|
TotalTime.QuadPart *= -10000;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//
|
|||
|
// As the irp might be going to the isr, this is a good time
|
|||
|
// to initialize the reference count.
|
|||
|
//
|
|||
|
|
|||
|
SERIAL_INIT_REFERENCE(Extension->CurrentImmediateIrp);
|
|||
|
|
|||
|
//
|
|||
|
// We need to see if this irp should be canceled.
|
|||
|
//
|
|||
|
|
|||
|
IoAcquireCancelSpinLock(&OldIrql);
|
|||
|
if (Extension->CurrentImmediateIrp->Cancel) {
|
|||
|
|
|||
|
PIRP OldIrp = Extension->CurrentImmediateIrp;
|
|||
|
|
|||
|
Extension->CurrentImmediateIrp = NULL;
|
|||
|
IoReleaseCancelSpinLock(OldIrql);
|
|||
|
|
|||
|
OldIrp->IoStatus.Status = STATUS_CANCELLED;
|
|||
|
OldIrp->IoStatus.Information = 0;
|
|||
|
|
|||
|
SerialDump(
|
|||
|
SERIRPPATH,
|
|||
|
("SERIAL: Complete Irp: %x\n",OldIrp)
|
|||
|
);
|
|||
|
SerialCompleteRequest(Extension, OldIrp, 0);
|
|||
|
|
|||
|
} else {
|
|||
|
|
|||
|
//
|
|||
|
// We give the irp to to the isr to write out.
|
|||
|
// We set a cancel routine that knows how to
|
|||
|
// grab the current write away from the isr.
|
|||
|
//
|
|||
|
|
|||
|
IoSetCancelRoutine(
|
|||
|
Extension->CurrentImmediateIrp,
|
|||
|
SerialCancelImmediate
|
|||
|
);
|
|||
|
|
|||
|
//
|
|||
|
// Since the cancel routine knows about the irp we
|
|||
|
// increment the reference count.
|
|||
|
//
|
|||
|
|
|||
|
SERIAL_SET_REFERENCE(
|
|||
|
Extension->CurrentImmediateIrp,
|
|||
|
SERIAL_REF_CANCEL
|
|||
|
);
|
|||
|
|
|||
|
if (UseATimer) {
|
|||
|
|
|||
|
SerialSetTimer(
|
|||
|
&Extension->ImmediateTotalTimer,
|
|||
|
TotalTime,
|
|||
|
&Extension->TotalImmediateTimeoutDpc,
|
|||
|
Extension
|
|||
|
);
|
|||
|
|
|||
|
//
|
|||
|
// Since the timer knows about the irp we increment
|
|||
|
// the reference count.
|
|||
|
//
|
|||
|
|
|||
|
SERIAL_SET_REFERENCE(
|
|||
|
Extension->CurrentImmediateIrp,
|
|||
|
SERIAL_REF_TOTAL_TIMER
|
|||
|
);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
KeSynchronizeExecution(
|
|||
|
Extension->Interrupt,
|
|||
|
SerialGiveImmediateToIsr,
|
|||
|
Extension
|
|||
|
);
|
|||
|
|
|||
|
IoReleaseCancelSpinLock(OldIrql);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
VOID
|
|||
|
SerialCompleteImmediate(
|
|||
|
IN PKDPC Dpc,
|
|||
|
IN PVOID DeferredContext,
|
|||
|
IN PVOID SystemContext1,
|
|||
|
IN PVOID SystemContext2
|
|||
|
)
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
PSERIAL_DEVICE_EXTENSION Extension = DeferredContext;
|
|||
|
KIRQL OldIrql;
|
|||
|
|
|||
|
UNREFERENCED_PARAMETER(SystemContext1);
|
|||
|
UNREFERENCED_PARAMETER(SystemContext2);
|
|||
|
|
|||
|
|
|||
|
SerialDump(SERTRACECALLS, ("SERIAL: SerialCompleteImmediate\n"));
|
|||
|
|
|||
|
IoAcquireCancelSpinLock(&OldIrql);
|
|||
|
|
|||
|
SerialTryToCompleteCurrent(
|
|||
|
Extension,
|
|||
|
NULL,
|
|||
|
OldIrql,
|
|||
|
STATUS_SUCCESS,
|
|||
|
&Extension->CurrentImmediateIrp,
|
|||
|
NULL,
|
|||
|
NULL,
|
|||
|
&Extension->ImmediateTotalTimer,
|
|||
|
NULL,
|
|||
|
SerialGetNextImmediate,
|
|||
|
SERIAL_REF_ISR
|
|||
|
);
|
|||
|
|
|||
|
SerialDpcEpilogue(Extension, Dpc);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
VOID
|
|||
|
SerialTimeoutImmediate(
|
|||
|
IN PKDPC Dpc,
|
|||
|
IN PVOID DeferredContext,
|
|||
|
IN PVOID SystemContext1,
|
|||
|
IN PVOID SystemContext2
|
|||
|
)
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
PSERIAL_DEVICE_EXTENSION Extension = DeferredContext;
|
|||
|
KIRQL OldIrql;
|
|||
|
|
|||
|
UNREFERENCED_PARAMETER(SystemContext1);
|
|||
|
UNREFERENCED_PARAMETER(SystemContext2);
|
|||
|
|
|||
|
|
|||
|
SerialDump(SERTRACECALLS, ("SERIAL: SerialTimeoutImmediate\n"));
|
|||
|
|
|||
|
IoAcquireCancelSpinLock(&OldIrql);
|
|||
|
|
|||
|
SerialTryToCompleteCurrent(
|
|||
|
Extension,
|
|||
|
SerialGrabImmediateFromIsr,
|
|||
|
OldIrql,
|
|||
|
STATUS_TIMEOUT,
|
|||
|
&Extension->CurrentImmediateIrp,
|
|||
|
NULL,
|
|||
|
NULL,
|
|||
|
&Extension->ImmediateTotalTimer,
|
|||
|
NULL,
|
|||
|
SerialGetNextImmediate,
|
|||
|
SERIAL_REF_TOTAL_TIMER
|
|||
|
);
|
|||
|
|
|||
|
SerialDpcEpilogue(Extension, Dpc);
|
|||
|
}
|
|||
|
|
|||
|
VOID
|
|||
|
SerialGetNextImmediate(
|
|||
|
IN PIRP *CurrentOpIrp,
|
|||
|
IN PLIST_ENTRY QueueToProcess,
|
|||
|
IN PIRP *NewIrp,
|
|||
|
IN BOOLEAN CompleteCurrent,
|
|||
|
IN PSERIAL_DEVICE_EXTENSION Extension
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine is used to complete the current immediate
|
|||
|
irp. Even though the current immediate will always
|
|||
|
be completed and there is no queue associated with it,
|
|||
|
we use this routine so that we can try to satisfy
|
|||
|
a wait for transmit queue empty event.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
CurrentOpIrp - Pointer to the pointer that points to the
|
|||
|
current write irp. This should point
|
|||
|
to CurrentImmediateIrp.
|
|||
|
|
|||
|
QueueToProcess - Always NULL.
|
|||
|
|
|||
|
NewIrp - Always NULL on exit to this routine.
|
|||
|
|
|||
|
CompleteCurrent - Should always be true for this routine.
|
|||
|
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
KIRQL OldIrql;
|
|||
|
// PSERIAL_DEVICE_EXTENSION Extension = CONTAINING_RECORD(
|
|||
|
// CurrentOpIrp,
|
|||
|
// SERIAL_DEVICE_EXTENSION,
|
|||
|
// CurrentImmediateIrp
|
|||
|
// );
|
|||
|
PIRP OldIrp = *CurrentOpIrp;
|
|||
|
|
|||
|
UNREFERENCED_PARAMETER(QueueToProcess);
|
|||
|
UNREFERENCED_PARAMETER(CompleteCurrent);
|
|||
|
SERIAL_LOCKED_PAGED_CODE();
|
|||
|
|
|||
|
IoAcquireCancelSpinLock(&OldIrql);
|
|||
|
|
|||
|
ASSERT(Extension->TotalCharsQueued >= 1);
|
|||
|
Extension->TotalCharsQueued--;
|
|||
|
|
|||
|
*CurrentOpIrp = NULL;
|
|||
|
*NewIrp = NULL;
|
|||
|
KeSynchronizeExecution(
|
|||
|
Extension->Interrupt,
|
|||
|
SerialProcessEmptyTransmit,
|
|||
|
Extension
|
|||
|
);
|
|||
|
IoReleaseCancelSpinLock(OldIrql);
|
|||
|
|
|||
|
SerialDump(
|
|||
|
SERIRPPATH,
|
|||
|
("SERIAL: Complete Irp: %x\n",OldIrp)
|
|||
|
);
|
|||
|
|
|||
|
SerialCompleteRequest(Extension, OldIrp, IO_SERIAL_INCREMENT);
|
|||
|
}
|
|||
|
|
|||
|
VOID
|
|||
|
SerialCancelImmediate(
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
IN PIRP Irp
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
This routine is used to cancel a irp that is waiting on
|
|||
|
a comm event.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
DeviceObject - Pointer to the device object for this device
|
|||
|
|
|||
|
Irp - Pointer to the IRP for the current request
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
None.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
PSERIAL_DEVICE_EXTENSION Extension = DeviceObject->DeviceExtension;
|
|||
|
SERIAL_LOCKED_PAGED_CODE();
|
|||
|
|
|||
|
SerialTryToCompleteCurrent(
|
|||
|
Extension,
|
|||
|
SerialGrabImmediateFromIsr,
|
|||
|
Irp->CancelIrql,
|
|||
|
STATUS_CANCELLED,
|
|||
|
&Extension->CurrentImmediateIrp,
|
|||
|
NULL,
|
|||
|
NULL,
|
|||
|
&Extension->ImmediateTotalTimer,
|
|||
|
NULL,
|
|||
|
SerialGetNextImmediate,
|
|||
|
SERIAL_REF_CANCEL
|
|||
|
);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
BOOLEAN
|
|||
|
SerialGiveImmediateToIsr(
|
|||
|
IN PVOID Context
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
Try to start off the write by slipping it in behind
|
|||
|
a transmit immediate char, or if that isn't available
|
|||
|
and the transmit holding register is empty, "tickle"
|
|||
|
the UART into interrupting with a transmit buffer
|
|||
|
empty.
|
|||
|
|
|||
|
NOTE: This routine is called by KeSynchronizeExecution.
|
|||
|
|
|||
|
NOTE: This routine assumes that it is called with the
|
|||
|
cancel spin lock held.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Context - Really a pointer to the device extension.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
This routine always returns FALSE.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
PSERIAL_DEVICE_EXTENSION Extension = Context;
|
|||
|
SERIAL_LOCKED_PAGED_CODE();
|
|||
|
|
|||
|
Extension->TransmitImmediate = TRUE;
|
|||
|
Extension->ImmediateChar =
|
|||
|
*((UCHAR *)
|
|||
|
(Extension->CurrentImmediateIrp->AssociatedIrp.SystemBuffer));
|
|||
|
|
|||
|
//
|
|||
|
// The isr now has a reference to the irp.
|
|||
|
//
|
|||
|
|
|||
|
SERIAL_SET_REFERENCE(
|
|||
|
Extension->CurrentImmediateIrp,
|
|||
|
SERIAL_REF_ISR
|
|||
|
);
|
|||
|
|
|||
|
//
|
|||
|
// Check first to see if a write is going on. If
|
|||
|
// there is then we'll just slip in during the write.
|
|||
|
//
|
|||
|
|
|||
|
if (!Extension->WriteLength) {
|
|||
|
|
|||
|
//
|
|||
|
// If there is no normal write transmitting then we
|
|||
|
// will "re-enable" the transmit holding register empty
|
|||
|
// interrupt. The 8250 family of devices will always
|
|||
|
// signal a transmit holding register empty interrupt
|
|||
|
// *ANY* time this bit is set to one. By doing things
|
|||
|
// this way we can simply use the normal interrupt code
|
|||
|
// to start off this write.
|
|||
|
//
|
|||
|
// We've been keeping track of whether the transmit holding
|
|||
|
// register is empty so it we only need to do this
|
|||
|
// if the register is empty.
|
|||
|
//
|
|||
|
|
|||
|
if (Extension->HoldingEmpty) {
|
|||
|
|
|||
|
DISABLE_ALL_INTERRUPTS(Extension->Controller);
|
|||
|
ENABLE_ALL_INTERRUPTS(Extension->Controller);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
return FALSE;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
BOOLEAN
|
|||
|
SerialGrabImmediateFromIsr(
|
|||
|
IN PVOID Context
|
|||
|
)
|
|||
|
|
|||
|
/*++
|
|||
|
|
|||
|
Routine Description:
|
|||
|
|
|||
|
|
|||
|
This routine is used to grab the current irp, which could be timing
|
|||
|
out or canceling, from the ISR
|
|||
|
|
|||
|
NOTE: This routine is being called from KeSynchronizeExecution.
|
|||
|
|
|||
|
NOTE: This routine assumes that the cancel spin lock is held
|
|||
|
when this routine is called.
|
|||
|
|
|||
|
Arguments:
|
|||
|
|
|||
|
Context - Really a pointer to the device extension.
|
|||
|
|
|||
|
Return Value:
|
|||
|
|
|||
|
Always false.
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
{
|
|||
|
|
|||
|
PSERIAL_DEVICE_EXTENSION Extension = Context;
|
|||
|
SERIAL_LOCKED_PAGED_CODE();
|
|||
|
|
|||
|
if (Extension->TransmitImmediate) {
|
|||
|
|
|||
|
Extension->TransmitImmediate = FALSE;
|
|||
|
|
|||
|
//
|
|||
|
// Since the isr no longer references this irp, we can
|
|||
|
// decrement it's reference count.
|
|||
|
//
|
|||
|
|
|||
|
SERIAL_CLEAR_REFERENCE(
|
|||
|
Extension->CurrentImmediateIrp,
|
|||
|
SERIAL_REF_ISR
|
|||
|
);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
return FALSE;
|
|||
|
|
|||
|
}
|