mirror of
https://github.com/acpica/acpica/
synced 2025-02-16 05:24:36 +03:00
Integrated new hardware bit access function (new name)
date 2000.11.02.22.20.00; author rmoore1; state Exp;
This commit is contained in:
parent
3d152400da
commit
f885df8aad
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Name: achware.h -- hardware specific interfaces
|
||||
* $Revision: 1.43 $
|
||||
* $Revision: 1.45 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -147,11 +147,37 @@ AcpiHwGetModeCapabilities (
|
||||
|
||||
/* Register I/O Prototypes */
|
||||
|
||||
|
||||
UINT32
|
||||
AcpiHwRegisterAccess (
|
||||
AcpiHwRegisterBitAccess (
|
||||
NATIVE_UINT ReadWrite,
|
||||
BOOLEAN UseLock,
|
||||
UINT32 RegisterId, ... /* DWORD Value */);
|
||||
UINT32 RegisterId,
|
||||
... /* DWORD Write Value */);
|
||||
|
||||
UINT32
|
||||
AcpiHwRegisterRead (
|
||||
BOOLEAN UseLock,
|
||||
UINT32 RegisterId);
|
||||
|
||||
void
|
||||
AcpiHwRegisterWrite (
|
||||
BOOLEAN UseLock,
|
||||
UINT32 RegisterId,
|
||||
UINT32 Value);
|
||||
|
||||
UINT32
|
||||
AcpiHwLowLevelRead (
|
||||
UINT32 Width,
|
||||
ACPI_GAS *Register,
|
||||
UINT32 Offset);
|
||||
|
||||
void
|
||||
AcpiHwLowLevelWrite (
|
||||
UINT32 Width,
|
||||
UINT32 Value,
|
||||
ACPI_GAS *Register,
|
||||
UINT32 Offset);
|
||||
|
||||
void
|
||||
AcpiHwClearAcpiStatus (
|
||||
|
Loading…
x
Reference in New Issue
Block a user