From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Naveen Manohar <naveen.m@intel.com>, alsa-devel@alsa-project.org
Cc: Harsha Priya <harshapriya.n@intel.com>,
broonie@kernel.org, pierre-louis.bossart@intel.com
Subject: Re: [PATCH v2] ASoC: Intel: Boards: Add GLK Realtek Maxim I2S machine driver
Date: Mon, 18 Jun 2018 13:38:07 -0500 [thread overview]
Message-ID: <4a16a1f5-3c97-b37f-378d-6c5649e58a45@linux.intel.com> (raw)
In-Reply-To: <1529346458-31911-1-git-send-email-naveen.m@intel.com>
On 06/18/2018 01:27 PM, Naveen Manohar wrote:
> Patch adds Geminilake I2S machine driver which uses following codecs:
> RT5682 and MAX98357A.
>
> v2: reverse xmas tree alignment of var declaration, add Acked-by.
this should go below the --- which is missing below the tags.
some editor issue here maybe?
>
> Signed-off-by: Naveen Manohar <naveen.m@intel.com>
> Signed-off-by: Harsha Priya <harshapriya.n@intel.com>
> Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
>
> diff --git a/sound/soc/intel/boards/Kconfig b/sound/soc/intel/boards/Kconfig
> index 2479748..cccda87 100644
> --- a/sound/soc/intel/boards/Kconfig
> +++ b/sound/soc/intel/boards/Kconfig
> @@ -281,6 +281,20 @@ config SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH
> Say Y if you have such a device.
> If unsure select "N".
>
> +config SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH
> + tristate "GLK with RT5682 and MAX98357A in I2S Mode"
> + depends on MFD_INTEL_LPSS && I2C && ACPI
> + select SND_SOC_RT5682
> + select SND_SOC_MAX98357A
> + select SND_SOC_DMIC
> + select SND_SOC_HDAC_HDMI
> + select SND_HDA_DSP_LOADER
> + help
> + This adds support for ASoC machine driver for Geminilake platforms
> + with RT5682 + MAX98357A I2S audio codec.
> + Say Y if you have such a device.
> + If unsure select "N".
> +
> endif ## SND_SOC_INTEL_SKYLAKE
>
> endif ## SND_SOC_INTEL_MACH
> diff --git a/sound/soc/intel/boards/Makefile b/sound/soc/intel/boards/Makefile
> index 92b5507..87ef8b4 100644
> --- a/sound/soc/intel/boards/Makefile
> +++ b/sound/soc/intel/boards/Makefile
> @@ -6,6 +6,7 @@ snd-soc-sst-bdw-rt5677-mach-objs := bdw-rt5677.o
> snd-soc-sst-broadwell-objs := broadwell.o
> snd-soc-sst-bxt-da7219_max98357a-objs := bxt_da7219_max98357a.o
> snd-soc-sst-bxt-rt298-objs := bxt_rt298.o
> +snd-soc-sst-glk-rt5682_max98357a-objs := glk_rt5682_max98357a.o
> snd-soc-sst-bytcr-rt5640-objs := bytcr_rt5640.o
> snd-soc-sst-bytcr-rt5651-objs := bytcr_rt5651.o
> snd-soc-sst-cht-bsw-rt5672-objs := cht_bsw_rt5672.o
> @@ -27,6 +28,7 @@ obj-$(CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH) += snd-soc-sst-byt-rt5640-mach.o
> obj-$(CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH) += snd-soc-sst-byt-max98090-mach.o
> obj-$(CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH) += snd-soc-sst-bxt-da7219_max98357a.o
> obj-$(CONFIG_SND_SOC_INTEL_BXT_RT298_MACH) += snd-soc-sst-bxt-rt298.o
> +obj-$(CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH) += snd-soc-sst-glk-rt5682_max98357a.o
> obj-$(CONFIG_SND_SOC_INTEL_BROADWELL_MACH) += snd-soc-sst-broadwell.o
> obj-$(CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH) += snd-soc-sst-bdw-rt5677-mach.o
> obj-$(CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH) += snd-soc-sst-bytcr-rt5640.o
> diff --git a/sound/soc/intel/boards/glk_rt5682_max98357a.c b/sound/soc/intel/boards/glk_rt5682_max98357a.c
> new file mode 100644
> index 0000000..680382f
> --- /dev/null
> +++ b/sound/soc/intel/boards/glk_rt5682_max98357a.c
> @@ -0,0 +1,644 @@
>
prev parent reply other threads:[~2018-06-18 18:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-18 18:27 [PATCH v2] ASoC: Intel: Boards: Add GLK Realtek Maxim I2S machine driver Naveen Manohar
2018-06-18 18:38 ` Pierre-Louis Bossart [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=4a16a1f5-3c97-b37f-378d-6c5649e58a45@linux.intel.com \
--to=pierre-louis.bossart@linux.intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=harshapriya.n@intel.com \
--cc=naveen.m@intel.com \
--cc=pierre-louis.bossart@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).