A couple of new boards, one DMI quirk fix and a nice cleanup from Brent Lu to make all HDMI stuff common across drivers.
Balamurugan C (1): ASoC: Intel: MTL: Add entry for HDMI-In capture support to non-I2S codec boards.
Bard Liao (4): ASoC: Intel: soc-acpi-intel-rpl-match: add rt711-l0-rt1316-l12 support ASoC: Intel: soc-acpi-intel-mtl-match: add rt713 rt1316 config ASoC: Intel: sof_sdw_rt_sdca_jack_common: add rt713 support ASoC: Intel: sof_sdw_rt712_sdca: construct cards->components by name_prefix
Brent Lu (17): ASoC: Intel: sof_cs42l42: remove hdac-hdmi support ASoC: Intel: sof_da7219: remove hdac-hdmi support ASoC: Intel: sof_nau8825: remove hdac-hdmi support ASoC: Intel: sof_rt5682: remove hdac-hdmi support ASoC: Intel: sof_ssp_amp: remove hdac-hdmi support ASoC: Intel: sof_hdmi: add common header for HDMI ASoC: Intel: sof_cs42l42: use sof_hdmi_private to init HDMI ASoC: Intel: sof_da7219: use sof_hdmi_private to init HDMI ASoC: Intel: sof_nau8825: use sof_hdmi_private to init HDMI ASoC: Intel: sof_rt5682: use sof_hdmi_private to init HDMI ASoC: Intel: sof_sdw: use sof_hdmi_private to init HDMI ASoC: Intel: sof_ssp_amp: use sof_hdmi_private to init HDMI ASoC: Intel: board_helpers: new module for common functions ASoC: Intel: sof_cs42l42: use common module for HDMI link ASoC: Intel: sof_nau8825: use common module for HDMI link ASoC: Intel: sof_rt5682: use common module for HDMI link ASoC: Intel: sof_ssp_amp: use common module for HDMI link
Pierre-Louis Bossart (1): ASoC: Intel: sof_sdw: update HP Omen match
sound/soc/intel/boards/Kconfig | 11 +- sound/soc/intel/boards/Makefile | 3 + sound/soc/intel/boards/sof_board_helpers.c | 112 +++++++++++ sound/soc/intel/boards/sof_board_helpers.h | 54 +++++ sound/soc/intel/boards/sof_cs42l42.c | 184 +++--------------- sound/soc/intel/boards/sof_da7219.c | 40 ++-- sound/soc/intel/boards/sof_hdmi_common.h | 24 +++ sound/soc/intel/boards/sof_nau8825.c | 124 +++--------- sound/soc/intel/boards/sof_rt5682.c | 184 ++++-------------- sound/soc/intel/boards/sof_sdw.c | 14 +- sound/soc/intel/boards/sof_sdw_common.h | 4 +- sound/soc/intel/boards/sof_sdw_hdmi.c | 30 +-- sound/soc/intel/boards/sof_sdw_rt712_sdca.c | 6 +- .../boards/sof_sdw_rt_sdca_jack_common.c | 8 + sound/soc/intel/boards/sof_ssp_amp.c | 176 ++++------------- .../intel/common/soc-acpi-intel-mtl-match.c | 72 +++++++ .../intel/common/soc-acpi-intel-rpl-match.c | 25 +++ 17 files changed, 458 insertions(+), 613 deletions(-) create mode 100644 sound/soc/intel/boards/sof_board_helpers.c create mode 100644 sound/soc/intel/boards/sof_board_helpers.h create mode 100644 sound/soc/intel/boards/sof_hdmi_common.h