58a2109f6e
This is useful to see which EC commands are being executed and when. To enable: echo 1 > /sys/kernel/debug/tracing/events/cros_ec/enable Example: cros_ec_cmd: version: 0, command: EC_CMD_GET_VERSION cros_ec_cmd: version: 0, command: EC_CMD_GET_PROTOCOL_INFO cros_ec_cmd: version: 1, command: EC_CMD_GET_CMD_VERSIONS cros_ec_cmd: version: 1, command: EC_CMD_USB_PD_CONTROL The list of current commands is generated using the following script: sed -n 's/^#define \(EC_CMD_[[:alnum:]_]*\)\s.*/\tTRACE_SYMBOL(\1),\\/p' include/linux/mfd/cros_ec_commands.h Signed-off-by: Raul E Rangel <rrangel@chromium.org> Reviewed-by: Ross Zwisler <zwisler@google.com> Reviewed-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
52 lines
1.1 KiB
C
52 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Trace events for the ChromeOS Embedded Controller
|
|
*
|
|
* Copyright 2019 Google LLC.
|
|
*/
|
|
|
|
#undef TRACE_SYSTEM
|
|
#define TRACE_SYSTEM cros_ec
|
|
|
|
#if !defined(_CROS_EC_TRACE_H_) || defined(TRACE_HEADER_MULTI_READ)
|
|
#define _CROS_EC_TRACE_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/mfd/cros_ec.h>
|
|
|
|
#include <linux/tracepoint.h>
|
|
|
|
DECLARE_EVENT_CLASS(cros_ec_cmd_class,
|
|
TP_PROTO(struct cros_ec_command *cmd),
|
|
TP_ARGS(cmd),
|
|
TP_STRUCT__entry(
|
|
__field(uint32_t, version)
|
|
__field(uint32_t, command)
|
|
),
|
|
TP_fast_assign(
|
|
__entry->version = cmd->version;
|
|
__entry->command = cmd->command;
|
|
),
|
|
TP_printk("version: %u, command: %s", __entry->version,
|
|
__print_symbolic(__entry->command, EC_CMDS))
|
|
);
|
|
|
|
|
|
DEFINE_EVENT(cros_ec_cmd_class, cros_ec_cmd,
|
|
TP_PROTO(struct cros_ec_command *cmd),
|
|
TP_ARGS(cmd)
|
|
);
|
|
|
|
|
|
#endif /* _CROS_EC_TRACE_H_ */
|
|
|
|
/* this part must be outside header guard */
|
|
|
|
#undef TRACE_INCLUDE_PATH
|
|
#define TRACE_INCLUDE_PATH .
|
|
|
|
#undef TRACE_INCLUDE_FILE
|
|
#define TRACE_INCLUDE_FILE cros_ec_trace
|
|
|
|
#include <trace/define_trace.h>
|