From: Vinod Koul <vkoul@kernel.org>
To: Vijendar Mukunda <Vijendar.Mukunda@amd.com>
Cc: alsa-devel@alsa-project.org,
pierre-louis.bossart@linux.intel.com,
Basavaraj.Hiregoudar@amd.com, Sunil-kumar.Dommati@amd.com,
Mario.Limonciello@amd.com, amadeuszx.slawinski@linux.intel.com,
Mastan.Katragadda@amd.com, Arungopal.kondaveeti@amd.com,
claudiu.beznea@microchip.com,
Bard Liao <yung-chuan.liao@linux.intel.com>,
Sanyog Kale <sanyog.r.kale@intel.com>,
open list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH V6 4/8] soundwire: amd: enable build for AMD SoundWire manager driver
Date: Wed, 15 Mar 2023 15:29:17 +0530 [thread overview]
Message-ID: <ZBGW9ThXgcT0tIui@matsya> (raw)
In-Reply-To: <20230307133135.545952-5-Vijendar.Mukunda@amd.com>
On 07-03-23, 19:01, Vijendar Mukunda wrote:
> Enable build for SoundWire manager driver for AMD platforms.
>
> Signed-off-by: Vijendar Mukunda <Vijendar.Mukunda@amd.com>
> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
> Link: https://lore.kernel.org/lkml/20230220100418.76754-5-Vijendar.Mukunda@amd.com
> ---
> drivers/soundwire/Kconfig | 10 ++++++++++
> drivers/soundwire/Makefile | 4 ++++
> 2 files changed, 14 insertions(+)
>
> diff --git a/drivers/soundwire/Kconfig b/drivers/soundwire/Kconfig
> index 2b7795233282..983afe3570b2 100644
> --- a/drivers/soundwire/Kconfig
> +++ b/drivers/soundwire/Kconfig
> @@ -46,4 +46,14 @@ config SOUNDWIRE_QCOM
> config SOUNDWIRE_GENERIC_ALLOCATION
> tristate
>
> +config SOUNDWIRE_AMD
> + tristate "AMD SoundWire Manager driver"
Alphabetically sorted please
> + select SOUNDWIRE_GENERIC_ALLOCATION
> + depends on ACPI && SND_SOC
> + help
> + SoundWire AMD Manager driver.
> + If you have an AMD platform which has a SoundWire Manager then
> + enable this config option to get the SoundWire support for that
> + device.
> +
> endif
> diff --git a/drivers/soundwire/Makefile b/drivers/soundwire/Makefile
> index ca97414ada70..5956229d3eb3 100644
> --- a/drivers/soundwire/Makefile
> +++ b/drivers/soundwire/Makefile
> @@ -26,3 +26,7 @@ obj-$(CONFIG_SOUNDWIRE_INTEL) += soundwire-intel.o
> #Qualcomm driver
> soundwire-qcom-y := qcom.o
> obj-$(CONFIG_SOUNDWIRE_QCOM) += soundwire-qcom.o
> +
> +#AMD driver
> +soundwire-amd-y := amd_manager.o
> +obj-$(CONFIG_SOUNDWIRE_AMD) += soundwire-amd.o
here as well
> --
> 2.34.1
--
~Vinod
next prev parent reply other threads:[~2023-03-15 10:00 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20230307133135.545952-1-Vijendar.Mukunda@amd.com>
2023-03-07 13:31 ` [PATCH V6 1/8] soundwire: export sdw_compute_slave_ports() function Vijendar Mukunda via Alsa-devel
2023-03-07 13:31 ` Vijendar Mukunda
2023-03-07 13:31 ` [PATCH V6 2/8] soundwire: amd: Add support for AMD Manager driver Vijendar Mukunda
2023-03-07 15:25 ` Pierre-Louis Bossart
2023-03-07 20:36 ` Mukunda,Vijendar via Alsa-devel
2023-03-07 20:36 ` Mukunda,Vijendar
2023-03-15 9:42 ` Vinod Koul
2023-03-16 13:58 ` Mukunda,Vijendar
2023-03-17 13:34 ` Vinod Koul
2023-03-17 14:04 ` Mukunda,Vijendar via Alsa-devel
2023-03-17 14:04 ` Mukunda,Vijendar
2023-03-16 13:58 ` Mukunda,Vijendar via Alsa-devel
2023-03-07 13:31 ` Vijendar Mukunda via Alsa-devel
2023-03-07 13:31 ` [PATCH V6 3/8] soundwire: amd: register SoundWire manager dai ops Vijendar Mukunda via Alsa-devel
2023-03-07 13:31 ` Vijendar Mukunda
2023-03-15 9:58 ` Vinod Koul
2023-03-16 3:32 ` Mukunda,Vijendar
2023-03-16 3:32 ` Mukunda,Vijendar via Alsa-devel
2023-03-07 13:31 ` [PATCH V6 4/8] soundwire: amd: enable build for AMD SoundWire manager driver Vijendar Mukunda via Alsa-devel
2023-03-07 13:31 ` Vijendar Mukunda
2023-03-15 9:59 ` Vinod Koul [this message]
2023-03-16 3:29 ` Mukunda,Vijendar via Alsa-devel
2023-03-16 3:29 ` Mukunda,Vijendar
2023-03-07 13:31 ` [PATCH V6 5/8] soundwire: amd: add SoundWire manager interrupt handling Vijendar Mukunda
2023-03-15 10:06 ` Vinod Koul
2023-03-16 17:04 ` Mukunda,Vijendar via Alsa-devel
2023-03-16 17:04 ` Mukunda,Vijendar
2023-03-17 13:36 ` Vinod Koul
2023-03-17 14:46 ` Mukunda,Vijendar via Alsa-devel
2023-03-17 14:46 ` Mukunda,Vijendar
2023-03-07 13:31 ` Vijendar Mukunda via Alsa-devel
2023-03-07 13:31 ` [PATCH V6 6/8] soundwire: amd: add runtime pm ops for AMD SoundWire manager driver Vijendar Mukunda
2023-03-07 13:31 ` Vijendar Mukunda via Alsa-devel
2023-03-07 13:31 ` [PATCH V6 7/8] soundwire: amd: handle SoundWire wake enable interrupt Vijendar Mukunda via Alsa-devel
2023-03-07 13:31 ` Vijendar Mukunda
2023-03-07 13:31 ` [PATCH V6 8/8] soundwire: amd: add pm_prepare callback and pm ops support Vijendar Mukunda
2023-03-07 15:28 ` Pierre-Louis Bossart
2023-03-07 20:25 ` Mukunda,Vijendar
2023-03-07 21:08 ` Pierre-Louis Bossart
2023-03-08 4:32 ` Mukunda,Vijendar via Alsa-devel
2023-03-08 4:32 ` Mukunda,Vijendar
2023-03-08 13:58 ` Pierre-Louis Bossart
2023-03-08 14:19 ` Mukunda,Vijendar via Alsa-devel
2023-03-08 14:19 ` Mukunda,Vijendar
2023-03-08 14:23 ` Pierre-Louis Bossart
2023-03-08 15:05 ` Mukunda,Vijendar via Alsa-devel
2023-03-08 15:05 ` Mukunda,Vijendar
2023-03-07 20:25 ` Mukunda,Vijendar via Alsa-devel
2023-03-07 13:31 ` Vijendar Mukunda via Alsa-devel
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=ZBGW9ThXgcT0tIui@matsya \
--to=vkoul@kernel.org \
--cc=Arungopal.kondaveeti@amd.com \
--cc=Basavaraj.Hiregoudar@amd.com \
--cc=Mario.Limonciello@amd.com \
--cc=Mastan.Katragadda@amd.com \
--cc=Sunil-kumar.Dommati@amd.com \
--cc=Vijendar.Mukunda@amd.com \
--cc=alsa-devel@alsa-project.org \
--cc=amadeuszx.slawinski@linux.intel.com \
--cc=claudiu.beznea@microchip.com \
--cc=linux-kernel@vger.kernel.org \
--cc=pierre-louis.bossart@linux.intel.com \
--cc=sanyog.r.kale@intel.com \
--cc=yung-chuan.liao@linux.intel.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.