aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/dev/acpica/aclocal.h
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>2001-06-29 20:11:04 +0000
committerMike Smith <msmith@FreeBSD.org>2001-06-29 20:11:04 +0000
commitae027f12376b398a33a332b50efacb04eacb0573 (patch)
treeeb0951587d9fcfbf93840f893231df2c430d62c1 /sys/contrib/dev/acpica/aclocal.h
parent0065eb1222e3ccb5cbb7c512ccb611a0e3ed7b54 (diff)
downloadsrc-ae027f12376b398a33a332b50efacb04eacb0573.tar.gz
src-ae027f12376b398a33a332b50efacb04eacb0573.zip
Vendor import of the Intel ACPI CA 20010615 snapshot.
Notes
Notes: svn path=/vendor-sys/acpica/dist/; revision=78986
Diffstat (limited to 'sys/contrib/dev/acpica/aclocal.h')
-rw-r--r--sys/contrib/dev/acpica/aclocal.h29
1 files changed, 28 insertions, 1 deletions
diff --git a/sys/contrib/dev/acpica/aclocal.h b/sys/contrib/dev/acpica/aclocal.h
index 86e28bca0aef..558ffa6f682b 100644
--- a/sys/contrib/dev/acpica/aclocal.h
+++ b/sys/contrib/dev/acpica/aclocal.h
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: aclocal.h - Internal data types used across the ACPI subsystem
- * $Revision: 121 $
+ * $Revision: 123 $
*
*****************************************************************************/
@@ -124,6 +124,11 @@ typedef void* ACPI_MUTEX;
typedef UINT32 ACPI_MUTEX_HANDLE;
+
+#define ACPI_MEMORY_MODE 0x01
+#define ACPI_LOGICAL_ADDRESSING 0x00
+#define ACPI_PHYSICAL_ADDRESSING 0x01
+
/* Object descriptor types */
#define ACPI_CACHED_OBJECT 0x11 /* ORed in when object is cached */
@@ -290,6 +295,8 @@ typedef struct acpi_node
#define ANOBJ_METHOD_NO_RETVAL 0x20
#define ANOBJ_METHOD_SOME_NO_RETVAL 0x40
+#define ANOBJ_IS_BIT_OFFSET 0x80
+
/*
* ACPI Table Descriptor. One per ACPI table
@@ -921,6 +928,26 @@ typedef struct
} ACPI_DEVICE_ID;
+
+/*****************************************************************************
+ *
+ * Debugger
+ *
+ ****************************************************************************/
+
+typedef struct dbmethodinfo
+{
+ ACPI_HANDLE ThreadGate;
+ NATIVE_CHAR *Name;
+ NATIVE_CHAR **Args;
+ UINT32 Flags;
+ UINT32 NumLoops;
+ NATIVE_CHAR Pathname[128];
+
+} DB_METHOD_INFO;
+
+
+
/*****************************************************************************
*
* Debug