-
Notifications
You must be signed in to change notification settings - Fork 140
ALSA: hda: intel-dsp-config: add Alder Lake support #2675
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
ALSA: hda: intel-dsp-config: add Alder Lake support #2675
Conversation
Add rules to select SOF driver for Alder Lake systems if a digital microphone or SoundWire codecs are present in the system. This is following same rules as for older Tiger Lake systems. Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
|
@plbossart I split this dspconfig to a separate PR so we can perhaps discuss the approach. E.g. do we still keep adding separate kconfig options for each Intel PCI SOF platform? It feels a bit odd to keep adding the same PCI ids to three places, all guarded by the same ifdefs. OTOH, this probably is orthogonal to adding ADL support as a change to this approach would apply to old platforms as well. |
| { | ||
| .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE, | ||
| .device = 0x51c8, | ||
| }, |
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.
I think there were patches recently, enabling SOF on TGL unconditionally since SST doesn't support TGL. Does SST support ADL?
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.
@lyakh We talked about is TGL+, so I think NO for ADL here.
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.
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.
Add rules to select SOF driver for Alder Lake systems if a digital
microphone or SoundWire codecs are present in the system. This is
following same rules as for older Tiger Lake systems.
Signed-off-by: Kai Vehmanen kai.vehmanen@linux.intel.com