hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
kernel/include/acpi/acoutput.h
....@@ -3,7 +3,7 @@
33 *
44 * Name: acoutput.h -- debug output
55 *
6
- * Copyright (C) 2000 - 2018, Intel Corp.
6
+ * Copyright (C) 2000 - 2020, Intel Corp.
77 *
88 *****************************************************************************/
99
....@@ -73,7 +73,8 @@
7373 #define ACPI_LV_RESOURCES 0x00010000
7474 #define ACPI_LV_USER_REQUESTS 0x00020000
7575 #define ACPI_LV_PACKAGE 0x00040000
76
-#define ACPI_LV_VERBOSITY1 0x0007FF40 | ACPI_LV_ALL_EXCEPTIONS
76
+#define ACPI_LV_EVALUATION 0x00080000
77
+#define ACPI_LV_VERBOSITY1 0x000FFF40 | ACPI_LV_ALL_EXCEPTIONS
7778
7879 /* Trace verbosity level 2 [Function tracing and memory allocation] */
7980
....@@ -141,6 +142,7 @@
141142 #define ACPI_DB_INTERRUPTS ACPI_DEBUG_LEVEL (ACPI_LV_INTERRUPTS)
142143 #define ACPI_DB_USER_REQUESTS ACPI_DEBUG_LEVEL (ACPI_LV_USER_REQUESTS)
143144 #define ACPI_DB_PACKAGE ACPI_DEBUG_LEVEL (ACPI_LV_PACKAGE)
145
+#define ACPI_DB_EVALUATION ACPI_DEBUG_LEVEL (ACPI_LV_EVALUATION)
144146 #define ACPI_DB_MUTEX ACPI_DEBUG_LEVEL (ACPI_LV_MUTEX)
145147 #define ACPI_DB_EVENTS ACPI_DEBUG_LEVEL (ACPI_LV_EVENTS)
146148
....@@ -148,7 +150,10 @@
148150
149151 /* Defaults for debug_level, debug and normal */
150152
151
-#define ACPI_DEBUG_DEFAULT (ACPI_LV_INFO | ACPI_LV_REPAIR)
153
+#ifndef ACPI_DEBUG_DEFAULT
154
+#define ACPI_DEBUG_DEFAULT (ACPI_LV_INIT | ACPI_LV_DEBUG_OBJECT | ACPI_LV_EVALUATION | ACPI_LV_REPAIR)
155
+#endif
156
+
152157 #define ACPI_NORMAL_DEFAULT (ACPI_LV_INIT | ACPI_LV_DEBUG_OBJECT | ACPI_LV_REPAIR)
153158 #define ACPI_DEBUG_ALL (ACPI_LV_AML_DISASSEMBLE | ACPI_LV_ALL_EXCEPTIONS | ACPI_LV_ALL)
154159
....@@ -199,6 +204,7 @@
199204 #define ACPI_EXCEPTION(plist) acpi_exception plist
200205 #define ACPI_ERROR(plist) acpi_error plist
201206 #define ACPI_BIOS_WARNING(plist) acpi_bios_warning plist
207
+#define ACPI_BIOS_EXCEPTION(plist) acpi_bios_exception plist
202208 #define ACPI_BIOS_ERROR(plist) acpi_bios_error plist
203209 #define ACPI_DEBUG_OBJECT(obj,l,i) acpi_ex_do_debug_object(obj,l,i)
204210
....@@ -211,6 +217,7 @@
211217 #define ACPI_EXCEPTION(plist)
212218 #define ACPI_ERROR(plist)
213219 #define ACPI_BIOS_WARNING(plist)
220
+#define ACPI_BIOS_EXCEPTION(plist)
214221 #define ACPI_BIOS_ERROR(plist)
215222 #define ACPI_DEBUG_OBJECT(obj,l,i)
216223