All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Rojewski, Cezary" <cezary.rojewski@intel.com>
To: "Amadeusz Sławiński" <amadeuszx.slawinski@linux.intel.com>,
	"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>
Cc: "Hejmowski, Krzysztof" <krzysztof.hejmowski@intel.com>,
	"Kaczmarski, Filip" <filip.kaczmarski@intel.com>,
	"N, Harshapriya" <harshapriya.n@intel.com>,
	"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
	"ppapierkowski@habana.ai" <ppapierkowski@habana.ai>,
	"Barlik, Marcin" <marcin.barlik@intel.com>,
	"zwisler@google.com" <zwisler@google.com>,
	"pierre-louis.bossart@linux.intel.com"
	<pierre-louis.bossart@linux.intel.com>,
	"lgirdwood@gmail.com" <lgirdwood@gmail.com>,
	"Proborszcz, Filip" <filip.proborszcz@intel.com>,
	"broonie@kernel.org" <broonie@kernel.org>,
	"Wasko, Michal" <michal.wasko@intel.com>,
	"tiwai@suse.com" <tiwai@suse.com>,
	"andriy.shevchenko@linux.intel.com"
	<andriy.shevchenko@linux.intel.com>,
	"cujomalainey@chromium.org" <cujomalainey@chromium.org>,
	"Gopal, Vamshi Krishna" <vamshi.krishna.gopal@intel.com>
Subject: RE: [PATCH v9 14/14] ASoC: Intel: Select catpt and deprecate haswell
Date: Tue, 29 Sep 2020 13:38:36 +0000	[thread overview]
Message-ID: <9c78266e31c5432eb9a087964779b260@intel.com> (raw)
In-Reply-To: <5a09acbd83764f7fa06acd6e4aa9c7f5@intel.com>

On 2020-09-29 3:09 PM, Rojewski, Cezary wrote:
> On 2020-09-29 1:49 PM, Amadeusz Sławiński wrote:
>> On 9/26/2020 10:59 AM, Cezary Rojewski wrote:
>>> Prevent sound/soc/intel/haswell code compile and select catpt instead as
>>> a recommended solution. Userspace-exposed members are compatible with
>>> what is exposed by deprecated solution thus no harm is done. The only
>>> visible difference is the newly added 'Loopback Mute' kcontrol.
>>>
>>> Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com>
>>> ---
>>>
>>> Changes in v7:
>>> - patch: 10/14 'ASoC: Intel: Select catpt and deprecate haswell' has
>>>     been moved to the back of the list: enable catpt after machine boards
>>>     have been prepared for it first
>>>
>>> Changes in v5:
>>> - remove DMADEVICES depends on: DW_DMAC_CORE already covers that
>>> - add optional COMPILE_TEST depends on
>>>
>>>    sound/soc/intel/Kconfig        | 24 ++++++++++++------------
>>>    sound/soc/intel/Makefile       |  2 +-
>>>    sound/soc/intel/boards/Kconfig |  8 ++++----
>>>    sound/soc/intel/catpt/Makefile |  6 ++++++
>>>    4 files changed, 23 insertions(+), 17 deletions(-)
>>>    create mode 100644 sound/soc/intel/catpt/Makefile
>>>
>>> diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig
>>> index 0e48c4f532ce..dfc20f2bb859 100644
>>> --- a/sound/soc/intel/Kconfig
>>> +++ b/sound/soc/intel/Kconfig
>>> @@ -47,21 +47,21 @@ config SND_SOC_INTEL_SST_FIRMWARE
>>>        # Haswell/Broadwell/Baytrail legacy and will be set
>>>        # when these platforms are enabled
>>> -config SND_SOC_INTEL_HASWELL
>>> -    tristate "Haswell/Broadwell Platforms"
>>> +config SND_SOC_INTEL_CATPT
>>> +    tristate "Haswell and Broadwell"
>>> +    depends on ACPI || COMPILE_TEST
>>
>> We may want to limit building only to x86 platforms here.
>>
> 
> Agreed.
> 
> depends on (X86 && ACPI) || COMPILE_TEST
> it is then.
> 

