audio: ctc: add Google CTC integration and support for PTL SDCA topologies - #11081
Draft
eddy1021 wants to merge 1 commit into
Draft
audio: ctc: add Google CTC integration and support for PTL SDCA topologies#11081eddy1021 wants to merge 1 commit into
eddy1021 wants to merge 1 commit into
Conversation
…ogies Integrate Google Crosstalk Cancellation (CTC) component into the SOF audio processing pipeline for PTL platforms. Key changes: - Add Google CTC component wrapper in src/audio/google/ and register CTC UUID (99f7166d-372c-43ef-81f6-22007aa15f03) in tools/rimage/config/ptl.toml.h. - Update module adapter IPC4 payload sizing handlers to support CTC configuration blobs. - Enable CTC support in Zephyr application overlay (app/overlays/ptl/dts_overlay.conf). - Add mixout-gain-eqiir-eqfir-drc-ctc-alh-dai-copier-playback topology pipeline. - Update sdw-amp-generic.conf and tplg-targets-sdca-generic.cmake to incorporate the CTC processing widget and routing into generic PTL SDCA amplifier topologies (sof-sdca-1amp-id2.tplg) when SDW_SPK_CTC is enabled. Signed-off-by: Eddy Hsu <eddyhsu@google.com>
eddy1021
force-pushed
the
ptl-008-google-ctc
branch
from
August 10, 2026 17:41
56ad3d9 to
a4ee8db
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR integrates the Google Crosstalk Cancellation (CTC) audio processing component for Intel Panther Lake (PTL) platforms with SDCA smart amplifier configurations.
Audio Component & UUID Registration:
- Added SOF component wrapper and static stubs for Google CTC under
src/audio/google/.- Registered the Google CTC UUID (
99f7166d-372c-43ef-81f6-22007aa15f03) intools/rimage/config/ptl.toml.h.Module Adapter & IPC4 Runtime:
- Adjusted IPC4 configuration payload parsing and memory sizing in
src/audio/module_adapter/module_adapter_ipc4.cto support CTC filter coefficient sets.- Updated library manager and module mixer routing to support dynamic CTC module instantiation.
Topology Integration:
- Introduced
mixout-gain-eqiir-eqfir-drc-ctc-alh-dai-copier-playback.confplayback pipeline.- Updated
sdw-amp-generic.confandtplg-targets-sdca-generic.cmaketo optionally route audio through the CTC widget whenSDW_SPK_CTC=true, generatingsof-sdca-1amp-id2.tplg.