aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi/aclocal.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/acpi/aclocal.h')
-rw-r--r--include/acpi/aclocal.h55
1 files changed, 29 insertions, 26 deletions
diff --git a/include/acpi/aclocal.h b/include/acpi/aclocal.h
index 98c697e3c486..1eeca7adca95 100644
--- a/include/acpi/aclocal.h
+++ b/include/acpi/aclocal.h
@@ -72,52 +72,55 @@ union acpi_parse_object;
72 * Predefined handles for the mutex objects used within the subsystem 72 * Predefined handles for the mutex objects used within the subsystem
73 * All mutex objects are automatically created by acpi_ut_mutex_initialize. 73 * All mutex objects are automatically created by acpi_ut_mutex_initialize.
74 * 74 *
75 * The acquire/release ordering protocol is implied via this list. Mutexes 75 * The acquire/release ordering protocol is implied via this list. Mutexes
76 * with a lower value must be acquired before mutexes with a higher value. 76 * with a lower value must be acquired before mutexes with a higher value.
77 * 77 *
78 * NOTE: any changes here must be reflected in the acpi_gbl_mutex_names table also! 78 * NOTE: any changes here must be reflected in the acpi_gbl_mutex_names
79 * table below also!
79 */ 80 */
80#define ACPI_MTX_EXECUTE 0 81#define ACPI_MTX_INTERPRETER 0 /* AML Interpreter, main lock */
81#define ACPI_MTX_INTERPRETER 1 82#define ACPI_MTX_CONTROL_METHOD 1 /* Control method termination [TBD: may no longer be necessary] */
82#define ACPI_MTX_PARSER 2 83#define ACPI_MTX_TABLES 2 /* Data for ACPI tables */
83#define ACPI_MTX_DISPATCHER 3 84#define ACPI_MTX_NAMESPACE 3 /* ACPI Namespace */
84#define ACPI_MTX_TABLES 4 85#define ACPI_MTX_EVENTS 4 /* Data for ACPI events */
85#define ACPI_MTX_OP_REGIONS 5 86#define ACPI_MTX_CACHES 5 /* Internal caches, general purposes */
86#define ACPI_MTX_NAMESPACE 6 87#define ACPI_MTX_MEMORY 6 /* Debug memory tracking lists */
87#define ACPI_MTX_EVENTS 7 88#define ACPI_MTX_DEBUG_CMD_COMPLETE 7 /* AML debugger */
88#define ACPI_MTX_HARDWARE 8 89#define ACPI_MTX_DEBUG_CMD_READY 8 /* AML debugger */
89#define ACPI_MTX_CACHES 9 90
90#define ACPI_MTX_MEMORY 10 91#define ACPI_MAX_MUTEX 8
91#define ACPI_MTX_DEBUG_CMD_COMPLETE 11 92#define ACPI_NUM_MUTEX ACPI_MAX_MUTEX+1
92#define ACPI_MTX_DEBUG_CMD_READY 12
93
94#define MAX_MUTEX 12
95#define NUM_MUTEX MAX_MUTEX+1
96 93
97#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER) 94#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
98#ifdef DEFINE_ACPI_GLOBALS 95#ifdef DEFINE_ACPI_GLOBALS
99 96
100/* Names for the mutexes used in the subsystem */ 97/* Debug names for the mutexes above */
101 98
102static char *acpi_gbl_mutex_names[] = { 99static char *acpi_gbl_mutex_names[ACPI_NUM_MUTEX] = {
103 "ACPI_MTX_Execute",
104 "ACPI_MTX_Interpreter", 100 "ACPI_MTX_Interpreter",
105 "ACPI_MTX_Parser", 101 "ACPI_MTX_Method",
106 "ACPI_MTX_Dispatcher",
107 "ACPI_MTX_Tables", 102 "ACPI_MTX_Tables",
108 "ACPI_MTX_OpRegions",
109 "ACPI_MTX_Namespace", 103 "ACPI_MTX_Namespace",
110 "ACPI_MTX_Events", 104 "ACPI_MTX_Events",
111 "ACPI_MTX_Hardware",
112 "ACPI_MTX_Caches", 105 "ACPI_MTX_Caches",
113 "ACPI_MTX_Memory", 106 "ACPI_MTX_Memory",
114 "ACPI_MTX_DebugCmdComplete", 107 "ACPI_MTX_DebugCmdComplete",
115 "ACPI_MTX_DebugCmdReady", 108 "ACPI_MTX_DebugCmdReady"
116}; 109};
117 110
118#endif 111#endif
119#endif 112#endif
120 113
114/*
115 * Predefined handles for spinlocks used within the subsystem.
116 * These spinlocks are created by acpi_ut_mutex_initialize
117 */
118#define ACPI_LOCK_GPES 0
119#define ACPI_LOCK_HARDWARE 1
120
121#define ACPI_MAX_LOCK 1
122#define ACPI_NUM_LOCK ACPI_MAX_LOCK+1
123
121/* Owner IDs are used to track namespace nodes for selective deletion */ 124/* Owner IDs are used to track namespace nodes for selective deletion */
122 125
123typedef u8 acpi_owner_id; 126typedef u8 acpi_owner_id;