platform/chrome: cros_ec_proto: Add trace event to trace EC commands
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>
Showing
- drivers/platform/chrome/Makefile 4 additions, 1 deletiondrivers/platform/chrome/Makefile
- drivers/platform/chrome/cros_ec_proto.c 4 additions, 0 deletionsdrivers/platform/chrome/cros_ec_proto.c
- drivers/platform/chrome/cros_ec_trace.c 124 additions, 0 deletionsdrivers/platform/chrome/cros_ec_trace.c
- drivers/platform/chrome/cros_ec_trace.h 51 additions, 0 deletionsdrivers/platform/chrome/cros_ec_trace.h
drivers/platform/chrome/cros_ec_trace.c
0 → 100644
drivers/platform/chrome/cros_ec_trace.h
0 → 100644
Please register or sign in to comment