54 lines
1.1 KiB
C
Raw Normal View History

2026-01-29 22:25:33 +08:00
// SPDX-License-Identifier: GPL-2.0-only
2026-01-21 18:59:54 +08:00
//
2026-01-29 22:25:33 +08:00
// Copyright(c) 2022 Intel Corporation. All rights reserved.
2026-01-21 18:59:54 +08:00
#include "sof-priv.h"
2026-01-29 22:25:33 +08:00
int sof_fw_trace_init(struct snd_sof_dev *sdev)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
const struct sof_ipc_fw_tracing_ops *fw_tracing = sof_ipc_get_ops(sdev, fw_tracing);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
if (!fw_tracing) {
dev_info(sdev->dev, "Firmware tracing is not available\n");
sdev->fw_trace_is_supported = false;
2026-01-21 18:59:54 +08:00
return 0;
}
2026-01-29 22:25:33 +08:00
return fw_tracing->init(sdev);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
void sof_fw_trace_free(struct snd_sof_dev *sdev)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
if (!sdev->fw_trace_is_supported)
return;
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
if (sdev->ipc->ops->fw_tracing->free)
sdev->ipc->ops->fw_tracing->free(sdev);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
void sof_fw_trace_fw_crashed(struct snd_sof_dev *sdev)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
if (!sdev->fw_trace_is_supported)
2026-01-21 18:59:54 +08:00
return;
2026-01-29 22:25:33 +08:00
if (sdev->ipc->ops->fw_tracing->fw_crashed)
sdev->ipc->ops->fw_tracing->fw_crashed(sdev);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
void sof_fw_trace_suspend(struct snd_sof_dev *sdev, pm_message_t pm_state)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
if (!sdev->fw_trace_is_supported)
2026-01-21 18:59:54 +08:00
return;
2026-01-29 22:25:33 +08:00
sdev->ipc->ops->fw_tracing->suspend(sdev, pm_state);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
int sof_fw_trace_resume(struct snd_sof_dev *sdev)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
if (!sdev->fw_trace_is_supported)
return 0;
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
return sdev->ipc->ops->fw_tracing->resume(sdev);
2026-01-21 18:59:54 +08:00
}