Uh oh!
There was an error while loading. Please reload this page.
forked from torvalds/linux
- Notifications
You must be signed in to change notification settings - Fork 150
[RFC] Fix Kconfigs, make hda link + HDAudio codec optional#302
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
Merged
plbossart
merged 3 commits into
thesofproject:topic/sof-dev
from
plbossart:fix/hda-hdmi-optionalNov 25, 2018
Uh oh!
There was an error while loading. Please reload this page.
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,3 @@ | ||
| config SND_SOC_SOF_INTEL | ||
| tristate "SOF support for Intel audio DSPs" | ||
| depends on SND_SOC_SOF | ||
| depends on SND_DMA_SGBUF | ||
| select SND_SOC_INTEL_MACH | ||
| select SND_SOC_SOF_XTENSA | ||
| help | ||
| This adds support for Sound Open Firmware for Intel(R) platforms. | ||
| Say Y if you have such a device. | ||
| If unsure select "N". | ||
| config SND_SOC_SOF_SPIDSP | ||
| tristate "SOF support over the SPI bus" | ||
| depends on SND_SOC_SOF | ||
| @@ -20,6 +9,17 @@ config SND_SOC_SOF_SPIDSP | ||
| Say Y if you have such a device. | ||
| If unsure select "N". | ||
| config SND_SOC_SOF_INTEL | ||
| tristate "SOF support for Intel audio DSPs" | ||
| depends on SND_SOC_SOF | ||
| depends on SND_DMA_SGBUF | ||
| select SND_SOC_INTEL_MACH | ||
| select SND_SOC_SOF_XTENSA | ||
| help | ||
| This adds support for Sound Open Firmware for Intel(R) platforms. | ||
| Say Y if you have such a device. | ||
| If unsure select "N". | ||
| if SND_SOC_SOF_INTEL | ||
| config SND_SOC_SOF_BAYTRAIL | ||
| @@ -111,17 +111,37 @@ config SND_SOC_SOF_HDA_COMMON | ||
| tristate | ||
| select SND_SOC_SOF_PCI | ||
| select SND_SOC_ACPI_INTEL_MATCH | ||
| select SND_SOC_SOF_HDA_LINK_BASELINE | ||
| config SND_SOC_SOF_HDA | ||
| tristate "SOF support for HDA Links(HDA/HDMI)" | ||
| depends on SND_SOC_SOF_HDA_COMMON | ||
| select SND_HDA_EXT_CORE | ||
| select SND_SOC_HDAC_HDA | ||
| select SND_SOC_HDAC_HDMI | ||
| if SND_SOC_SOF_HDA_COMMON | ||
| config SND_SOC_SOF_HDA_LINK | ||
| bool "SOF support for HDA Links(HDA/HDMI)" | ||
| help | ||
| This adds support for HDA links(HDA/HDMI) with Sound Open Firmware | ||
| for Intel(R) platforms. | ||
| Say Y if you want to enble HDA links with SOF. | ||
| If unsure select "N". | ||
| if SND_SOC_SOF_HDA_LINK | ||
| config SND_SOC_SOF_HDA_AUDIO_CODEC | ||
| bool "SOF support for HDAudio codecs" | ||
| help | ||
| This adds support for HDAudio codecs with Sound Open Firmware | ||
| for Intel(R) platforms. | ||
| Say Y if you want to enble HDAudio codecs with SOF. | ||
| If unsure select "N". | ||
| endif ## SND_SOC_SOF_HDA_LINK | ||
| endif ## SND_SOC_SOF_HDA_COMMON | ||
| config SND_SOC_SOF_HDA_LINK_BASELINE | ||
| tristate | ||
| select SND_SOC_SOF_HDA if SND_SOC_SOF_HDA_LINK | ||
| config SND_SOC_SOF_HDA | ||
| tristate | ||
| select SND_HDA_EXT_CORE if SND_SOC_SOF_HDA_LINK | ||
| select SND_SOC_HDAC_HDA if SND_SOC_SOF_HDA_AUDIO_CODEC | ||
plbossart marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| endif ## SND_SOC_SOF_INTEL | ||
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
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
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.
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.
We don't have HDMI BE dai_links in cnl_rt274.c now so no need this adding?
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.
Ah yes, this was added in a prototype code. Will remove all this anyways.