Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 367
[stable-v2.8] Merge avs-tplg and sof-ace-tplg under production directory #8861
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
5e0ebcaf9a07e10b2d26795c488ccef03a9File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,15 @@ | ||
| # SPDX-License-Identifier: BSD-3-Clause | ||
| # Array of "input-file-name;output-file-name;comma separated pre-processor variables" | ||
| set(TPLGS | ||
| # CAVS HDMI only topology with passthrough pipelines | ||
| "sof-hda-generic\;sof-hda-generic-idisp\;DEEPBUFFER_FW_DMA_MS=100" | ||
| # CAVS HDA topology with mixer-based pipelines for HDA and passthrough pipelines for HDMI | ||
| "sof-hda-generic\;sof-hda-generic\;HDA_CONFIG=mix,DEEPBUFFER_FW_DMA_MS=100" | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why?
| ||
| list(APPEND TPLGS | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change is not related to topic, unless it is part of the 'preparation' umbrella. CollaboratorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct, this could have been another "preparation" commit. However I felt like this commit was small and easy enough to review. Moreover this CMake change makes no output difference at this early stage. | ||
| # If the alsatplg plugins for NHLT are not available, the NHLT blobs will not be added to the | ||
| # topologies below. | ||
| "sof-hda-generic\;sof-hda-generic-2ch\;\ | ||
| HDA_CONFIG=mix,NUM_DMICS=2,PREPROCESS_PLUGINS=nhlt,NHLT_BIN=nhlt-sof-hda-generic-2ch.bin,\ | ||
| "sof-hda-generic\;sof-hda-generic-cavs25-2ch\;\ | ||
| HDA_CONFIG=mix,NUM_DMICS=2,PREPROCESS_PLUGINS=nhlt,NHLT_BIN=nhlt-sof-hda-generic-cavs25-2ch.bin,\ | ||
| DEEPBUFFER_FW_DMA_MS=100" | ||
| "sof-hda-generic\;sof-hda-generic-4ch\;\ | ||
| HDA_CONFIG=mix,NUM_DMICS=4,PREPROCESS_PLUGINS=nhlt,NHLT_BIN=nhlt-sof-hda-generic-4ch.bin,\ | ||
| "sof-hda-generic\;sof-hda-generic-cavs25-4ch\;\ | ||
| HDA_CONFIG=mix,NUM_DMICS=4,PREPROCESS_PLUGINS=nhlt,NHLT_BIN=nhlt-sof-hda-generic-cavs25-4ch.bin,\ | ||
| DEEPBUFFER_FW_DMA_MS=100,\ | ||
| PDM1_MIC_A_ENABLE=1,PDM1_MIC_B_ENABLE=1" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| list(APPEND TPLGS | ||
| # HDMI only topology with passthrough pipelines | ||
| "sof-hda-generic\;sof-hda-generic-idisp\;DEEPBUFFER_FW_DMA_MS=100,\ | ||
| DEEPBUFFER_D0I3_COMPATIBLE=true" | ||
| # HDA topology with mixer-based pipelines for HDA and passthrough pipelines for HDMI | ||
| "sof-hda-generic\;sof-hda-generic\;HDA_CONFIG=mix,DEEPBUFFER_FW_DMA_MS=100,\ | ||
| DEEPBUFFER_D0I3_COMPATIBLE=true" | ||
| # HDA topology with mixer-based pipelines for HDA and | ||
| # passthrough pipelines for HDMI and | ||
| # 2 or 4 DMIC, no NHLT blob included in topology | ||
| "sof-hda-generic\;sof-hda-generic-2ch\;HDA_CONFIG=mix,NUM_DMICS=2,\ | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so, at the previous patch the tplg2 build was incomplete? | ||
| DEEPBUFFER_FW_DMA_MS=100,DEEPBUFFER_D0I3_COMPATIBLE=true" | ||
| "sof-hda-generic\;sof-hda-generic-4ch\;HDA_CONFIG=mix,NUM_DMICS=4,\ | ||
| ||
| DEEPBUFFER_FW_DMA_MS=100,DEEPBUFFER_D0I3_COMPATIBLE=true,\ | ||
| PDM1_MIC_A_ENABLE=1,PDM1_MIC_B_ENABLE=1" | ||
| ) | ||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could have been done in the previous patch..