Commit 794cd3bd authored by Noah Klayman's avatar Noah Klayman Committed by Mark Brown

ASoC: SOF: replace ipc4-loader dev_vdbg with tracepoints

This patch replaces dev_vdbg with tracepoints in new ipc4-loader code.
Reviewed-by: default avatarBard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: default avatarPéter Ujfalusi <peter.ujfalusi@linux.intel.com>
Signed-off-by: default avatarNoah Klayman <noah.klayman@intel.com>
Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20220919122108.43764-8-pierre-louis.bossart@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent bcd2cc35
...@@ -98,6 +98,23 @@ TRACE_EVENT(sof_stream_position_ipc_rx, ...@@ -98,6 +98,23 @@ TRACE_EVENT(sof_stream_position_ipc_rx,
TP_printk("device_name=%s", __get_str(device_name)) 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 */ #endif /* _TRACE_SOF_H */
/* This part must be outside protection */ /* This part must be outside protection */
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
#include <linux/firmware.h> #include <linux/firmware.h>
#include <sound/sof/ext_manifest4.h> #include <sound/sof/ext_manifest4.h>
#include <sound/sof/ipc4/header.h> #include <sound/sof/ipc4/header.h>
#include <trace/events/sof.h>
#include "ipc4-priv.h" #include "ipc4-priv.h"
#include "sof-audio.h" #include "sof-audio.h"
#include "sof-priv.h" #include "sof-priv.h"
...@@ -194,13 +195,13 @@ static int sof_ipc4_query_fw_configuration(struct snd_sof_dev *sdev) ...@@ -194,13 +195,13 @@ static int sof_ipc4_query_fw_configuration(struct snd_sof_dev *sdev)
fw_ver->build); fw_ver->build);
break; break;
case SOF_IPC4_FW_CFG_DL_MAILBOX_BYTES: case SOF_IPC4_FW_CFG_DL_MAILBOX_BYTES:
dev_vdbg(sdev->dev, "DL mailbox size: %u\n", *tuple->value); trace_sof_ipc4_fw_config(sdev, "DL mailbox size", *tuple->value);
break; break;
case SOF_IPC4_FW_CFG_UL_MAILBOX_BYTES: case SOF_IPC4_FW_CFG_UL_MAILBOX_BYTES:
dev_vdbg(sdev->dev, "UL mailbox size: %u\n", *tuple->value); trace_sof_ipc4_fw_config(sdev, "UL mailbox size", *tuple->value);
break; break;
case SOF_IPC4_FW_CFG_TRACE_LOG_BYTES: case SOF_IPC4_FW_CFG_TRACE_LOG_BYTES:
dev_vdbg(sdev->dev, "Trace log size: %u\n", *tuple->value); trace_sof_ipc4_fw_config(sdev, "Trace log size", *tuple->value);
ipc4_data->mtrace_log_bytes = *tuple->value; ipc4_data->mtrace_log_bytes = *tuple->value;
break; break;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment