summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/amlcode.h
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2004-03-18 17:42:14 +0000
committernjl <njl@FreeBSD.org>2004-03-18 17:42:14 +0000
commit61c302fc074304c548f2de409a49f0c6c9564470 (patch)
treec3d67f348307b618a7d26de7d74397f4eb6d7a53 /sys/contrib/dev/acpica/amlcode.h
parentd4d5fa01f81a58ab630067ec21e8a10390ff6c28 (diff)
downloadFreeBSD-src-61c302fc074304c548f2de409a49f0c6c9564470.zip
FreeBSD-src-61c302fc074304c548f2de409a49f0c6c9564470.tar.gz
Import of Intel ACPI-CA 20040311.
Diffstat (limited to 'sys/contrib/dev/acpica/amlcode.h')
-rw-r--r--sys/contrib/dev/acpica/amlcode.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/sys/contrib/dev/acpica/amlcode.h b/sys/contrib/dev/acpica/amlcode.h
index bb1b6e0..dd1f603 100644
--- a/sys/contrib/dev/acpica/amlcode.h
+++ b/sys/contrib/dev/acpica/amlcode.h
@@ -3,7 +3,7 @@
* Name: amlcode.h - Definitions for AML, as included in "definition blocks"
* Declarations and definitions contained herein are derived
* directly from the ACPI specification.
- * $Revision: 74 $
+ * $Revision: 75 $
*
*****************************************************************************/
@@ -569,11 +569,17 @@ typedef enum
} AML_ACCESS_ATTRIBUTE;
-/* bit fields in MethodFlags byte */
+/* Bit fields in MethodFlags byte */
-#define METHOD_FLAGS_ARG_COUNT 0x07
-#define METHOD_FLAGS_SERIALIZED 0x08
-#define METHOD_FLAGS_SYNCH_LEVEL 0xF0
+#define AML_METHOD_ARG_COUNT 0x07
+#define AML_METHOD_SERIALIZED 0x08
+#define AML_METHOD_SYNCH_LEVEL 0xF0
+
+/* METHOD_FLAGS_ARG_COUNT is not used internally, define additional flags */
+
+#define AML_METHOD_INTERNAL_ONLY 0x01
+#define AML_METHOD_RESERVED1 0x02
+#define AML_METHOD_RESERVED2 0x04
#endif /* __AMLCODE_H__ */
OpenPOWER on IntegriCloud