windows-nt/Source/XPSP1/NT/drivers/storage/scsiport/control.c
2020-09-26 16:20:57 +08:00

147 lines
3.6 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (C) Microsoft Corporation, 1996 - 1999
Module Name:
control.c
Abstract:
This module contains support routines for the port driver to access
the miniport's HwAdapterControl functionality.
Authors:
Peter Wieland
Environment:
Kernel mode only
Notes:
Revision History:
--*/
#include "port.h"
#ifdef ALLOC_PRAGMA
#pragma alloc_text(PAGE, SpGetSupportedAdapterControlFunctions)
#endif
VOID
SpGetSupportedAdapterControlFunctions(
PADAPTER_EXTENSION Adapter
)
/*++
Routine Description:
This routine will query the miniport to determine which adapter control
types are supported for the specified adapter. The
SupportedAdapterControlBitmap in the adapter extension will be updated with
the data returned by the miniport. These flags are used to determine
what functionality (for power management and such) the miniport will support
Arguments:
Adapter - the adapter to query
Return Value:
none
--*/
{
UCHAR buffer[sizeof(SCSI_SUPPORTED_CONTROL_TYPE_LIST) +
(sizeof(BOOLEAN) * (ScsiAdapterControlMax + 1))];
PSCSI_SUPPORTED_CONTROL_TYPE_LIST typeList =
(PSCSI_SUPPORTED_CONTROL_TYPE_LIST) &buffer;
SCSI_ADAPTER_CONTROL_STATUS status;
PAGED_CODE();
RtlInitializeBitMap(&(Adapter->SupportedControlBitMap),
Adapter->SupportedControlBits,
ScsiAdapterControlMax);
RtlClearAllBits(&(Adapter->SupportedControlBitMap));
if((Adapter->HwAdapterControl == NULL) ||
(Adapter->IsPnp == FALSE)) {
//
// Adapter control is not supported by the miniport or the miniport
// isn't pnp (in which case it's not supported by scsiport) - the
// supported array has already been cleared so we can just quit now.
//
return;
}
RtlZeroMemory(typeList, (sizeof(SCSI_SUPPORTED_CONTROL_TYPE_LIST) +
sizeof(BOOLEAN) * (ScsiAdapterControlMax + 1)));
typeList->MaxControlType = ScsiAdapterControlMax;
#if DBG
typeList->SupportedTypeList[ScsiAdapterControlMax] = 0x63;
#endif
status = Adapter->HwAdapterControl(Adapter->HwDeviceExtension,
ScsiQuerySupportedControlTypes,
typeList);
// ASSERT(status != ScsiAdapterControlNotSupported);
if(status == ScsiAdapterControlSuccess) {
ULONG i;
ASSERT(typeList->SupportedTypeList[ScsiAdapterControlMax] == 0x63);
for(i = 0; i < ScsiAdapterControlMax; i++) {
if(typeList->SupportedTypeList[i] == TRUE) {
RtlSetBits(&(Adapter->SupportedControlBitMap),
i,
1);
}
}
}
return;
}
BOOLEAN
SpIsAdapterControlTypeSupported(
IN PADAPTER_EXTENSION AdapterExtension,
IN SCSI_ADAPTER_CONTROL_TYPE ControlType
)
{
return RtlAreBitsSet(&(AdapterExtension->SupportedControlBitMap),
ControlType,
1);
}
SCSI_ADAPTER_CONTROL_STATUS
SpCallAdapterControl(
IN PADAPTER_EXTENSION AdapterExtension,
IN SCSI_ADAPTER_CONTROL_TYPE ControlType,
IN PVOID Parameters
)
{
ASSERT(TEST_FLAG(AdapterExtension->InterruptData.InterruptFlags,
PD_ADAPTER_REMOVED) == FALSE);
ASSERT(SpIsAdapterControlTypeSupported(AdapterExtension, ControlType));
return AdapterExtension->HwAdapterControl(
AdapterExtension->HwDeviceExtension,
ControlType,
Parameters);
}