3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-30 23:02:18 +00:00
Brooklyn/sound/soc/sof/trace.c

52 lines
1.1 KiB
C
Raw Normal View History

2022-09-09 09:21:57 +00:00
// SPDX-License-Identifier: GPL-2.0-only
2022-04-02 13:24:21 +00:00
//
2022-09-09 09:21:57 +00:00
// Copyright(c) 2022 Intel Corporation. All rights reserved.
2022-04-02 13:24:21 +00:00
#include "sof-priv.h"
2022-09-09 09:21:57 +00:00
int sof_fw_trace_init(struct snd_sof_dev *sdev)
2022-04-02 13:24:21 +00:00
{
2022-09-09 09:21:57 +00:00
if (!sdev->ipc->ops->fw_tracing) {
dev_info(sdev->dev, "Firmware tracing is not available\n");
sdev->fw_trace_is_supported = false;
2022-04-02 13:24:21 +00:00
return 0;
}
2022-09-09 09:21:57 +00:00
return sdev->ipc->ops->fw_tracing->init(sdev);
2022-04-02 13:24:21 +00:00
}
2022-09-09 09:21:57 +00:00
void sof_fw_trace_free(struct snd_sof_dev *sdev)
2022-04-02 13:24:21 +00:00
{
2022-09-09 09:21:57 +00:00
if (!sdev->fw_trace_is_supported || !sdev->ipc->ops->fw_tracing)
return;
2022-04-02 13:24:21 +00:00
2022-09-09 09:21:57 +00:00
if (sdev->ipc->ops->fw_tracing->free)
sdev->ipc->ops->fw_tracing->free(sdev);
2022-04-02 13:24:21 +00:00
}
2022-09-09 09:21:57 +00:00
void sof_fw_trace_fw_crashed(struct snd_sof_dev *sdev)
2022-04-02 13:24:21 +00:00
{
2022-09-09 09:21:57 +00:00
if (!sdev->fw_trace_is_supported)
2022-04-02 13:24:21 +00:00
return;
2022-09-09 09:21:57 +00:00
if (sdev->ipc->ops->fw_tracing->fw_crashed)
sdev->ipc->ops->fw_tracing->fw_crashed(sdev);
2022-04-02 13:24:21 +00:00
}
2022-09-09 09:21:57 +00:00
void sof_fw_trace_suspend(struct snd_sof_dev *sdev, pm_message_t pm_state)
2022-04-02 13:24:21 +00:00
{
2022-09-09 09:21:57 +00:00
if (!sdev->fw_trace_is_supported)
2022-04-02 13:24:21 +00:00
return;
2022-09-09 09:21:57 +00:00
sdev->ipc->ops->fw_tracing->suspend(sdev, pm_state);
2022-04-02 13:24:21 +00:00
}
2022-09-09 09:21:57 +00:00
int sof_fw_trace_resume(struct snd_sof_dev *sdev)
2022-04-02 13:24:21 +00:00
{
2022-09-09 09:21:57 +00:00
if (!sdev->fw_trace_is_supported)
return 0;
2022-04-02 13:24:21 +00:00
2022-09-09 09:21:57 +00:00
return sdev->ipc->ops->fw_tracing->resume(sdev);
2022-04-02 13:24:21 +00:00
}