Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Kai Vehmanen <kai.vehmanen@linux.intel.com>,
	alsa-devel@alsa-project.org,  tiwai@suse.de
Cc: Mark Brown <broonie@kernel.org>
Subject: Re: [alsa-devel] [PATCH v4 0/9] adapt SOF to use snd-hda-codec-hdmi
Date: Mon, 16 Sep 2019 10:59:06 -0500	[thread overview]
Message-ID: <5579b62d-d949-ec62-0a85-45d0842af38f@linux.intel.com> (raw)
In-Reply-To: <20190912142200.8031-1-kai.vehmanen@linux.intel.com>

On 9/12/19 9:21 AM, Kai Vehmanen wrote:
> Hi all,
> 
> here's the 4th round for this series that adapts SOF to use
> snd-hda-codec-hdmi (patch_hdmi.c) codec driver instead of hdac_hdmi
> (soc/codecs/hdac_hdmi.c). The primary goal is to unify the HDMI codec
> implementation between DSP and non-DSP HDA configurations, offer same
> interface to user-space and reduce maintenance load for all.

The series looks good to me so

Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>

I would recommend that we have a matching change for the Skylake driver 
and validation that both SOF and cAVS/SST drivers can operate with this 
mode set. Our goal is still to have coexistence between the two drivers 
in a single build/distro, e.g. cAVS for SKL/KBL/APL and SOF for newer 
platforms. This can be done in a follow-up patch but it needs to be done 
before distros start selecting this common HDMI mode.

The other concern I have is that we have other changes coming for 
soc-acpi and machine drivers to deal with SoundWire, so it'd be nice to 
have the changes mirrored between Mark and Takashi trees e.g. with the 
merge of a fixed branch.

> 
> v4 changes:
> - Change order of patches to not break bisect (Pierre's feedback).
> - Improve the explanation in commit message for
>    mst_no_extra_pcms, patch 1. (Pierre's feedback).
> - Fix errors in PCM constraints for HDMI (Pierre's feedback).
> - Fix an issue on Ice Lake platforms (patch 3).
> 
> Feature and testing info:
>   - Tested on multiple Intel platforms supported by SOF.
>   - Tested with ALSA console tools as well as with Pulseaudio.
>        - requires Pulseaudio 12.x or newer, see
>          https://lists.freedesktop.org/archives/pulseaudio-discuss/2019-August/031358.html
>   - HDMI, DP, DP-MST with multi-monitor use-scenarios work ok.
>   - New feature for SOF: ELD /proc fs works just like in
>     DSP-less mode.
>   - New feature for SOF: jack detection works out-of-the-box
>     with Pulseaudio (no need for card specific UCM for HDMI)
> 
> Kai Vehmanen (9):
>    ALSA: hda/hdmi - implement mst_no_extra_pcms flag
>    ASoC: hdac_hda: add support for HDMI/DP as a HDA codec
>    ASoC: Intel: skl-hda-dsp-generic: use snd-hda-codec-hdmi
>    ASoC: Intel: skl-hda-dsp-generic: fix include guard name
>    ASoC: SOF: Intel: add support for snd-hda-codec-hdmi
>    ASoC: Intel: bxt-da7219-max98357a: common hdmi codec support
>    ASoC: Intel: glk_rt5682_max98357a: common hdmi codec support
>    ASoC: intel: sof_rt5682: common hdmi codec support
>    ASoC: Intel: bxt_rt298: common hdmi codec support
> 
>   include/sound/hda_codec.h                     |   1 +
>   include/sound/soc-acpi.h                      |   2 +
>   sound/pci/hda/patch_hdmi.c                    |  19 +++-
>   sound/soc/codecs/hdac_hda.c                   | 100 +++++++++++++++---
>   sound/soc/codecs/hdac_hda.h                   |  12 ++-
>   sound/soc/intel/boards/bxt_da7219_max98357a.c |  11 ++
>   sound/soc/intel/boards/bxt_rt298.c            |  11 ++
>   sound/soc/intel/boards/glk_rt5682_max98357a.c |  11 ++
>   sound/soc/intel/boards/hda_dsp_common.h       |  93 ++++++++++++++++
>   sound/soc/intel/boards/skl_hda_dsp_common.c   |  10 +-
>   sound/soc/intel/boards/skl_hda_dsp_common.h   |  27 ++++-
>   sound/soc/intel/boards/skl_hda_dsp_generic.c  |   1 +
>   sound/soc/intel/boards/sof_rt5682.c           |  11 ++
>   sound/soc/sof/intel/Kconfig                   |  10 ++
>   sound/soc/sof/intel/hda-codec.c               |  19 +++-
>   sound/soc/sof/intel/hda.c                     |   6 ++
>   sound/soc/sof/intel/hda.h                     |   6 +-
>   17 files changed, 323 insertions(+), 27 deletions(-)
>   create mode 100644 sound/soc/intel/boards/hda_dsp_common.h
> 

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

  parent reply	other threads:[~2019-09-16 16:00 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-12 14:21 [alsa-devel] [PATCH v4 0/9] adapt SOF to use snd-hda-codec-hdmi Kai Vehmanen
2019-09-12 14:21 ` [alsa-devel] [PATCH v4 1/9] ALSA: hda/hdmi - implement mst_no_extra_pcms flag Kai Vehmanen
2019-09-15  9:39   ` Takashi Iwai
2019-09-12 14:21 ` [alsa-devel] [PATCH v4 2/9] ASoC: hdac_hda: add support for HDMI/DP as a HDA codec Kai Vehmanen
2019-09-12 14:21 ` [alsa-devel] [PATCH v4 3/9] ASoC: Intel: skl-hda-dsp-generic: use snd-hda-codec-hdmi Kai Vehmanen
2019-09-12 14:21 ` [alsa-devel] [PATCH v4 4/9] ASoC: Intel: skl-hda-dsp-generic: fix include guard name Kai Vehmanen
2019-09-12 14:21 ` [alsa-devel] [PATCH v4 5/9] ASoC: SOF: Intel: add support for snd-hda-codec-hdmi Kai Vehmanen
2019-09-12 14:21 ` [alsa-devel] [PATCH v4 6/9] ASoC: Intel: bxt-da7219-max98357a: common hdmi codec support Kai Vehmanen
2019-09-12 14:21 ` [alsa-devel] [PATCH v4 7/9] ASoC: Intel: glk_rt5682_max98357a: " Kai Vehmanen
2019-09-12 14:21 ` [alsa-devel] [PATCH v4 8/9] ASoC: intel: sof_rt5682: " Kai Vehmanen
2019-09-12 14:22 ` [alsa-devel] [PATCH v4 9/9] ASoC: Intel: bxt_rt298: " Kai Vehmanen
2019-09-16 15:59 ` Pierre-Louis Bossart [this message]
2019-09-16 19:36   ` [alsa-devel] [PATCH v4 0/9] adapt SOF to use snd-hda-codec-hdmi Takashi Iwai
2019-09-16 20:01     ` Pierre-Louis Bossart
2019-09-17 14:32     ` Kai Vehmanen
2019-09-17 11:32   ` Kai Vehmanen
2019-09-17 14:38     ` Pierre-Louis Bossart

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5579b62d-d949-ec62-0a85-45d0842af38f@linux.intel.com \
    --to=pierre-louis.bossart@linux.intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=kai.vehmanen@linux.intel.com \
    --cc=tiwai@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox