aclocal.h (a57f7f9175b8ccbc9df83ac13860488913115de4) aclocal.h (be030a576854238250d70135644cde6a0ba34b0d)
1/******************************************************************************
2 *
3 * Name: aclocal.h - Internal data types used across the ACPI subsystem
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

--- 693 unchanged lines hidden (view full) ---

702 struct acpi_namespace_node *node; /* For use by interpreter */\
703 union acpi_parse_value value; /* Value or args associated with the opcode */\
704 u8 arg_list_length; /* Number of elements in the arg list */\
705 ACPI_DISASM_ONLY_MEMBERS (\
706 u8 disasm_flags; /* Used during AML disassembly */\
707 u8 disasm_opcode; /* Subtype used for disassembly */\
708 char aml_op_name[16]) /* Op name (debug only) */
709
1/******************************************************************************
2 *
3 * Name: aclocal.h - Internal data types used across the ACPI subsystem
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

--- 693 unchanged lines hidden (view full) ---

702 struct acpi_namespace_node *node; /* For use by interpreter */\
703 union acpi_parse_value value; /* Value or args associated with the opcode */\
704 u8 arg_list_length; /* Number of elements in the arg list */\
705 ACPI_DISASM_ONLY_MEMBERS (\
706 u8 disasm_flags; /* Used during AML disassembly */\
707 u8 disasm_opcode; /* Subtype used for disassembly */\
708 char aml_op_name[16]) /* Op name (debug only) */
709
710#define ACPI_DASM_BUFFER 0x00
711#define ACPI_DASM_RESOURCE 0x01
712#define ACPI_DASM_STRING 0x02
713#define ACPI_DASM_UNICODE 0x03
714#define ACPI_DASM_EISAID 0x04
715#define ACPI_DASM_MATCHOP 0x05
716#define ACPI_DASM_LNOT_PREFIX 0x06
717#define ACPI_DASM_LNOT_SUFFIX 0x07
718#define ACPI_DASM_IGNORE 0x08
710/* Flags for disasm_flags field above */
719
711
712#define ACPI_DASM_BUFFER 0x00 /* Buffer is a simple data buffer */
713#define ACPI_DASM_RESOURCE 0x01 /* Buffer is a Resource Descriptor */
714#define ACPI_DASM_STRING 0x02 /* Buffer is a ASCII string */
715#define ACPI_DASM_UNICODE 0x03 /* Buffer is a Unicode string */
716#define ACPI_DASM_PLD_METHOD 0x04 /* Buffer is a _PLD method bit-packed buffer */
717#define ACPI_DASM_EISAID 0x05 /* Integer is an EISAID */
718#define ACPI_DASM_MATCHOP 0x06 /* Parent opcode is a Match() operator */
719#define ACPI_DASM_LNOT_PREFIX 0x07 /* Start of a Lnot_equal (etc.) pair of opcodes */
720#define ACPI_DASM_LNOT_SUFFIX 0x08 /* End of a Lnot_equal (etc.) pair of opcodes */
721#define ACPI_DASM_IGNORE 0x09 /* Not used at this time */
722
720/*
721 * Generic operation (for example: If, While, Store)
722 */
723struct acpi_parse_obj_common {
724ACPI_PARSE_COMMON};
725
726/*
727 * Extended Op for named ops (Scope, Method, etc.), deferred ops (Methods and op_regions),

--- 292 unchanged lines hidden (view full) ---

1020
1021/*****************************************************************************
1022 *
1023 * Debugger
1024 *
1025 ****************************************************************************/
1026
1027struct acpi_db_method_info {
723/*
724 * Generic operation (for example: If, While, Store)
725 */
726struct acpi_parse_obj_common {
727ACPI_PARSE_COMMON};
728
729/*
730 * Extended Op for named ops (Scope, Method, etc.), deferred ops (Methods and op_regions),

--- 292 unchanged lines hidden (view full) ---

1023
1024/*****************************************************************************
1025 *
1026 * Debugger
1027 *
1028 ****************************************************************************/
1029
1030struct acpi_db_method_info {
1031 acpi_handle method;
1028 acpi_handle main_thread_gate;
1029 acpi_handle thread_complete_gate;
1030 acpi_thread_id *threads;
1031 u32 num_threads;
1032 u32 num_created;
1033 u32 num_completed;
1034
1035 char *name;

--- 75 unchanged lines hidden ---
1032 acpi_handle main_thread_gate;
1033 acpi_handle thread_complete_gate;
1034 acpi_thread_id *threads;
1035 u32 num_threads;
1036 u32 num_created;
1037 u32 num_completed;
1038
1039 char *name;

--- 75 unchanged lines hidden ---