From: Vinod Koul <vinod.koul@intel.com>
To: yang.a.fang@intel.com
Cc: alsa-devel@alsa-project.org, harshapriya.n@intel.com,
praveen.k.jain@intel.com, lgirdwood@gmail.com,
kevin.strasser@intel.com, denny.iriawan@intel.com,
broonie@kernel.org, mengdong.lin@intel.com, bardliao@realtek.com
Subject: Re: [PATCH v2 2/2] ASoC: Intel:Add Cherrytrail & Braswell machine driver cht_bsw_rt5645
Date: Tue, 3 Feb 2015 11:49:27 -0800 [thread overview]
Message-ID: <20150203194927.GB4489@intel.com> (raw)
In-Reply-To: <1422991551-28544-2-git-send-email-yang.a.fang@intel.com>
On Tue, Feb 03, 2015 at 11:25:51AM -0800, yang.a.fang@intel.com wrote:
> From: "Fang, Yang A" <yang.a.fang@intel.com>
>
> Add machine driver for two Intel Cherryview-based platforms, Cherrytrail
> and Braswell, with RT5645 codec
>
> Signed-off-by: Fang, Yang A <yang.a.fang@intel.com>
> ---
> sound/soc/intel/Kconfig | 11 ++
> sound/soc/intel/Makefile | 2 +
> sound/soc/intel/cht_bsw_rt5645.c | 322 ++++++++++++++++++++++++++++++++++++++
> 3 files changed, 335 insertions(+)
> create mode 100644 sound/soc/intel/cht_bsw_rt5645.c
>
> diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig
> index f06fcf1..12093fd 100644
> --- a/sound/soc/intel/Kconfig
> +++ b/sound/soc/intel/Kconfig
> @@ -110,3 +110,14 @@ config SND_SOC_INTEL_CHT_BSW_RT5672_MACH
> platforms with RT5672 audio codec.
> Say Y if you have such a device
> If unsure select "N".
> +
> +config SND_SOC_INTEL_CHT_BSW_RT5645_MACH
> + tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645 codec"
> + depends on X86_INTEL_LPSS
> + select SND_SOC_RT5645
> + select SND_SST_MFLD_PLATFORM
> + select SND_SST_IPC_ACPI
> + help
> + This adds support for ASoC machine driver for Intel(R) Cherrytrail & Braswell
> + platforms with RT5645 audio codec.
> + If unsure select "N".
> diff --git a/sound/soc/intel/Makefile b/sound/soc/intel/Makefile
> index e928ec3..a8e53c4 100644
> --- a/sound/soc/intel/Makefile
> +++ b/sound/soc/intel/Makefile
> @@ -28,6 +28,7 @@ snd-soc-sst-byt-max98090-mach-objs := byt-max98090.o
> snd-soc-sst-broadwell-objs := broadwell.o
> snd-soc-sst-bytcr-dpcm-rt5640-objs := bytcr_dpcm_rt5640.o
> snd-soc-sst-cht-bsw-rt5672-objs := cht_bsw_rt5672.o
> +snd-soc-sst-cht-bsw-rt5645-objs := cht_bsw_rt5645.o
>
> obj-$(CONFIG_SND_SOC_INTEL_HASWELL_MACH) += snd-soc-sst-haswell.o
> obj-$(CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH) += snd-soc-sst-byt-rt5640-mach.o
> @@ -35,6 +36,7 @@ obj-$(CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH) += snd-soc-sst-byt-max98090-mach.o
> obj-$(CONFIG_SND_SOC_INTEL_BROADWELL_MACH) += snd-soc-sst-broadwell.o
> obj-$(CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH) += snd-soc-sst-bytcr-dpcm-rt5640.o
> obj-$(CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH) += snd-soc-sst-cht-bsw-rt5672.o
> +obj-$(CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH) += snd-soc-sst-cht-bsw-rt5645.o
>
> # DSP driver
> obj-$(CONFIG_SND_SST_IPC) += sst/
> diff --git a/sound/soc/intel/cht_bsw_rt5645.c b/sound/soc/intel/cht_bsw_rt5645.c
> new file mode 100644
> index 0000000..02d2377
> --- /dev/null
> +++ b/sound/soc/intel/cht_bsw_rt5645.c
> @@ -0,0 +1,322 @@
> +/*
> + * cht-bsw-rt5645.c - ASoc Machine driver for Intel Cherryview-based platforms
> + * Cherrytrail and Braswell, with RT5645 codec.
> + *
> + * Copyright (C) 2014 Intel Corp
nitpick, this should be 2014-15. Otherwise looks good
Acked-by: VInod Koul <vinod.koul@intel.com>
--
~Vinod
next prev parent reply other threads:[~2015-02-03 19:51 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-31 23:22 [PATCH 1/2] ASoC: Intel:Add Cherrytrail & Braswell machine driver cht_bsw_rt5645 yang.a.fang
2015-01-31 23:22 ` [PATCH 2/2] ASoC: Intel:Add support rt5645 in sst driver yang.a.fang
2015-02-02 19:05 ` Mark Brown
2015-02-02 19:05 ` [PATCH 1/2] ASoC: Intel:Add Cherrytrail & Braswell machine driver cht_bsw_rt5645 Mark Brown
2015-02-03 19:25 ` [PATCH v2 1/2] ASoC: rt5645: add API to select ASRC clock source yang.a.fang
2015-02-03 19:25 ` [PATCH v2 2/2] ASoC: Intel:Add Cherrytrail & Braswell machine driver cht_bsw_rt5645 yang.a.fang
2015-02-03 19:49 ` Vinod Koul [this message]
2015-02-03 20:03 ` [PATCH v3 1/2] ASoC: rt5645: add API to select ASRC clock source yang.a.fang
2015-02-03 20:03 ` [PATCH v3 2/2] ASoC: Intel:Add Cherrytrail & Braswell machine driver cht_bsw_rt5645 yang.a.fang
2015-02-04 1:29 ` Vinod Koul
2015-02-04 20:31 ` [PATCH v3 1/2] ASoC: rt5645: add API to select ASRC clock source Mark Brown
2015-02-05 2:19 ` [PATCH v4 " yang.a.fang
2015-02-05 2:19 ` [PATCH v4 2/2] ASoC: Intel:Add Cherrytrail & Braswell machine driver cht_bsw_rt5645 yang.a.fang
2015-02-05 18:10 ` [PATCH v4 1/2] ASoC: rt5645: add API to select ASRC clock source Mark Brown
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=20150203194927.GB4489@intel.com \
--to=vinod.koul@intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=bardliao@realtek.com \
--cc=broonie@kernel.org \
--cc=denny.iriawan@intel.com \
--cc=harshapriya.n@intel.com \
--cc=kevin.strasser@intel.com \
--cc=lgirdwood@gmail.com \
--cc=mengdong.lin@intel.com \
--cc=praveen.k.jain@intel.com \
--cc=yang.a.fang@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