.. | .. |
---|
3 | 3 | * |
---|
4 | 4 | * Name: acoutput.h -- debug output |
---|
5 | 5 | * |
---|
6 | | - * Copyright (C) 2000 - 2018, Intel Corp. |
---|
| 6 | + * Copyright (C) 2000 - 2020, Intel Corp. |
---|
7 | 7 | * |
---|
8 | 8 | *****************************************************************************/ |
---|
9 | 9 | |
---|
.. | .. |
---|
73 | 73 | #define ACPI_LV_RESOURCES 0x00010000 |
---|
74 | 74 | #define ACPI_LV_USER_REQUESTS 0x00020000 |
---|
75 | 75 | #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 |
---|
77 | 78 | |
---|
78 | 79 | /* Trace verbosity level 2 [Function tracing and memory allocation] */ |
---|
79 | 80 | |
---|
.. | .. |
---|
141 | 142 | #define ACPI_DB_INTERRUPTS ACPI_DEBUG_LEVEL (ACPI_LV_INTERRUPTS) |
---|
142 | 143 | #define ACPI_DB_USER_REQUESTS ACPI_DEBUG_LEVEL (ACPI_LV_USER_REQUESTS) |
---|
143 | 144 | #define ACPI_DB_PACKAGE ACPI_DEBUG_LEVEL (ACPI_LV_PACKAGE) |
---|
| 145 | +#define ACPI_DB_EVALUATION ACPI_DEBUG_LEVEL (ACPI_LV_EVALUATION) |
---|
144 | 146 | #define ACPI_DB_MUTEX ACPI_DEBUG_LEVEL (ACPI_LV_MUTEX) |
---|
145 | 147 | #define ACPI_DB_EVENTS ACPI_DEBUG_LEVEL (ACPI_LV_EVENTS) |
---|
146 | 148 | |
---|
.. | .. |
---|
148 | 150 | |
---|
149 | 151 | /* Defaults for debug_level, debug and normal */ |
---|
150 | 152 | |
---|
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 | + |
---|
152 | 157 | #define ACPI_NORMAL_DEFAULT (ACPI_LV_INIT | ACPI_LV_DEBUG_OBJECT | ACPI_LV_REPAIR) |
---|
153 | 158 | #define ACPI_DEBUG_ALL (ACPI_LV_AML_DISASSEMBLE | ACPI_LV_ALL_EXCEPTIONS | ACPI_LV_ALL) |
---|
154 | 159 | |
---|
.. | .. |
---|
199 | 204 | #define ACPI_EXCEPTION(plist) acpi_exception plist |
---|
200 | 205 | #define ACPI_ERROR(plist) acpi_error plist |
---|
201 | 206 | #define ACPI_BIOS_WARNING(plist) acpi_bios_warning plist |
---|
| 207 | +#define ACPI_BIOS_EXCEPTION(plist) acpi_bios_exception plist |
---|
202 | 208 | #define ACPI_BIOS_ERROR(plist) acpi_bios_error plist |
---|
203 | 209 | #define ACPI_DEBUG_OBJECT(obj,l,i) acpi_ex_do_debug_object(obj,l,i) |
---|
204 | 210 | |
---|
.. | .. |
---|
211 | 217 | #define ACPI_EXCEPTION(plist) |
---|
212 | 218 | #define ACPI_ERROR(plist) |
---|
213 | 219 | #define ACPI_BIOS_WARNING(plist) |
---|
| 220 | +#define ACPI_BIOS_EXCEPTION(plist) |
---|
214 | 221 | #define ACPI_BIOS_ERROR(plist) |
---|
215 | 222 | #define ACPI_DEBUG_OBJECT(obj,l,i) |
---|
216 | 223 | |
---|