trace: power: add trace_clock_set_parent
authorColin Cross <ccross@android.com>
Wed, 9 May 2012 23:09:50 +0000 (16:09 -0700)
committerJohn Stultz <john.stultz@linaro.org>
Tue, 16 Feb 2016 21:53:31 +0000 (13:53 -0800)
Adds a new trace event to be called from clk_set_parent.  Some
cpufreq drivers, including Tegra, reparent the cpu clock to a
slower clock while the main pll is relocking, tracing
clk_set_parent allows traces to show how for long the cpu is
running slower.

Uses a separate TRACE_EVENT instead of the clock event class to
allow the event to contain string names for the child and the
parent.

Signed-off-by: Colin Cross <ccross@android.com>
include/trace/events/power.h

index a4878c1b35d21aeec04cae034bdf1160beeed4d7..de77035567c45fbd262f7a002a96c6ea2001100e 100644 (file)
@@ -298,6 +298,25 @@ DEFINE_EVENT(clock, clock_set_rate,
        TP_ARGS(name, state, cpu_id)
 );
 
+TRACE_EVENT(clock_set_parent,
+
+       TP_PROTO(const char *name, const char *parent_name),
+
+       TP_ARGS(name, parent_name),
+
+       TP_STRUCT__entry(
+               __string(       name,           name            )
+               __string(       parent_name,    parent_name     )
+       ),
+
+       TP_fast_assign(
+               __assign_str(name, name);
+               __assign_str(parent_name, parent_name);
+       ),
+
+       TP_printk("%s parent=%s", __get_str(name), __get_str(parent_name))
+);
+
 /*
  * The power domain events are used for power domains transitions
  */