-
Notifications
You must be signed in to change notification settings - Fork 349
[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
Changes from all commits
5e0ebca
f9a07e1
0b2d267
95c488c
cef03a9
File filter
Filter by extension
Conversations
Jump to
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?
Collaborator
Author
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. Otherwise these would clash in the next commit with the identical ones in sof-ace-tplg/ PS: to see this thread in the relevant context you must open the commit "avs-tplg: drop the NHLT-free, cavs25 variants of HDA generic". Otherwise Github makes a mess. |
||
| 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.
Collaborator
Author
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,\ | ||
|
Collaborator
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. when you have NUM_DMICS as 4 you also need PDM1_MIC_A_ENABLE=1,PDM1_MIC_B_ENABLE=1
Collaborator
Author
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. Please correct me but I think it is there... I copied it from 65e4c1f |
||
| DEEPBUFFER_FW_DMA_MS=100,DEEPBUFFER_D0I3_COMPATIBLE=true,\ | ||
| PDM1_MIC_A_ENABLE=1,PDM1_MIC_B_ENABLE=1" | ||
| ) | ||
This file was deleted.
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..