mbox series

[00/11] ASoC/soundwire: add initial support for SDCA

Message ID 20241016102333.294448-1-yung-chuan.liao@linux.intel.com (mailing list archive)
Headers show
Series ASoC/soundwire: add initial support for SDCA | expand

Message

Bard Liao Oct. 16, 2024, 10:23 a.m. UTC
We need to get rt712 version by reading SDCA version and functions.
This patch series adds initial support for SDCA and add a helper to tell
if the codec is RT712_VB.

This series may go via the ASoC tree with Vinod's Acked-by tag.

Bard Liao (1):
  soundwire: sdw_intel: include linux/acpi.h

Pierre-Louis Bossart (10):
  ASoC/soundwire: remove sdw_slave_extended_id
  ASoC: SDCA: add initial module
  soundwire: slave: lookup SDCA version and functions
  ASoC: SDCA: add quirk function for RT712_VB match
  ASoC: rt712-sdca: detect the SMART_MIC function during the probe stage
  ASoC: soc-acpi: introduce new 'machine check' callback
  ASoC: sdw_utils: add SmartMic DAI for RT712 VB
  ASoC: sdw_utils: add SmartMic DAI for RT713 VB
  ASoC: Intel: soc-acpi: add is_device_rt712_vb() helper
  ASoC: SOF: Intel: hda: use machine_check() for SoundWire

 drivers/soundwire/Kconfig                     |   1 +
 drivers/soundwire/amd_init.c                  |  12 +-
 drivers/soundwire/intel_init.c                |  13 +-
 drivers/soundwire/slave.c                     |  14 ++
 include/linux/soundwire/sdw.h                 |   9 +-
 include/linux/soundwire/sdw_amd.h             |   7 +-
 include/linux/soundwire/sdw_intel.h           |   8 +-
 include/sound/sdca.h                          |  62 +++++++
 include/sound/sdca_function.h                 |  55 ++++++
 include/sound/soc-acpi.h                      |   8 +-
 sound/soc/Kconfig                             |   1 +
 sound/soc/Makefile                            |   1 +
 sound/soc/amd/ps/pci-ps.c                     |   3 +-
 sound/soc/codecs/rt712-sdca-sdw.c             |   1 +
 sound/soc/codecs/rt712-sdca.c                 |  38 +++-
 sound/soc/codecs/rt712-sdca.h                 |   1 +
 sound/soc/intel/Kconfig                       |   5 +
 sound/soc/intel/common/Makefile               |   3 +
 .../intel/common/soc-acpi-intel-mtl-match.c   |  51 ++++++
 .../intel/common/soc-acpi-intel-sdca-quirks.c |  42 +++++
 .../intel/common/soc-acpi-intel-sdca-quirks.h |  14 ++
 sound/soc/sdca/Kconfig                        |  11 ++
 sound/soc/sdca/Makefile                       |   5 +
 sound/soc/sdca/sdca_device.c                  |  67 +++++++
 sound/soc/sdca/sdca_functions.c               | 173 ++++++++++++++++++
 sound/soc/sdw_utils/soc_sdw_utils.c           |  18 +-
 sound/soc/soc-acpi.c                          |  30 +--
 sound/soc/sof/amd/acp-common.c                |   3 +-
 sound/soc/sof/intel/hda.c                     |  19 +-
 29 files changed, 610 insertions(+), 65 deletions(-)
 create mode 100644 include/sound/sdca.h
 create mode 100644 include/sound/sdca_function.h
 create mode 100644 sound/soc/intel/common/soc-acpi-intel-sdca-quirks.c
 create mode 100644 sound/soc/intel/common/soc-acpi-intel-sdca-quirks.h
 create mode 100644 sound/soc/sdca/Kconfig
 create mode 100644 sound/soc/sdca/Makefile
 create mode 100644 sound/soc/sdca/sdca_device.c
 create mode 100644 sound/soc/sdca/sdca_functions.c

Comments

Mark Brown Oct. 18, 2024, 9:30 p.m. UTC | #1
On Wed, 16 Oct 2024 18:23:22 +0800, Bard Liao wrote:
> We need to get rt712 version by reading SDCA version and functions.
> This patch series adds initial support for SDCA and add a helper to tell
> if the codec is RT712_VB.
> 
> This series may go via the ASoC tree with Vinod's Acked-by tag.
> 
> Bard Liao (1):
>   soundwire: sdw_intel: include linux/acpi.h
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[01/11] soundwire: sdw_intel: include linux/acpi.h
        commit: f35533a0e60946ee3fb8adccf8a36024c6f1fe40
[02/11] ASoC/soundwire: remove sdw_slave_extended_id
        commit: 4b224ff80d6609811ec6ab5406a16c92825cfb1a
[03/11] ASoC: SDCA: add initial module
        commit: 3a513da1ae33972e59efeef7908061f1f24af480
[04/11] soundwire: slave: lookup SDCA version and functions
        commit: 0c673d2862534955241f339d7331f384b5ea44af
[05/11] ASoC: SDCA: add quirk function for RT712_VB match
        commit: fdb220399177177917dce52063b326a191a35a02
[06/11] ASoC: rt712-sdca: detect the SMART_MIC function during the probe stage
        commit: 9aa6df9cb82e8fd44132c481afc76eb7a7dbc398
[07/11] ASoC: soc-acpi: introduce new 'machine check' callback
        commit: dcf4694f200a67784e053eb5d1d70a191761ff4f
[08/11] ASoC: sdw_utils: add SmartMic DAI for RT712 VB
        commit: 9489db97f6f0d78c26eef8e7fc9c1371cef97b82
[09/11] ASoC: sdw_utils: add SmartMic DAI for RT713 VB
        commit: 7d6f2d5254b1786c8b3bd64c6295b14e1607965d
[10/11] ASoC: Intel: soc-acpi: add is_device_rt712_vb() helper
        commit: 5703ab86ff7bf079aa1ddf7a65b9727d0249383a
[11/11] ASoC: SOF: Intel: hda: use machine_check() for SoundWire
        commit: e92edcf8023d425c7abcf1d7abb5dcac53d106f5

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark