Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG]IPC error when testing multiple-pipeline on MTL-RVP NOCODEC #8686

Closed
RanderWang opened this issue Jan 3, 2024 · 7 comments
Closed

[BUG]IPC error when testing multiple-pipeline on MTL-RVP NOCODEC #8686

RanderWang opened this issue Jan 3, 2024 · 7 comments
Assignees
Labels
bug Something isn't working as expected DMA stop failure IPC error IPC error is observed MTL Applies to Meteor Lake platform
Milestone

Comments

@RanderWang
Copy link
Collaborator

RanderWang commented Jan 3, 2024

Kernel log:

[ 2924.250651] kernel: snd_sof:sof_ipc4_trigger_pipelines: sof-audio-pci-intel-mtl 0000:00:1f.3: trigger cmd: 0 state: 2
[ 2924.261128] kernel: snd_sof:sof_ipc4_log_header: sof-audio-pci-intel-mtl 0000:00:1f.3: ipc tx reply: 0x33000000|0x1: GLB_SET_PIPELINE_STATE
[ 2924.261147] kernel: snd_sof:sof_ipc4_log_header: sof-audio-pci-intel-mtl 0000:00:1f.3: ipc tx done : 0x13000003|0x1: GLB_SET_PIPELINE_STATE [data size: 12]
[ 2924.261155] kernel: Message payload: 00000000: 00000002 00000002 00000003
[ 2924.261183] kernel: snd_sof:sof_ipc4_log_header: sof-audio-pci-intel-mtl 0000:00:1f.3: ipc tx      : 0x13000002|0x1: GLB_SET_PIPELINE_STATE [data size: 12]
[ 2924.261543] kernel: snd_sof:sof_ipc4_log_header: sof-audio-pci-intel-mtl 0000:00:1f.3: ipc tx reply: 0x330000a4|0x1: GLB_SET_PIPELINE_STATE
[ 2924.261547] kernel: sof-audio-pci-intel-mtl 0000:00:1f.3: FW reported error: 164 - Unknown
[ 2924.261626] kernel: sof-audio-pci-intel-mtl 0000:00:1f.3: ipc error for msg 0x13000002|0x1
[ 2924.261675] kernel: Message payload: 00000000: 00000002 0000000a 00000009
[ 2924.261680] kernel: sof-audio-pci-intel-mtl 0000:00:1f.3: failed to set final state 2 for all pipelines

FW log:

[ 2924.260746] <inf> ipc: ipc_cmd: rx   : 0x13000002|0x1^M
[ 2924.260775] <inf> pipe: pipeline_trigger: pipe:10 0x0 pipe trigger cmd 0^M
[ 2924.260783] <wrn> pm_device: runtime_suspend: Unbalanced suspend^M
[ 2924.260788] <err> host_comp: host_common_trigger: comp:10 0xd0004 host_trigger(): dma stop failed: -120^M
[ 2924.260791] <err> pipe: pipeline_trigger_run: pipe:10 0x0 pipeline_trigger_run(): ret = -120, host->comp.id = 851972, cmd = 0^M
[ 2924.260803] <err> ipc: ipc4_pipeline_trigger: pipeline 10: trigger cmd 0 failed with: -120^M
[ 2924.260806] <err> ipc: ipc_compound_post_start: failed to process msg 19 status 164^M
@RanderWang RanderWang added bug Something isn't working as expected MTL Applies to Meteor Lake platform labels Jan 3, 2024
@RanderWang RanderWang self-assigned this Jan 3, 2024
RanderWang added a commit to RanderWang/zephyr that referenced this issue Jan 3, 2024
According to hardware spec, host dma needs some delay to complete stop.
In the bug the host dma is disabled twice in a few microseonds. The
first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
@RanderWang
Copy link
Collaborator Author

RanderWang commented Jan 3, 2024

