aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNoah Klayman <noah.klayman@intel.com>2022-09-19 14:21:08 +0200
committerMark Brown <broonie@kernel.org>2022-09-19 15:44:08 +0100
commit794cd3bd69315f724532e35fbc1c45dfad9a79e6 (patch)
tree0effd88ab3ea7810966d54b01cc8a0392c025b49 /include
parentASoC: SOF: replace dev_vdbg with tracepoints (diff)
downloadlinux-dev-794cd3bd69315f724532e35fbc1c45dfad9a79e6.tar.xz
linux-dev-794cd3bd69315f724532e35fbc1c45dfad9a79e6.zip
ASoC: SOF: replace ipc4-loader dev_vdbg with tracepoints
This patch replaces dev_vdbg with tracepoints in new ipc4-loader code. Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com> Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com> Signed-off-by: Noah Klayman <noah.klayman@intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20220919122108.43764-8-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/trace/events/sof.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/trace/events/sof.h b/include/trace/events/sof.h
index 03751323aaa8..21c2a1efb9f6 100644
--- a/include/trace/events/sof.h
+++ b/include/trace/events/sof.h
@@ -98,6 +98,23 @@ TRACE_EVENT(sof_stream_position_ipc_rx,
TP_printk("device_name=%s", __get_str(device_name))
);
+TRACE_EVENT(sof_ipc4_fw_config,
+ TP_PROTO(struct snd_sof_dev *sdev, char *key, u32 value),
+ TP_ARGS(sdev, key, value),
+ TP_STRUCT__entry(
+ __string(device_name, dev_name(sdev->dev))
+ __string(key, key)
+ __field(u32, value)
+ ),
+ TP_fast_assign(
+ __assign_str(device_name, dev_name(sdev->dev));
+ __assign_str(key, key);
+ __entry->value = value;
+ ),
+ TP_printk("device_name=%s key=%s value=%d",
+ __get_str(device_name), __get_str(key), __entry->value)
+);
+
#endif /* _TRACE_SOF_H */
/* This part must be outside protection */