-
Notifications
You must be signed in to change notification settings - Fork 140
load topology for each device #5209
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
000f84c
d1b73da
d120514
02e5843
4eec7c7
e2ffe65
32141fb
2543aa4
318e591
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 |
|---|---|---|
|
|
@@ -8,6 +8,7 @@ | |
|
|
||
| #include <sound/soc-acpi.h> | ||
| #include <sound/soc-acpi-intel-match.h> | ||
| #include "sof-function-topology-lib.h" | ||
| #include "soc-acpi-intel-sdca-quirks.h" | ||
| #include "soc-acpi-intel-sdw-mockup-match.h" | ||
|
|
||
|
|
@@ -575,6 +576,7 @@ struct snd_soc_acpi_mach snd_soc_acpi_intel_lnl_sdw_machines[] = { | |
| .links = lnl_cs42l43_l0, | ||
| .drv_name = "sof_sdw", | ||
| .sof_tplg_filename = "sof-lnl-cs42l43-l0.tplg", | ||
| .get_function_tplg_files = sof_sdw_get_tplg_files, | ||
|
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. the commit messages for the match files also needs update s/get_tplg_files/get_function_tplg_files
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. commit message: s/get_tplg_function_files/get_function_tplg_files |
||
| }, | ||
| { | ||
| .link_mask = BIT(0), | ||
|
|
@@ -593,6 +595,7 @@ struct snd_soc_acpi_mach snd_soc_acpi_intel_lnl_sdw_machines[] = { | |
| .links = lnl_rt722_only, | ||
| .drv_name = "sof_sdw", | ||
| .sof_tplg_filename = "sof-lnl-rt722-l0.tplg", | ||
| .get_function_tplg_files = sof_sdw_get_tplg_files, | ||
| }, | ||
| { | ||
| .link_mask = GENMASK(2, 0), | ||
|
|
@@ -611,14 +614,16 @@ struct snd_soc_acpi_mach snd_soc_acpi_intel_lnl_sdw_machines[] = { | |
| .links = lnl_sdw_rt712_vb_l2_rt1320_l1, | ||
| .drv_name = "sof_sdw", | ||
| .machine_check = snd_soc_acpi_intel_sdca_is_device_rt712_vb, | ||
| .sof_tplg_filename = "sof-lnl-rt712-l2-rt1320-l1.tplg" | ||
| .sof_tplg_filename = "sof-lnl-rt712-l2-rt1320-l1.tplg", | ||
| .get_function_tplg_files = sof_sdw_get_tplg_files, | ||
| }, | ||
| { | ||
| .link_mask = BIT(1) | BIT(2) | BIT(3), | ||
| .links = lnl_sdw_rt713_vb_l2_rt1320_l13, | ||
| .drv_name = "sof_sdw", | ||
| .machine_check = snd_soc_acpi_intel_sdca_is_device_rt712_vb, | ||
| .sof_tplg_filename = "sof-lnl-rt713-l2-rt1320-l13.tplg" | ||
| .sof_tplg_filename = "sof-lnl-rt713-l2-rt1320-l13.tplg", | ||
| .get_function_tplg_files = sof_sdw_get_tplg_files, | ||
| }, | ||
| {}, | ||
| }; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.