/*++ Copyright (c) Microsoft Corporation. All rights reserved. Module Name: oprghdlr.h Abstract: This header file contains the shared structures for the ACPI op region registration DLL. Author: Vincent Geglia 09-Feb-2000 Environment: Kernel mode Notes: Revision History: --*/ #include "wdm.h" // // Make sure that we define the right calling convention // #ifdef EXPORT #undef EXPORT #endif #define EXPORT __cdecl // // Op region handler and callback function prototypes // _Function_class_(ACPI_OP_REGION_CALLBACK) _IRQL_requires_same_ _IRQL_requires_max_(PASSIVE_LEVEL) typedef VOID EXPORT ACPI_OP_REGION_CALLBACK ( PVOID Context ); typedef ACPI_OP_REGION_CALLBACK *PACPI_OP_REGION_CALLBACK; _Function_class_(ACPI_OP_REGION_HANDLER) _IRQL_requires_same_ _IRQL_requires_max_(PASSIVE_LEVEL) _Must_inspect_result_ typedef NTSTATUS EXPORT ACPI_OP_REGION_HANDLER ( ULONG AccessType, PVOID OperationRegionObject, ULONG Address, ULONG Size, PULONG Data, ULONG_PTR Context, PACPI_OP_REGION_CALLBACK CompletionHandler, PVOID CompletionContext ); typedef ACPI_OP_REGION_HANDLER *PACPI_OP_REGION_HANDLER; // // Exposed function prototypes // _IRQL_requires_max_(PASSIVE_LEVEL) _Must_inspect_result_ NTSTATUS RegisterOpRegionHandler ( _In_ PDEVICE_OBJECT DeviceObject, _In_ ULONG AccessType, _In_ ULONG RegionSpace, _In_ PACPI_OP_REGION_HANDLER Handler, _In_ PVOID Context, _In_ ULONG Flags, _Out_ PVOID *OperationRegionObject ); _IRQL_requires_max_(PASSIVE_LEVEL) _Must_inspect_result_ NTSTATUS DeRegisterOpRegionHandler ( _In_ PDEVICE_OBJECT DeviceObject, _In_ PVOID OperationRegionObject ); // // Exposed definitions // // // Access types for OpRegions // #define ACPI_OPREGION_ACCESS_AS_RAW 0x1 #define ACPI_OPREGION_ACCESS_AS_COOKED 0x2 // // Allowable region spaces // #define ACPI_OPREGION_REGION_SPACE_MEMORY 0x0 #define ACPI_OPREGION_REGION_SPACE_IO 0x1 #define ACPI_OPREGION_REGION_SPACE_PCI_CONFIG 0x2 #define ACPI_OPREGION_REGION_SPACE_EC 0x3 #define ACPI_OPREGION_REGION_SPACE_SMB 0x4 #define ACPI_OPREGION_REGION_SPACE_CMOS_CONFIG 0x5 #define ACPI_OPREGION_REGION_SPACE_PCIBARTARGET 0x6 // // Operation to perform on region // #define ACPI_OPREGION_READ 0x0 #define ACPI_OPREGION_WRITE 0x1 // // Flag definitions for op region registration // #define ACPI_OPREGION_ACCESS_AT_HIGH_LEVEL 0x1 // Indicates the handler function can be called at HIGH_LEVEL IRQL