RanderWang added a commit to RanderWang/zephyr that referenced this issue Jan 3, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled twice in a few microseonds. The
first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
RanderWang added a commit to RanderWang/zephyr that referenced this issue Jan 3, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled twice in a few microseonds. The
first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
RanderWang added a commit to RanderWang/zephyr that referenced this issue Jan 3, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled twice in a few microseonds. The
first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
RanderWang added a commit to RanderWang/zephyr that referenced this issue Jan 3, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
@marc-hb
Copy link
Collaborator

marc-hb commented Jan 12, 2024

Similar looking issue #8729 with a lot more details.

@marc-hb marc-hb added this to the v2.9 milestone Jan 12, 2024
RanderWang added a commit to RanderWang/zephyr that referenced this issue Jan 12, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
nashif pushed a commit to zephyrproject-rtos/zephyr that referenced this issue Jan 12, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
@RanderWang
Copy link
Collaborator Author

fixed

coreboot-org-bot pushed a commit to coreboot/zephyr-cros that referenced this issue Jan 15, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

(cherry picked from commit e021ccf)

Original-BugLink: thesofproject/sof#8686
Original-Signed-off-by: Rander Wang <rander.wang@intel.com>
GitOrigin-RevId: e021ccf
Change-Id: Ie878ee785583845e771da22a71ea09f278ed5c73
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/zephyr/+/5196152
Tested-by: ChromeOS Prod (Robot) <chromeos-ci-prod@chromeos-bot.iam.gserviceaccount.com>
Reviewed-by: Tristan Honscheid <honscheid@google.com>
Tested-by: Tristan Honscheid <honscheid@google.com>
Commit-Queue: Tristan Honscheid <honscheid@google.com>
@marc-hb
Copy link
Collaborator

marc-hb commented Jan 17, 2024

multiple-pause-resume is still very unreliable even with your fix @RanderWang , can you please take a look?

@mengdonglin mengdonglin added IPC error IPC error is observed DMA stop failure labels Jan 24, 2024
abonislawski pushed a commit to abonislawski/zephyr that referenced this issue Jan 24, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
abonislawski pushed a commit to thesofproject/zephyr that referenced this issue Jan 24, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
tmleman pushed a commit to tmleman/zephyr that referenced this issue Jan 25, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
@kv2019i
Copy link
Collaborator

kv2019i commented Feb 1, 2024

@RanderWang @marc-hb How come all these bugs are closed even if the fix is not merged to SOF mainline? I don't see these errors in PR testing -- how can that be if the fix is not merged?

kv2019i added a commit to kv2019i/zephyr that referenced this issue Feb 1, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug zephyrproject-rtos#8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

Link: thesofproject/sof#8686
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
@marc-hb
Copy link
Collaborator

marc-hb commented Feb 1, 2024

How come all these bugs are closed even if the fix is not merged to SOF mainline?

Good question for @RanderWang who closed it as soon as the fix was merged in Zephyr.

In my book bugs are closed after at least one round of daily tests but opinions might differ?

Github's wrong opinion and really bad practice does not help: https://github.com/orgs/community/discussions/66741

@marc-hb marc-hb reopened this Feb 1, 2024
abonislawski pushed a commit to abonislawski/zephyr that referenced this issue Feb 1, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
abonislawski pushed a commit to abonislawski/zephyr that referenced this issue Feb 1, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug zephyrproject-rtos#8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

Link: thesofproject/sof#8686
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
kv2019i pushed a commit to kv2019i/zephyr that referenced this issue Feb 2, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
(cherry picked from commit e021ccf)
kv2019i added a commit to kv2019i/zephyr that referenced this issue Feb 2, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug zephyrproject-rtos#8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

Link: thesofproject/sof#8686
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
(cherry picked from commit fded11f)
henrikbrixandersen pushed a commit to zephyrproject-rtos/zephyr that referenced this issue Feb 5, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug #8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