After re-checking, _CATPT is dependent (found within an 'if') upon
_SST_TOPLEVEL config which already consists of:
	depends on X86 || COMPILE_TEST

so no changes are necessary.

Thanks,
Czarek


      reply	other threads:[~2020-09-29 13:39 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-26  8:58 [PATCH v9 00/14] ASoC: Intel: Catpt - Lynx and Wildcat point Cezary Rojewski
2020-09-26  8:58 ` [PATCH v9 01/14] ASoC: Intel: Add catpt base members Cezary Rojewski
2020-09-26  8:58 ` [PATCH v9 02/14] ASoC: Intel: catpt: Implement IPC protocol Cezary Rojewski
2020-09-28 13:44   ` Andy Shevchenko
2020-09-28 16:52     ` Rojewski, Cezary
2020-09-29  8:46       ` Andy Shevchenko
2020-09-29  9:39         ` Rojewski, Cezary
2020-09-29 10:43           ` Andy Shevchenko
2020-09-26  8:58 ` [PATCH v9 03/14] ASoC: Intel: catpt: Add IPC message handlers Cezary Rojewski
2020-09-26  8:59 ` [PATCH v9 04/14] ASoC: Intel: catpt: Define DSP operations Cezary Rojewski
2020-09-26  8:59 ` [PATCH v9 05/14] ASoC: Intel: catpt: Firmware loading and context restore Cezary Rojewski
2020-09-26  8:59 ` [PATCH v9 06/14] ASoC: Intel: catpt: PCM operations Cezary Rojewski
2020-09-29 11:33   ` Andy Shevchenko
2020-09-29 13:26     ` Rojewski, Cezary
2020-09-29 16:46       ` Andy Shevchenko
2020-09-26  8:59 ` [PATCH v9 07/14] ASoC: Intel: catpt: Device driver lifecycle Cezary Rojewski
2020-09-26  8:59 ` [PATCH v9 08/14] ASoC: Intel: catpt: Event tracing Cezary Rojewski
2020-09-26  8:59 ` [PATCH v9 09/14] ASoC: Intel: catpt: Simple sysfs attributes Cezary Rojewski
2020-09-28 13:03   ` Andy Shevchenko
2020-09-26  8:59 ` [PATCH v9 10/14] ASoC: Intel: haswell: Remove haswell-solution specific code Cezary Rojewski
2020-09-26  8:59 ` [PATCH v9 11/14] ASoC: Intel: broadwell: " Cezary Rojewski
2020-09-26  8:59 ` [PATCH v9 12/14] ASoC: Intel: bdw-5650: " Cezary Rojewski
2020-09-26  8:59 ` [PATCH v9 13/14] ASoC: Intel: bdw-5677: " Cezary Rojewski
2020-09-26  8:59 ` [PATCH v9 14/14] ASoC: Intel: Select catpt and deprecate haswell Cezary Rojewski
2020-09-29 11:49   ` Amadeusz Sławiński
2020-09-29 13:09     ` Rojewski, Cezary
2020-09-29 13:38       ` Rojewski, Cezary [this message]

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=9c78266e31c5432eb9a087964779b260@intel.com \
    --to=cezary.rojewski@intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=amadeuszx.slawinski@linux.intel.com \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=broonie@kernel.org \
    --cc=cujomalainey@chromium.org \
    --cc=filip.kaczmarski@intel.com \
    --cc=filip.proborszcz@intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=harshapriya.n@intel.com \
    --cc=krzysztof.hejmowski@intel.com \
    --cc=lgirdwood@gmail.com \
    --cc=marcin.barlik@intel.com \
    --cc=michal.wasko@intel.com \
    --cc=pierre-louis.bossart@linux.intel.com \
    --cc=ppapierkowski@habana.ai \
    --cc=tiwai@suse.com \
    --cc=vamshi.krishna.gopal@intel.com \
    --cc=zwisler@google.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.