mirror of
https://github.com/acpica/acpica/
synced 2025-01-15 22:09:17 +03:00
Completed major overhaul and restructuring of table manager code.
date 2002.06.20.22.05.00; author rmoore1; state Exp;
This commit is contained in:
parent
1fbc320c8b
commit
72906a7c5d
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Name: actypes.h - Common data types for the entire ACPI subsystem
|
||||
* $Revision: 1.237 $
|
||||
* $Revision: 1.238 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -300,8 +300,18 @@ typedef struct AcpiPointer
|
||||
|
||||
/* PointerTypes for above */
|
||||
|
||||
#define ACPI_LOGICAL_POINTER 0x01
|
||||
#define ACPI_PHYSICAL_POINTER 0x02
|
||||
#define ACPI_PHYSICAL_POINTER 0x01
|
||||
#define ACPI_LOGICAL_POINTER 0x02
|
||||
|
||||
/* Processor mode */
|
||||
|
||||
#define ACPI_PHYSICAL_ADDRESSING 0x04
|
||||
#define ACPI_LOGICAL_ADDRESSING 0x08
|
||||
#define ACPI_MEMORY_MODE 0x0C
|
||||
|
||||
#define ACPI_PHYSMODE_PHYSPTR ACPI_PHYSICAL_ADDRESSING | ACPI_PHYSICAL_POINTER
|
||||
#define ACPI_LOGMODE_PHYSPTR ACPI_LOGICAL_ADDRESSING | ACPI_PHYSICAL_POINTER
|
||||
#define ACPI_LOGMODE_LOGPTR ACPI_LOGICAL_ADDRESSING | ACPI_LOGICAL_POINTER
|
||||
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user