Link: thesofproject/sof#8686
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
abonislawski pushed a commit to abonislawski/zephyr that referenced this issue Feb 9, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
(cherry picked from commit e021ccf)
abonislawski pushed a commit to abonislawski/zephyr that referenced this issue Feb 9, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug zephyrproject-rtos#8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

Link: thesofproject/sof#8686
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
(cherry picked from commit fded11f)
coreboot-org-bot pushed a commit to coreboot/zephyr-cros that referenced this issue Feb 10, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug #8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

(cherry picked from commit 00d4661)

Original-Link: thesofproject/sof#8686
Original-Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
GitOrigin-RevId: 00d4661
Change-Id: Ifc46cd8ddd64c265f0e1ec00cae8a254b90aff1c
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/zephyr/+/5280273
Commit-Queue: Al Semjonovs <asemjonovs@google.com>
Reviewed-by: Al Semjonovs <asemjonovs@google.com>
Tested-by: Al Semjonovs <asemjonovs@google.com>
Tested-by: ChromeOS Prod (Robot) <chromeos-ci-prod@chromeos-bot.iam.gserviceaccount.com>
kv2019i pushed a commit to kv2019i/zephyr that referenced this issue Feb 12, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
(cherry picked from commit e021ccf)
kv2019i added a commit to kv2019i/zephyr that referenced this issue Feb 12, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug zephyrproject-rtos#8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

Link: thesofproject/sof#8686
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
(cherry picked from commit fded11f)
kv2019i added a commit to kv2019i/zephyr that referenced this issue Feb 14, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug zephyrproject-rtos#8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

Link: thesofproject/sof#8686
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
(cherry picked from commit 00d4661)
kv2019i added a commit to kv2019i/zephyr that referenced this issue Feb 14, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug zephyrproject-rtos#8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

Link: thesofproject/sof#8686
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
(cherry picked from commit 00d4661)
kv2019i pushed a commit to kv2019i/zephyr that referenced this issue Mar 4, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
(cherry picked from commit e021ccf)
kv2019i added a commit to kv2019i/zephyr that referenced this issue Mar 4, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug zephyrproject-rtos#8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

Link: thesofproject/sof#8686
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
(cherry picked from commit 00d4661)
kv2019i pushed a commit to thesofproject/zephyr that referenced this issue Mar 5, 2024
According to hardware spec, host dma needs some delay to completely stop.
In the bug the host dma is disabled in different path in a few microseonds.
The first setting disabled the host dma and called pm_device_runtime_put
to power off it. The second setting found the host dma was still alive
and calle pm_device_runtime_put again. This results to pm->usage
checking failed.

BugLink: thesofproject/sof#8686
Signed-off-by: Rander Wang <rander.wang@intel.com>
(cherry picked from commit e021ccf)
kv2019i added a commit to thesofproject/zephyr that referenced this issue Mar 5, 2024
Commit b2eaa6448076 ("drivers: dma: intel-adsp-hda: add delay to stop
host dma") added a wait on GBUSY state to host DMA stop.

This is problematic as in some case (like SOF chain-DMA usage),
the host DMA side RUN bit is not cleared when intel_adsp_hda_dma_stop()
is called. It is not possible to wait on GBUSY bit as there are
valid cases where it can remain set.

Address the original problem described in SOF bug zephyrproject-rtos#8686 and add a
polling check for intel_adsp_hda_is_enabled(). As per the bug
description, in some cases the GEN/FIFORDY bits are not cleared
immediately and if a new call to intel_adsp_hda_dma_stop() is made, the
PM refcounting will go haywire.

Link: thesofproject/sof#8686
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
(cherry picked from commit 00d4661)
@kv2019i
Copy link
Collaborator

kv2019i commented Mar 7, 2024

Fixed and merged to both SOF main and stable-v2.9.

@kv2019i kv2019i closed this as completed Mar 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working as expected DMA stop failure IPC error IPC error is observed MTL Applies to Meteor Lake platform
Projects
None yet
Development

No branches or pull requests

4 participants