aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/acpi/method-tracing.txt
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2007-11-14 19:53:21 -0500
committerLen Brown <len.brown@intel.com>2007-11-19 12:25:56 -0500
commitb4d2730a0dda91a43c81a02f5225f5d536cabb09 (patch)
treede9f29b56bfb0545b00a62c22c4800b770da84c0 /Documentation/acpi/method-tracing.txt
parent4169c45f179e285feac6bcf25f4bd0db6b109bab (diff)
ACPI: document method tracing hooks
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'Documentation/acpi/method-tracing.txt')
-rw-r--r--Documentation/acpi/method-tracing.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/Documentation/acpi/method-tracing.txt b/Documentation/acpi/method-tracing.txt
new file mode 100644
index 000000000000..f6efb1ea559a
--- /dev/null
+++ b/Documentation/acpi/method-tracing.txt
@@ -0,0 +1,26 @@
1/sys/module/acpi/parameters/:
2
3trace_method_name
4 The AML method name that the user wants to trace
5
6trace_debug_layer
7 The temporary debug_layer used when tracing the method.
8 Using 0xffffffff by default if it is 0.
9
10trace_debug_level
11 The temporary debug_level used when tracing the method.
12 Using 0x00ffffff by default if it is 0.
13
14trace_state
15 The status of the tracing feature.
16
17 "enabled" means this feature is enabled
18 and the AML method is traced every time it's executed.
19
20 "1" means this feature is enabled and the AML method
21 will only be traced during the next execution.
22
23 "disabled" means this feature is disabled.
24 Users can enable/disable this debug tracing feature by
25 "echo string > /sys/module/acpi/parameters/trace_state".
26 "string" should be one of "enable", "disable" and "1".