M7350/kernel/include/trace/events/power.h

1048 lines
26 KiB
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#undef TRACE_SYSTEM
#define TRACE_SYSTEM power
#if !defined(_TRACE_POWER_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_POWER_H
#include <linux/ktime.h>
2024-09-09 08:57:42 +00:00
#include <linux/pm_qos.h>
2024-09-09 08:52:07 +00:00
#include <linux/tracepoint.h>
2024-09-09 08:57:42 +00:00
#include <linux/ftrace_event.h>
#define TPS(x) tracepoint_string(x)
2024-09-09 08:52:07 +00:00
DECLARE_EVENT_CLASS(cpu,
TP_PROTO(unsigned int state, unsigned int cpu_id),
TP_ARGS(state, cpu_id),
TP_STRUCT__entry(
__field( u32, state )
__field( u32, cpu_id )
),
TP_fast_assign(
__entry->state = state;
__entry->cpu_id = cpu_id;
),
TP_printk("state=%lu cpu_id=%lu", (unsigned long)__entry->state,
(unsigned long)__entry->cpu_id)
);
DEFINE_EVENT(cpu, cpu_idle,
TP_PROTO(unsigned int state, unsigned int cpu_id),
TP_ARGS(state, cpu_id)
);
2024-09-09 08:57:42 +00:00
TRACE_EVENT(pstate_sample,
TP_PROTO(u32 core_busy,
u32 scaled_busy,
u32 state,
u64 mperf,
u64 aperf,
u32 freq
),
TP_ARGS(core_busy,
scaled_busy,
state,
mperf,
aperf,
freq
),
TP_STRUCT__entry(
__field(u32, core_busy)
__field(u32, scaled_busy)
__field(u32, state)
__field(u64, mperf)
__field(u64, aperf)
__field(u32, freq)
),
TP_fast_assign(
__entry->core_busy = core_busy;
__entry->scaled_busy = scaled_busy;
__entry->state = state;
__entry->mperf = mperf;
__entry->aperf = aperf;
__entry->freq = freq;
),
TP_printk("core_busy=%lu scaled=%lu state=%lu mperf=%llu aperf=%llu freq=%lu ",
(unsigned long)__entry->core_busy,
(unsigned long)__entry->scaled_busy,
(unsigned long)__entry->state,
(unsigned long long)__entry->mperf,
(unsigned long long)__entry->aperf,
(unsigned long)__entry->freq
)
);
2024-09-09 08:52:07 +00:00
/* This file can get included multiple times, TRACE_HEADER_MULTI_READ at top */
#ifndef _PWR_EVENT_AVOID_DOUBLE_DEFINING
#define _PWR_EVENT_AVOID_DOUBLE_DEFINING
#define PWR_EVENT_EXIT -1
#endif
2024-09-09 08:57:42 +00:00
#define pm_verb_symbolic(event) \
__print_symbolic(event, \
{ PM_EVENT_SUSPEND, "suspend" }, \
{ PM_EVENT_RESUME, "resume" }, \
{ PM_EVENT_FREEZE, "freeze" }, \
{ PM_EVENT_QUIESCE, "quiesce" }, \
{ PM_EVENT_HIBERNATE, "hibernate" }, \
{ PM_EVENT_THAW, "thaw" }, \
{ PM_EVENT_RESTORE, "restore" }, \
{ PM_EVENT_RECOVER, "recover" })
2024-09-09 08:52:07 +00:00
DEFINE_EVENT(cpu, cpu_frequency,
TP_PROTO(unsigned int frequency, unsigned int cpu_id),
TP_ARGS(frequency, cpu_id)
);
TRACE_EVENT(cpu_frequency_switch_start,
TP_PROTO(unsigned int start_freq, unsigned int end_freq,
unsigned int cpu_id),
TP_ARGS(start_freq, end_freq, cpu_id),
TP_STRUCT__entry(
__field( u32, start_freq )
__field( u32, end_freq )
__field( u32, cpu_id )
),
TP_fast_assign(
__entry->start_freq = start_freq;
__entry->end_freq = end_freq;
__entry->cpu_id = cpu_id;
),
TP_printk("start=%lu end=%lu cpu_id=%lu",
(unsigned long)__entry->start_freq,
(unsigned long)__entry->end_freq,
(unsigned long)__entry->cpu_id)
);
TRACE_EVENT(cpu_frequency_switch_end,
TP_PROTO(unsigned int cpu_id),
TP_ARGS(cpu_id),
TP_STRUCT__entry(
__field( u32, cpu_id )
),
TP_fast_assign(
__entry->cpu_id = cpu_id;
),
TP_printk("cpu_id=%lu", (unsigned long)__entry->cpu_id)
);
2024-09-09 08:57:42 +00:00
DECLARE_EVENT_CLASS(set,
TP_PROTO(u32 cpu_id, unsigned long currfreq,
unsigned long load),
TP_ARGS(cpu_id, currfreq, load),
2024-09-09 08:52:07 +00:00
TP_STRUCT__entry(
2024-09-09 08:57:42 +00:00
__field(u32, cpu_id)
__field(unsigned long, currfreq)
__field(unsigned long, load)
2024-09-09 08:52:07 +00:00
),
TP_fast_assign(
2024-09-09 08:57:42 +00:00
__entry->cpu_id = (u32) cpu_id;
__entry->currfreq = currfreq;
__entry->load = load;
2024-09-09 08:52:07 +00:00
),
2024-09-09 08:57:42 +00:00
TP_printk("cpu=%u currfreq=%lu load=%lu",
__entry->cpu_id, __entry->currfreq,
__entry->load)
2024-09-09 08:52:07 +00:00
);
2024-09-09 08:57:42 +00:00
DEFINE_EVENT(set, cpufreq_sampling_event,
TP_PROTO(u32 cpu_id, unsigned long currfreq,
unsigned long load),
TP_ARGS(cpu_id, currfreq, load)
);
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
DEFINE_EVENT(set, cpufreq_freq_synced,
TP_PROTO(u32 cpu_id, unsigned long currfreq,
unsigned long load),
TP_ARGS(cpu_id, currfreq, load)
);
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TRACE_EVENT(device_pm_callback_start,
TP_PROTO(struct device *dev, const char *pm_ops, int event),
TP_ARGS(dev, pm_ops, event),
2024-09-09 08:52:07 +00:00
TP_STRUCT__entry(
2024-09-09 08:57:42 +00:00
__string(device, dev_name(dev))
__string(driver, dev_driver_string(dev))
__string(parent, dev->parent ? dev_name(dev->parent) : "none")
__string(pm_ops, pm_ops ? pm_ops : "none ")
__field(int, event)
2024-09-09 08:52:07 +00:00
),
TP_fast_assign(
2024-09-09 08:57:42 +00:00
__assign_str(device, dev_name(dev));
__assign_str(driver, dev_driver_string(dev));
__assign_str(parent,
dev->parent ? dev_name(dev->parent) : "none");
__assign_str(pm_ops, pm_ops ? pm_ops : "none ");
__entry->event = event;
2024-09-09 08:52:07 +00:00
),
2024-09-09 08:57:42 +00:00
TP_printk("%s %s, parent: %s, %s[%s]", __get_str(driver),
__get_str(device), __get_str(parent), __get_str(pm_ops),
pm_verb_symbolic(__entry->event))
2024-09-09 08:52:07 +00:00
);
2024-09-09 08:57:42 +00:00
TRACE_EVENT(device_pm_callback_end,
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_PROTO(struct device *dev, int error),
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_ARGS(dev, error),
2024-09-09 08:52:07 +00:00
TP_STRUCT__entry(
2024-09-09 08:57:42 +00:00
__string(device, dev_name(dev))
__string(driver, dev_driver_string(dev))
__field(int, error)
2024-09-09 08:52:07 +00:00
),
TP_fast_assign(
2024-09-09 08:57:42 +00:00
__assign_str(device, dev_name(dev));
__assign_str(driver, dev_driver_string(dev));
__entry->error = error;
2024-09-09 08:52:07 +00:00
),
2024-09-09 08:57:42 +00:00
TP_printk("%s %s, err=%d",
__get_str(driver), __get_str(device), __entry->error)
2024-09-09 08:52:07 +00:00
);
2024-09-09 08:57:42 +00:00
TRACE_EVENT(suspend_resume,
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_PROTO(const char *action, int val, bool start),
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_ARGS(action, val, start),
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_STRUCT__entry(
__field(const char *, action)
__field(int, val)
__field(bool, start)
),
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_fast_assign(
__entry->action = action;
__entry->val = val;
__entry->start = start;
),
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_printk("%s[%u] %s", __entry->action, (unsigned int)__entry->val,
(__entry->start)?"begin":"end")
2024-09-09 08:52:07 +00:00
);
2024-09-09 08:57:42 +00:00
DECLARE_EVENT_CLASS(wakeup_source,
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_PROTO(const char *name, unsigned int state),
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_ARGS(name, state),
2024-09-09 08:52:07 +00:00
TP_STRUCT__entry(
2024-09-09 08:57:42 +00:00
__string( name, name )
__field( u64, state )
2024-09-09 08:52:07 +00:00
),
TP_fast_assign(
2024-09-09 08:57:42 +00:00
__assign_str(name, name);
__entry->state = state;
2024-09-09 08:52:07 +00:00
),
2024-09-09 08:57:42 +00:00
TP_printk("%s state=0x%lx", __get_str(name),
(unsigned long)__entry->state)
2024-09-09 08:52:07 +00:00
);
2024-09-09 08:57:42 +00:00
DEFINE_EVENT(wakeup_source, wakeup_source_activate,
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_PROTO(const char *name, unsigned int state),
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_ARGS(name, state)
);
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
DEFINE_EVENT(wakeup_source, wakeup_source_deactivate,
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_PROTO(const char *name, unsigned int state),
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
TP_ARGS(name, state)
);
2024-09-09 08:52:07 +00:00
/*
* The clock events are used for clock enable/disable and for
* clock rate change
*/
DECLARE_EVENT_CLASS(clock,
TP_PROTO(const char *name, unsigned int state, unsigned int cpu_id),
TP_ARGS(name, state, cpu_id),
TP_STRUCT__entry(
__string( name, name )
__field( u64, state )
__field( u64, cpu_id )
),
TP_fast_assign(
__assign_str(name, name);
__entry->state = state;
__entry->cpu_id = cpu_id;
),
TP_printk("%s state=%lu cpu_id=%lu", __get_str(name),
(unsigned long)__entry->state, (unsigned long)__entry->cpu_id)
);
DEFINE_EVENT(clock, clock_enable,
TP_PROTO(const char *name, unsigned int state, unsigned int cpu_id),
TP_ARGS(name, state, cpu_id)
);
DEFINE_EVENT(clock, clock_disable,
TP_PROTO(const char *name, unsigned int state, unsigned int cpu_id),
TP_ARGS(name, state, cpu_id)
);
DEFINE_EVENT(clock, clock_set_rate,
TP_PROTO(const char *name, unsigned int state, unsigned int cpu_id),
TP_ARGS(name, state, cpu_id)
);
2024-09-09 08:57:42 +00:00
DEFINE_EVENT(clock, clock_set_rate_complete,
TP_PROTO(const char *name, unsigned int state, unsigned int cpu_id),
TP_ARGS(name, state, cpu_id)
);
2024-09-09 08:52:07 +00:00
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))
);
2024-09-09 08:57:42 +00:00
TRACE_EVENT(clock_state,
TP_PROTO(const char *name, unsigned long prepare_count,
unsigned long count, unsigned long rate),
TP_ARGS(name, prepare_count, count, rate),
TP_STRUCT__entry(
__string(name, name)
__field(unsigned long, prepare_count)
__field(unsigned long, count)
__field(unsigned long, rate)
),
TP_fast_assign(
__assign_str(name, name);
__entry->prepare_count = prepare_count;
__entry->count = count;
__entry->rate = rate;
),
TP_printk("%s\t[%lu:%lu]\t%lu", __get_str(name), __entry->prepare_count,
__entry->count, __entry->rate)
);
2024-09-09 08:52:07 +00:00
/*
* The power domain events are used for power domains transitions
*/
DECLARE_EVENT_CLASS(power_domain,
TP_PROTO(const char *name, unsigned int state, unsigned int cpu_id),
TP_ARGS(name, state, cpu_id),
TP_STRUCT__entry(
__string( name, name )
__field( u64, state )
__field( u64, cpu_id )
),
TP_fast_assign(
__assign_str(name, name);
__entry->state = state;
__entry->cpu_id = cpu_id;
),
TP_printk("%s state=%lu cpu_id=%lu", __get_str(name),
(unsigned long)__entry->state, (unsigned long)__entry->cpu_id)
);
DEFINE_EVENT(power_domain, power_domain_target,
TP_PROTO(const char *name, unsigned int state, unsigned int cpu_id),
TP_ARGS(name, state, cpu_id)
);
2024-09-09 08:57:42 +00:00
/*
* The pm qos events are used for pm qos update
*/
DECLARE_EVENT_CLASS(pm_qos_request,
TP_PROTO(int pm_qos_class, s32 value),
TP_ARGS(pm_qos_class, value),
TP_STRUCT__entry(
__field( int, pm_qos_class )
__field( s32, value )
),
TP_fast_assign(
__entry->pm_qos_class = pm_qos_class;
__entry->value = value;
),
TP_printk("pm_qos_class=%s value=%d",
__print_symbolic(__entry->pm_qos_class,
{ PM_QOS_CPU_DMA_LATENCY, "CPU_DMA_LATENCY" },
{ PM_QOS_NETWORK_LATENCY, "NETWORK_LATENCY" },
{ PM_QOS_NETWORK_THROUGHPUT, "NETWORK_THROUGHPUT" }),
__entry->value)
);
DEFINE_EVENT(pm_qos_request, pm_qos_add_request,
TP_PROTO(int pm_qos_class, s32 value),
TP_ARGS(pm_qos_class, value)
);
DEFINE_EVENT(pm_qos_request, pm_qos_update_request,
TP_PROTO(int pm_qos_class, s32 value),
TP_ARGS(pm_qos_class, value)
);
DEFINE_EVENT(pm_qos_request, pm_qos_remove_request,
TP_PROTO(int pm_qos_class, s32 value),
TP_ARGS(pm_qos_class, value)
);
TRACE_EVENT(pm_qos_update_request_timeout,
TP_PROTO(int pm_qos_class, s32 value, unsigned long timeout_us),
TP_ARGS(pm_qos_class, value, timeout_us),
TP_STRUCT__entry(
__field( int, pm_qos_class )
__field( s32, value )
__field( unsigned long, timeout_us )
),
TP_fast_assign(
__entry->pm_qos_class = pm_qos_class;
__entry->value = value;
__entry->timeout_us = timeout_us;
),
TP_printk("pm_qos_class=%s value=%d, timeout_us=%ld",
__print_symbolic(__entry->pm_qos_class,
{ PM_QOS_CPU_DMA_LATENCY, "CPU_DMA_LATENCY" },
{ PM_QOS_NETWORK_LATENCY, "NETWORK_LATENCY" },
{ PM_QOS_NETWORK_THROUGHPUT, "NETWORK_THROUGHPUT" }),
__entry->value, __entry->timeout_us)
);
DECLARE_EVENT_CLASS(pm_qos_update,
TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value),
TP_ARGS(action, prev_value, curr_value),
TP_STRUCT__entry(
__field( enum pm_qos_req_action, action )
__field( int, prev_value )
__field( int, curr_value )
),
TP_fast_assign(
__entry->action = action;
__entry->prev_value = prev_value;
__entry->curr_value = curr_value;
),
TP_printk("action=%s prev_value=%d curr_value=%d",
__print_symbolic(__entry->action,
{ PM_QOS_ADD_REQ, "ADD_REQ" },
{ PM_QOS_UPDATE_REQ, "UPDATE_REQ" },
{ PM_QOS_REMOVE_REQ, "REMOVE_REQ" }),
__entry->prev_value, __entry->curr_value)
);
DEFINE_EVENT(pm_qos_update, pm_qos_update_target,
TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value),
TP_ARGS(action, prev_value, curr_value)
);
DEFINE_EVENT_PRINT(pm_qos_update, pm_qos_update_flags,
TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value),
TP_ARGS(action, prev_value, curr_value),
TP_printk("action=%s prev_value=0x%x curr_value=0x%x",
__print_symbolic(__entry->action,
{ PM_QOS_ADD_REQ, "ADD_REQ" },
{ PM_QOS_UPDATE_REQ, "UPDATE_REQ" },
{ PM_QOS_REMOVE_REQ, "REMOVE_REQ" }),
__entry->prev_value, __entry->curr_value)
);
DECLARE_EVENT_CLASS(dev_pm_qos_request,
TP_PROTO(const char *name, enum dev_pm_qos_req_type type,
s32 new_value),
TP_ARGS(name, type, new_value),
TP_STRUCT__entry(
__string( name, name )
__field( enum dev_pm_qos_req_type, type )
__field( s32, new_value )
),
TP_fast_assign(
__assign_str(name, name);
__entry->type = type;
__entry->new_value = new_value;
),
TP_printk("device=%s type=%s new_value=%d",
__get_str(name),
__print_symbolic(__entry->type,
{ DEV_PM_QOS_RESUME_LATENCY, "DEV_PM_QOS_RESUME_LATENCY" },
{ DEV_PM_QOS_FLAGS, "DEV_PM_QOS_FLAGS" }),
__entry->new_value)
);
DEFINE_EVENT(dev_pm_qos_request, dev_pm_qos_add_request,
TP_PROTO(const char *name, enum dev_pm_qos_req_type type,
s32 new_value),
TP_ARGS(name, type, new_value)
);
DEFINE_EVENT(dev_pm_qos_request, dev_pm_qos_update_request,
TP_PROTO(const char *name, enum dev_pm_qos_req_type type,
s32 new_value),
TP_ARGS(name, type, new_value)
);
DEFINE_EVENT(dev_pm_qos_request, dev_pm_qos_remove_request,
TP_PROTO(const char *name, enum dev_pm_qos_req_type type,
s32 new_value),
TP_ARGS(name, type, new_value)
);
TRACE_EVENT(core_ctl_eval_need,
TP_PROTO(unsigned int cpu, unsigned int old_need,
unsigned int new_need, unsigned int updated),
TP_ARGS(cpu, old_need, new_need, updated),
TP_STRUCT__entry(
__field(u32, cpu)
__field(u32, old_need)
__field(u32, new_need)
__field(u32, updated)
),
TP_fast_assign(
__entry->cpu = cpu;
__entry->old_need = old_need;
__entry->new_need = new_need;
__entry->updated = updated;
),
TP_printk("cpu=%u, old_need=%u, new_need=%u, updated=%u", __entry->cpu,
__entry->old_need, __entry->new_need, __entry->updated)
);
TRACE_EVENT(core_ctl_set_busy,
TP_PROTO(unsigned int cpu, unsigned int busy,
unsigned int old_is_busy, unsigned int is_busy),
TP_ARGS(cpu, busy, old_is_busy, is_busy),
TP_STRUCT__entry(
__field(u32, cpu)
__field(u32, busy)
__field(u32, old_is_busy)
__field(u32, is_busy)
),
TP_fast_assign(
__entry->cpu = cpu;
__entry->busy = busy;
__entry->old_is_busy = old_is_busy;
__entry->is_busy = is_busy;
),
TP_printk("cpu=%u, busy=%u, old_is_busy=%u, new_is_busy=%u",
__entry->cpu, __entry->busy, __entry->old_is_busy,
__entry->is_busy)
);
DECLARE_EVENT_CLASS(kpm_module,
TP_PROTO(unsigned int managed_cpus, unsigned int max_cpus),
TP_ARGS(managed_cpus, max_cpus),
TP_STRUCT__entry(
__field(u32, managed_cpus)
__field(u32, max_cpus)
),
TP_fast_assign(
__entry->managed_cpus = managed_cpus;
__entry->max_cpus = max_cpus;
),
TP_printk("managed:%x max_cpus=%u", (unsigned int)__entry->managed_cpus,
(unsigned int)__entry->max_cpus)
);
DEFINE_EVENT(kpm_module, set_max_cpus,
TP_PROTO(unsigned int managed_cpus, unsigned int max_cpus),
TP_ARGS(managed_cpus, max_cpus)
);
DEFINE_EVENT(kpm_module, reevaluate_hotplug,
TP_PROTO(unsigned int managed_cpus, unsigned int max_cpus),
TP_ARGS(managed_cpus, max_cpus)
);
DECLARE_EVENT_CLASS(kpm_module2,
TP_PROTO(unsigned int cpu, unsigned int enter_cycle_cnt,
unsigned int exit_cycle_cnt,
unsigned int io_busy, u64 iowait),
TP_ARGS(cpu, enter_cycle_cnt, exit_cycle_cnt, io_busy, iowait),
TP_STRUCT__entry(
__field(u32, cpu)
__field(u32, enter_cycle_cnt)
__field(u32, exit_cycle_cnt)
__field(u32, io_busy)
__field(u64, iowait)
),
TP_fast_assign(
__entry->cpu = cpu;
__entry->enter_cycle_cnt = enter_cycle_cnt;
__entry->exit_cycle_cnt = exit_cycle_cnt;
__entry->io_busy = io_busy;
__entry->iowait = iowait;
),
TP_printk("CPU:%u enter_cycles=%u exit_cycles=%u io_busy=%u iowait=%lu",
(unsigned int)__entry->cpu,
(unsigned int)__entry->enter_cycle_cnt,
(unsigned int)__entry->exit_cycle_cnt,
(unsigned int)__entry->io_busy,
(unsigned long)__entry->iowait)
);
DEFINE_EVENT(kpm_module2, track_iowait,
TP_PROTO(unsigned int cpu, unsigned int enter_cycle_cnt,
unsigned int exit_cycle_cnt, unsigned int io_busy, u64 iowait),
TP_ARGS(cpu, enter_cycle_cnt, exit_cycle_cnt, io_busy, iowait)
);
DECLARE_EVENT_CLASS(cpu_modes,
TP_PROTO(unsigned int cpu, unsigned int max_load,
unsigned int single_enter_cycle_cnt,
unsigned int single_exit_cycle_cnt,
unsigned int total_load, unsigned int multi_enter_cycle_cnt,
unsigned int multi_exit_cycle_cnt, unsigned int mode,
unsigned int cpu_cnt),
TP_ARGS(cpu, max_load, single_enter_cycle_cnt, single_exit_cycle_cnt,
total_load, multi_enter_cycle_cnt, multi_exit_cycle_cnt, mode,
cpu_cnt),
TP_STRUCT__entry(
__field(u32, cpu)
__field(u32, max_load)
__field(u32, single_enter_cycle_cnt)
__field(u32, single_exit_cycle_cnt)
__field(u32, total_load)
__field(u32, multi_enter_cycle_cnt)
__field(u32, multi_exit_cycle_cnt)
__field(u32, mode)
__field(u32, cpu_cnt)
),
TP_fast_assign(
__entry->cpu = cpu;
__entry->max_load = max_load;
__entry->single_enter_cycle_cnt = single_enter_cycle_cnt;
__entry->single_exit_cycle_cnt = single_exit_cycle_cnt;
__entry->total_load = total_load;
__entry->multi_enter_cycle_cnt = multi_enter_cycle_cnt;
__entry->multi_exit_cycle_cnt = multi_exit_cycle_cnt;
__entry->mode = mode;
__entry->cpu_cnt = cpu_cnt;
),
TP_printk("%u:%4u:%4u:%4u:%4u:%4u:%4u:%4u:%u",
(unsigned int)__entry->cpu, (unsigned int)__entry->max_load,
(unsigned int)__entry->single_enter_cycle_cnt,
(unsigned int)__entry->single_exit_cycle_cnt,
(unsigned int)__entry->total_load,
(unsigned int)__entry->multi_enter_cycle_cnt,
(unsigned int)__entry->multi_exit_cycle_cnt,
(unsigned int)__entry->mode,
(unsigned int)__entry->cpu_cnt)
);
DEFINE_EVENT(cpu_modes, cpu_mode_detect,
TP_PROTO(unsigned int cpu, unsigned int max_load,
unsigned int single_enter_cycle_cnt,
unsigned int single_exit_cycle_cnt,
unsigned int total_load, unsigned int multi_enter_cycle_cnt,
unsigned int multi_exit_cycle_cnt, unsigned int mode,
unsigned int cpu_cnt),
TP_ARGS(cpu, max_load, single_enter_cycle_cnt, single_exit_cycle_cnt,
total_load, multi_enter_cycle_cnt, multi_exit_cycle_cnt,
mode, cpu_cnt)
);
DECLARE_EVENT_CLASS(timer_status,
TP_PROTO(unsigned int cpu, unsigned int single_enter_cycles,
unsigned int single_enter_cycle_cnt,
unsigned int single_exit_cycles,
unsigned int single_exit_cycle_cnt,
unsigned int multi_enter_cycles,
unsigned int multi_enter_cycle_cnt,
unsigned int multi_exit_cycles,
unsigned int multi_exit_cycle_cnt, unsigned int timer_rate,
unsigned int mode),
TP_ARGS(cpu, single_enter_cycles, single_enter_cycle_cnt,
single_exit_cycles, single_exit_cycle_cnt, multi_enter_cycles,
multi_enter_cycle_cnt, multi_exit_cycles,
multi_exit_cycle_cnt, timer_rate, mode),
TP_STRUCT__entry(
__field(unsigned int, cpu)
__field(unsigned int, single_enter_cycles)
__field(unsigned int, single_enter_cycle_cnt)
__field(unsigned int, single_exit_cycles)
__field(unsigned int, single_exit_cycle_cnt)
__field(unsigned int, multi_enter_cycles)
__field(unsigned int, multi_enter_cycle_cnt)
__field(unsigned int, multi_exit_cycles)
__field(unsigned int, multi_exit_cycle_cnt)
__field(unsigned int, timer_rate)
__field(unsigned int, mode)
),
TP_fast_assign(
__entry->cpu = cpu;
__entry->single_enter_cycles = single_enter_cycles;
__entry->single_enter_cycle_cnt = single_enter_cycle_cnt;
__entry->single_exit_cycles = single_exit_cycles;
__entry->single_exit_cycle_cnt = single_exit_cycle_cnt;
__entry->multi_enter_cycles = multi_enter_cycles;
__entry->multi_enter_cycle_cnt = multi_enter_cycle_cnt;
__entry->multi_exit_cycles = multi_exit_cycles;
__entry->multi_exit_cycle_cnt = multi_exit_cycle_cnt;
__entry->timer_rate = timer_rate;
__entry->mode = mode;
),
TP_printk("%u:%4u:%4u:%4u:%4u:%4u:%4u:%4u:%4u:%4u:%4u",
(unsigned int) __entry->cpu,
(unsigned int) __entry->single_enter_cycles,
(unsigned int) __entry->single_enter_cycle_cnt,
(unsigned int) __entry->single_exit_cycles,
(unsigned int) __entry->single_exit_cycle_cnt,
(unsigned int) __entry->multi_enter_cycles,
(unsigned int) __entry->multi_enter_cycle_cnt,
(unsigned int) __entry->multi_exit_cycles,
(unsigned int) __entry->multi_exit_cycle_cnt,
(unsigned int) __entry->timer_rate,
(unsigned int) __entry->mode)
);
DEFINE_EVENT(timer_status, single_mode_timeout,
TP_PROTO(unsigned int cpu, unsigned int single_enter_cycles,
unsigned int single_enter_cycle_cnt,
unsigned int single_exit_cycles,
unsigned int single_exit_cycle_cnt,
unsigned int multi_enter_cycles,
unsigned int multi_enter_cycle_cnt,
unsigned int multi_exit_cycles,
unsigned int multi_exit_cycle_cnt, unsigned int timer_rate,
unsigned int mode),
TP_ARGS(cpu, single_enter_cycles, single_enter_cycle_cnt,
single_exit_cycles, single_exit_cycle_cnt, multi_enter_cycles,
multi_enter_cycle_cnt, multi_exit_cycles, multi_exit_cycle_cnt,
timer_rate, mode)
);
DEFINE_EVENT(timer_status, single_cycle_exit_timer_start,
TP_PROTO(unsigned int cpu, unsigned int single_enter_cycles,
unsigned int single_enter_cycle_cnt,
unsigned int single_exit_cycles,
unsigned int single_exit_cycle_cnt,
unsigned int multi_enter_cycles,
unsigned int multi_enter_cycle_cnt,
unsigned int multi_exit_cycles,
unsigned int multi_exit_cycle_cnt, unsigned int timer_rate,
unsigned int mode),
TP_ARGS(cpu, single_enter_cycles, single_enter_cycle_cnt,
single_exit_cycles, single_exit_cycle_cnt, multi_enter_cycles,
multi_enter_cycle_cnt, multi_exit_cycles, multi_exit_cycle_cnt,
timer_rate, mode)
);
DEFINE_EVENT(timer_status, single_cycle_exit_timer_stop,
TP_PROTO(unsigned int cpu, unsigned int single_enter_cycles,
unsigned int single_enter_cycle_cnt,
unsigned int single_exit_cycles,
unsigned int single_exit_cycle_cnt,
unsigned int multi_enter_cycles,
unsigned int multi_enter_cycle_cnt,
unsigned int multi_exit_cycles,
unsigned int multi_exit_cycle_cnt, unsigned int timer_rate,
unsigned int mode),
TP_ARGS(cpu, single_enter_cycles, single_enter_cycle_cnt,
single_exit_cycles, single_exit_cycle_cnt, multi_enter_cycles,
multi_enter_cycle_cnt, multi_exit_cycles, multi_exit_cycle_cnt,
timer_rate, mode)
);
TRACE_EVENT(bw_hwmon_meas,
TP_PROTO(const char *name, unsigned long mbps,
unsigned long us, int wake),
TP_ARGS(name, mbps, us, wake),
TP_STRUCT__entry(
__string( name, name )
__field( unsigned long, mbps )
__field( unsigned long, us )
__field( int, wake )
),
TP_fast_assign(
__assign_str(name, name);
__entry->mbps = mbps;
__entry->us = us;
__entry->wake = wake;
),
TP_printk("dev: %s, mbps = %lu, us = %lu, wake = %d",
__get_str(name),
__entry->mbps,
__entry->us,
__entry->wake)
);
TRACE_EVENT(bw_hwmon_update,
TP_PROTO(const char *name, unsigned long mbps, unsigned long freq,
unsigned long up_thres, unsigned long down_thres),
TP_ARGS(name, mbps, freq, up_thres, down_thres),
TP_STRUCT__entry(
__string( name, name )
__field( unsigned long, mbps )
__field( unsigned long, freq )
__field( unsigned long, up_thres )
__field( unsigned long, down_thres )
),
TP_fast_assign(
__assign_str(name, name);
__entry->mbps = mbps;
__entry->freq = freq;
__entry->up_thres = up_thres;
__entry->down_thres = down_thres;
),
TP_printk("dev: %s, mbps = %lu, freq = %lu, up = %lu, down = %lu",
__get_str(name),
__entry->mbps,
__entry->freq,
__entry->up_thres,
__entry->down_thres)
);
TRACE_EVENT(cache_hwmon_meas,
TP_PROTO(const char *name, unsigned long high_mrps,
unsigned long med_mrps, unsigned long low_mrps,
unsigned int busy_percent, unsigned int us),
TP_ARGS(name, high_mrps, med_mrps, low_mrps, busy_percent, us),
TP_STRUCT__entry(
__string(name, name)
__field(unsigned long, high_mrps)
__field(unsigned long, med_mrps)
__field(unsigned long, low_mrps)
__field(unsigned long, total_mrps)
__field(unsigned int, busy_percent)
__field(unsigned int, us)
),
TP_fast_assign(
__assign_str(name, name);
__entry->high_mrps = high_mrps;
__entry->med_mrps = med_mrps;
__entry->low_mrps = low_mrps;
__entry->total_mrps = high_mrps + med_mrps + low_mrps;
__entry->busy_percent = busy_percent;
__entry->us = us;
),
TP_printk("dev=%s H=%lu M=%lu L=%lu T=%lu busy_pct=%u period=%u",
__get_str(name), __entry->high_mrps, __entry->med_mrps,
__entry->low_mrps, __entry->total_mrps,
__entry->busy_percent, __entry->us)
);
TRACE_EVENT(cache_hwmon_update,
TP_PROTO(const char *name, unsigned long freq_mhz),
TP_ARGS(name, freq_mhz),
TP_STRUCT__entry(
__string(name, name)
__field(unsigned long, freq)
),
TP_fast_assign(
__assign_str(name, name);
__entry->freq = freq_mhz;
),
TP_printk("dev=%s freq=%lu", __get_str(name), __entry->freq)
);
TRACE_EVENT(memlat_dev_meas,
TP_PROTO(const char *name, unsigned int dev_id, unsigned long inst,
unsigned long mem, unsigned long freq, unsigned int ratio),
TP_ARGS(name, dev_id, inst, mem, freq, ratio),
TP_STRUCT__entry(
__string(name, name)
__field(unsigned int, dev_id)
__field(unsigned long, inst)
__field(unsigned long, mem)
__field(unsigned long, freq)
__field(unsigned int, ratio)
),
TP_fast_assign(
__assign_str(name, name);
__entry->dev_id = dev_id;
__entry->inst = inst;
__entry->mem = mem;
__entry->freq = freq;
__entry->ratio = ratio;
),
TP_printk("dev: %s, id=%u, inst=%lu, mem=%lu, freq=%lu, ratio=%u",
__get_str(name),
__entry->dev_id,
__entry->inst,
__entry->mem,
__entry->freq,
__entry->ratio)
);
TRACE_EVENT(memlat_dev_update,
TP_PROTO(const char *name, unsigned int dev_id, unsigned long inst,
unsigned long mem, unsigned long freq, unsigned long vote),
TP_ARGS(name, dev_id, inst, mem, freq, vote),
TP_STRUCT__entry(
__string(name, name)
__field(unsigned int, dev_id)
__field(unsigned long, inst)
__field(unsigned long, mem)
__field(unsigned long, freq)
__field(unsigned long, vote)
),
TP_fast_assign(
__assign_str(name, name);
__entry->dev_id = dev_id;
__entry->inst = inst;
__entry->mem = mem;
__entry->freq = freq;
__entry->vote = vote;
),
TP_printk("dev: %s, id=%u, inst=%lu, mem=%lu, freq=%lu, vote=%lu",
__get_str(name),
__entry->dev_id,
__entry->inst,
__entry->mem,
__entry->freq,
__entry->vote)
);
2024-09-09 08:52:07 +00:00
#endif /* _TRACE_POWER_H */
/* This part must be outside protection */
#include <trace/define_trace.h>