sof
sof copied to clipboard
Sound Open Firmware
**Describe the bug** CONFIG_LLEXT_EXPERIMENTAL is enabled by default on Chromebook's MTL platform. When restoring LLEXT module from DRAM of MTL platform, the LLEXT module loading will fail: ```txt [ 0.000001]...
# Feature Request ## **Problem Description** The current SOF unit test infrastructure uses CMock/CMocka framework, which creates problems: 1. **Framework Mismatch**: SOF is transitioning to Zephyr RTOS, but unit tests...
Adds build-time validation to ensure control and widget names do not exceed maximum allowed length, preventing kernel load errors for topologies with overly long names. * Still in progress *...
This reworks Zephyr IPC interface to utilize the newly introduced IPC message service, which provides a more generic IPC interface.
Implementation of https://github.com/thesofproject/sof/issues/9697 ... built on of @dcpleung 's #10089 . This is not yet ready, but pushing these praparation patches for early review.
**Is your feature request related to a problem? Please describe.** Filing based on discusison in: https://github.com/thesofproject/sof/pull/10356 ""We do need to figure out some way to identify the overlay use in...
Hello, I am using a XPS 13 Plus 9320/XPS 9320. This laptop has four speakers: two tweeter speakers and two woofer speakers. The problem I face is that the internal...
The current rballoc_align() implementation has this line: assert(IS_ALIGNED(mem, align)); Which will cause division by zero due to IS_ALIGNED() Zephyr implementation: define IS_ALIGNED(ptr, align) (((uintptr_t)(ptr)) % (align) == 0) So better...