mbox series

[00/11,SRU,Lunar/OEM-6.0] Soundwire support for the Intel RPL Gen platforms

Message ID 20221205151020.122547-1-vicamo.yang@canonical.com
Headers show
Series Soundwire support for the Intel RPL Gen platforms | expand

Message

You-Sheng Yang Dec. 5, 2022, 3:10 p.m. UTC
From: "You-Sheng Yang (vicamo)" <vicamo.yang@canonical.com>

BugLink: https://bugs.launchpad.net/bugs/1997944

[Impact]

Need soundwire support for the Intel RPL Gen platforms, specifically
0C10/0C4F/0C11. 0C40 added due to dependency.

[Fix]

Fixes from linux-next for v6.2, as well as those for firmware-sof and
alsa-ucm-conf.

[Test Case]

All the fixes are currently packaged in experimental kernel/firmware
PPAs. Install the latest ones and check audio functions.

[Where problems could occur]

Most of the patches add model information only, and they'd only take
effect on platforms with the corresponding hardware pieces.

[Other Info]

Nominated for Unstable/Lunar and OEM-6.0.

Bard Liao (1):
  ASoC: Intel: soc-acpi-intel-rpl-match: add rpl_sdca_3_in_1 support

Gongjun Song (8):
  ASoC: Intel: sof_sdw: Add support for SKU 0C10 product
  ASoC: Intel: soc-acpi: add SKU 0C10 SoundWire configuration
  ASoC: Intel: sof_sdw: Add support for SKU 0C40 product
  ASoC: Intel: soc-acpi: add SKU 0C40 SoundWire configuration
  ASoC: Intel: sof_sdw: Add support for SKU 0C4F product
  ASoC: intel: sof_sdw: add rt1318 codec support.
  ASoC: Intel: sof_sdw: Add support for SKU 0C11 product
  ASoC: Intel: soc-acpi: add SKU 0C11 SoundWire configuration

Shuming Fan (1):
  ASoC: rt1318: Add RT1318 SDCA vendor-specific driver

You-Sheng Yang (vicamo) (1):
  UBUNTU: [Config] enable CONFIG_SND_SOC_RT1318_SDW

 debian.oem/config/annotations                 |   1 +
 debian.oem/config/config.common.ubuntu        |   1 +
 sound/soc/codecs/Kconfig                      |   6 +
 sound/soc/codecs/Makefile                     |   2 +
 sound/soc/codecs/rt1318-sdw.c                 | 884 ++++++++++++++++++
 sound/soc/codecs/rt1318-sdw.h                 | 101 ++
 sound/soc/intel/boards/Kconfig                |   1 +
 sound/soc/intel/boards/Makefile               |   4 +-
 sound/soc/intel/boards/sof_sdw.c              |  48 +
 sound/soc/intel/boards/sof_sdw_common.h       |   7 +
 sound/soc/intel/boards/sof_sdw_rt1318.c       | 120 +++
 .../intel/common/soc-acpi-intel-rpl-match.c   | 237 +++++
 12 files changed, 1410 insertions(+), 2 deletions(-)
 create mode 100644 sound/soc/codecs/rt1318-sdw.c
 create mode 100644 sound/soc/codecs/rt1318-sdw.h
 create mode 100644 sound/soc/intel/boards/sof_sdw_rt1318.c

Comments

You-Sheng Yang Dec. 9, 2022, 2:16 a.m. UTC | #1
To submit a V2 to include one more patch merged in the upstream yesterday.

On Mon, Dec 5, 2022 at 11:10 PM You-Sheng Yang
<vicamo.yang@canonical.com> wrote:
>
> From: "You-Sheng Yang (vicamo)" <vicamo.yang@canonical.com>
>
> BugLink: https://bugs.launchpad.net/bugs/1997944
>
> [Impact]
>
> Need soundwire support for the Intel RPL Gen platforms, specifically
> 0C10/0C4F/0C11. 0C40 added due to dependency.
>
> [Fix]
>
> Fixes from linux-next for v6.2, as well as those for firmware-sof and
> alsa-ucm-conf.
>
> [Test Case]
>
> All the fixes are currently packaged in experimental kernel/firmware
> PPAs. Install the latest ones and check audio functions.
>
> [Where problems could occur]
>
> Most of the patches add model information only, and they'd only take
> effect on platforms with the corresponding hardware pieces.
>
> [Other Info]
>
> Nominated for Unstable/Lunar and OEM-6.0.
>
> Bard Liao (1):
>   ASoC: Intel: soc-acpi-intel-rpl-match: add rpl_sdca_3_in_1 support
>
> Gongjun Song (8):
>   ASoC: Intel: sof_sdw: Add support for SKU 0C10 product
>   ASoC: Intel: soc-acpi: add SKU 0C10 SoundWire configuration
>   ASoC: Intel: sof_sdw: Add support for SKU 0C40 product
>   ASoC: Intel: soc-acpi: add SKU 0C40 SoundWire configuration
>   ASoC: Intel: sof_sdw: Add support for SKU 0C4F product
>   ASoC: intel: sof_sdw: add rt1318 codec support.
>   ASoC: Intel: sof_sdw: Add support for SKU 0C11 product
>   ASoC: Intel: soc-acpi: add SKU 0C11 SoundWire configuration
>
> Shuming Fan (1):
>   ASoC: rt1318: Add RT1318 SDCA vendor-specific driver
>
> You-Sheng Yang (vicamo) (1):
>   UBUNTU: [Config] enable CONFIG_SND_SOC_RT1318_SDW
>
>  debian.oem/config/annotations                 |   1 +
>  debian.oem/config/config.common.ubuntu        |   1 +
>  sound/soc/codecs/Kconfig                      |   6 +
>  sound/soc/codecs/Makefile                     |   2 +
>  sound/soc/codecs/rt1318-sdw.c                 | 884 ++++++++++++++++++
>  sound/soc/codecs/rt1318-sdw.h                 | 101 ++
>  sound/soc/intel/boards/Kconfig                |   1 +
>  sound/soc/intel/boards/Makefile               |   4 +-
>  sound/soc/intel/boards/sof_sdw.c              |  48 +
>  sound/soc/intel/boards/sof_sdw_common.h       |   7 +
>  sound/soc/intel/boards/sof_sdw_rt1318.c       | 120 +++
>  .../intel/common/soc-acpi-intel-rpl-match.c   | 237 +++++
>  12 files changed, 1410 insertions(+), 2 deletions(-)
>  create mode 100644 sound/soc/codecs/rt1318-sdw.c
>  create mode 100644 sound/soc/codecs/rt1318-sdw.h
>  create mode 100644 sound/soc/intel/boards/sof_sdw_rt1318.c
>
> --
> 2.37.2
>
>
> --
> kernel-team mailing list
> kernel-team@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/kernel-team