mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-27 03:49:57 -04:00
pm-graph: config files and installer
- name change: analyze_boot.py to bootgraph.py - name change: analyze_suspend.py to sleepgraph.py - added config files for easier sleepgraph usage - added example.cfg which describes all config options - added cgskip.txt definition for slimmer callgraphs Signed-off-by: Todd Brandt <todd.e.brandt@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
committed by
Rafael J. Wysocki
parent
91ab883eb2
commit
a6fbdbb2b8
98
tools/power/pm-graph/config/suspend-callgraph.cfg
Normal file
98
tools/power/pm-graph/config/suspend-callgraph.cfg
Normal file
@@ -0,0 +1,98 @@
|
||||
#
|
||||
# Full Callgraph for S3 (Suspend to Mem) test
|
||||
#
|
||||
# This is the configuration file for sleepgraph. It contains
|
||||
# all the tool arguments so that they don't have to be given on the
|
||||
# command line. It also includes advanced settings for functions
|
||||
# and kprobes. It is run like this
|
||||
#
|
||||
# sudo ./sleepgraph.py -config config/suspend.cfg
|
||||
#
|
||||
# NOTE: the output of this test is very large (> 30MB)
|
||||
|
||||
[Settings]
|
||||
|
||||
# ---- General Options ----
|
||||
|
||||
# Verbosity
|
||||
# print verbose messages (default: false)
|
||||
verbose: false
|
||||
|
||||
# Suspend Mode
|
||||
# e.g. standby, mem, freeze, disk (default: mem)
|
||||
mode: mem
|
||||
|
||||
# Output Directory Format
|
||||
# output folder for html, ftrace, and dmesg. Use {date} and {time} for current values
|
||||
output-dir: suspend-{hostname}-{date}-{time}-cg
|
||||
|
||||
# Automatic Wakeup
|
||||
# Use rtcwake to autoresume after X seconds, or off to disable (default: 15)
|
||||
rtcwake: 15
|
||||
|
||||
# Add Logs
|
||||
# add the dmesg and ftrace log to the html output (default: false)
|
||||
addlogs: false
|
||||
|
||||
# Suspend/Resume Gap
|
||||
# insert a small visible gap between suspend and resume on the timeline (default: false)
|
||||
srgap: false
|
||||
|
||||
# ---- Advanced Options ----
|
||||
|
||||
# Command to execute in lieu of suspend (default: "")
|
||||
# command: echo mem > /sys/power/state
|
||||
|
||||
# Display user processes
|
||||
# graph user processes and cpu usage in the timeline (default: false)
|
||||
proc: false
|
||||
|
||||
# Display function calls
|
||||
# graph source functions in the timeline (default: false)
|
||||
dev: false
|
||||
|
||||
# Back to Back Suspend/Resume
|
||||
# Run two suspend/resumes back to back (default: false)
|
||||
x2: false
|
||||
|
||||
# Back to Back Suspend Delay
|
||||
# Time delay between the two test runs in ms (default: 0 ms)
|
||||
x2delay: 0
|
||||
|
||||
# Pre Suspend Delay
|
||||
# Include an N ms delay before (1st) suspend (default: 0 ms)
|
||||
predelay: 0
|
||||
|
||||
# Post Resume Delay
|
||||
# Include an N ms delay after (last) resume (default: 0 ms)
|
||||
postdelay: 0
|
||||
|
||||
# Minimum Device Length
|
||||
# graph only devices longer than min in the timeline (default: 0.001 ms)
|
||||
mindev: 0.001
|
||||
|
||||
# ---- Debug Options ----
|
||||
|
||||
# Callgraph
|
||||
# gather detailed ftrace callgraph data on all timeline events (default: false)
|
||||
callgraph: true
|
||||
|
||||
# Max graph depth
|
||||
# limit the callgraph trace to this depth (default: 0 = all)
|
||||
maxdepth: 5
|
||||
|
||||
# Expand Callgraph
|
||||
# pre-expand the callgraph data in the html output (default: disabled)
|
||||
expandcg: false
|
||||
|
||||
# Minimum Callgraph Length
|
||||
# provide callgraph data for blocks longer than min (default: 0.001 ms)
|
||||
mincg: 1
|
||||
|
||||
# Timestamp Precision
|
||||
# Number of significant digits in timestamps (0:S, [3:ms], 6:us)
|
||||
timeprec: 6
|
||||
|
||||
# Device Filter
|
||||
# show only devs whose name/driver includes one of these strings
|
||||
# devicefilter: _cpu_up,_cpu_down,i915,usb
|
||||
Reference in New Issue
Block a user