Uh oh!
There was an error while loading. Please reload this page.
[PTL] audio: ctc: add Google CTC and Dolby DAX integration for PTL - #11093
Draft
eddy1021 wants to merge 4 commits into
Draft
[PTL] audio: ctc: add Google CTC and Dolby DAX integration for PTL#11093eddy1021 wants to merge 4 commits into
eddy1021 wants to merge 4 commits into
Conversation
added 4 commits
August 13, 2026 16:40
Ensure destroy_instance, establish_instance, dax_register_user, and dax_unregister_user return 0 when an instance is already in the requested state, preventing spurious errors during pipeline stop, reset, and prepare re-entries. Signed-off-by: Eddy Hsu <eddyhsu@google.com>
Integrate Google Crosstalk Cancellation (CTC) audio processing component into SOF audio processing pipeline. Key improvements: - Add Google CTC wrapper in src/audio/google/ with support for S16, S24, and S32 audio stream processing and runtime configuration blobs. - Add safe float-to-integer conversion functions with clamping and NaN guards to prevent hardware FPU integer overflow exceptions. - Add circular buffer handling and pending sample tracking across audio periods. - Update module adapter IPC4 payload sizing handler to support small CTC configuration blobs. - Enable Google CTC in PTL dts and dax overlays with appropriate stack and heap sizing. Signed-off-by: Eddy Hsu <eddyhsu@google.com>
Add 16-bit audio format support (S16_LE) to host-gateway-capture in sdw-dmic-generic.conf so that 16-bit microphone capture requests initialize properly without copier initialization errors. Signed-off-by: Eddy Hsu <eddyhsu@google.com>
Add Google Crosstalk Cancellation (CTC) component support to PTL topologies: - Add mixout-gain-dax-ctc-alh-dai-copier-playback pipeline for DAX speaker paths on Lapis (sof-ptl-cs42l43-agg-l3-cs35l56-l2-dax). - Add mixout-gain-eqiir-eqfir-drc-ctc-alh-dai-copier-playback pipeline for generic SDCA speaker paths on Moonstone (sof-sdca-1amp-id2). - Update sdw-amp-dax.conf, sdw-amp-generic.conf, and cavs-sdw.conf to route through CTC when SDW_SPK_CTC is true. - Enable SDW_SPK_CTC in tplg-targets-ace3.cmake and tplg-targets-sdca-generic.cmake. Signed-off-by: Eddy Hsu <eddyhsu@google.com>
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 freeto 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.
Summary
Integrates the Google Crosstalk Cancellation (CTC) audio processing component into the Sound Open Firmware (SOF) pipeline on Intel Panther Lake (PTL) platforms and resolves lifecycle arbitration edge cases in Dolby DAX v1.1.
Key Changes
Verification