Skip to content

Commit

Permalink
ASoC: SOF: add fw_exception support on IPC4 path
Browse files Browse the repository at this point in the history
Driver will receive exception IPC message and process it by
snd_sof_handle_fw_exception.

Signed-off-by: Rander Wang <[email protected]>
  • Loading branch information
RanderWang committed May 23, 2023
1 parent d82daec commit 4864d52
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sound/soc/sof/ipc4.c
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,9 @@ static void sof_ipc4_rx_msg(struct snd_sof_dev *sdev)
case SOF_IPC4_NOTIFY_LOG_BUFFER_STATUS:
sof_ipc4_mtrace_update_pos(sdev, SOF_IPC4_LOG_CORE_GET(ipc4_msg->primary));
break;
case SOF_IPC4_NOTIFY_EXCEPTION_CAUGHT:
snd_sof_handle_fw_exception(sdev, "FW Panic");
break;
default:
dev_dbg(sdev->dev, "Unhandled DSP message: %#x|%#x\n",
ipc4_msg->primary, ipc4_msg->extension);
Expand Down

0 comments on commit 4864d52

Please sign in to comment.