All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mengdong Lin <mengdong.lin@linux.intel.com>
To: alsa-devel@alsa-project.org, broonie@kernel.org
Cc: tiwai@suse.de, mengdong.lin@intel.com,
	liam.r.girdwood@linux.intel.com, vinod.koul@intel.com,
	jeeja.kp@intel.com, subhransu.s.prusty@intel.com
Subject: Re: [PATCH v2 00/13] ASoC: topology: Add support for PCM, BE & CC links
Date: Thu, 5 Nov 2015 18:15:39 +0800	[thread overview]
Message-ID: <563B2C4B.4030901@linux.intel.com> (raw)
In-Reply-To: <cover.1446717205.git.mengdong.lin@linux.intel.com>

Hi Mark,

Sorry, please over look this thread now.

I should wait for your comments on the other thread "[PATCH v2 0/2] 
ASoC: Change the PCM runtime array to a list" at first. The 2 patches
are preparation to support dynamic PCM in topology.

Thanks
Mengdong

On 11/05/2015 05:58 PM, mengdong.lin@linux.intel.com wrote:
> From: Mengdong Lin <mengdong.lin@linux.intel.com>
>
> This series allows the topology core to create PCM devices dynamically,
> as well as configure BE and CC DAI links.
>
> Mengdong Lin (12):
>    ASoC: Vendor drivers get a link's runtime by snd_soc_get_pcm_runtime()
>    ASoC: Change the PCM runtime array to a list
>    ASoC: Define soc_init_dai_link() to wrap link intialization.
>    ASoC: Change 2nd argument of soc_bind_dai_link() to DAI link pointer
>    ASoC: Implement DAI links in a list & define API to add a link
>    ASoC: Add add_dai_link ops for a soc card
>    ASoC: soc_bind_dai_link() directly returns success for a bound DAI
>      link
>    ASoC: Bind new DAI links after probing components
>    ASoC: The soc card can have auxiliary components
>    ASoC: Support adding a DAI dynamically
>    ASoC: topology: Add PCM DAIs dynamically when loading them
>    ASoC: topology: Add support for FE DAI links
>
> Vedang Patel (1):
>    ASoC: topology: Add support for BE and CC DAI Links
>
>   include/sound/soc-dai.h                      |   1 +
>   include/sound/soc-topology.h                 |  22 +-
>   include/sound/soc.h                          |  38 +-
>   sound/soc/fsl/fsl-asoc-card.c                |   5 +-
>   sound/soc/fsl/imx-wm8962.c                   |  10 +-
>   sound/soc/generic/simple-card.c              |  12 +-
>   sound/soc/intel/atom/sst-mfld-platform-pcm.c |  12 +-
>   sound/soc/intel/boards/cht_bsw_max98090_ti.c |   7 +-
>   sound/soc/intel/boards/cht_bsw_rt5645.c      |   7 +-
>   sound/soc/intel/boards/cht_bsw_rt5672.c      |   7 +-
>   sound/soc/pxa/mioa701_wm9713.c               |   6 +-
>   sound/soc/samsung/bells.c                    |  40 +-
>   sound/soc/samsung/littlemill.c               |  32 +-
>   sound/soc/samsung/odroidx2_max98090.c        |   9 +-
>   sound/soc/samsung/snow.c                     |   9 +-
>   sound/soc/samsung/speyside.c                 |  12 +-
>   sound/soc/samsung/tobermory.c                |  21 +-
>   sound/soc/sh/rcar/core.c                     |   2 +-
>   sound/soc/sh/rcar/rsrc-card.c                |   6 +-
>   sound/soc/soc-core.c                         | 629 ++++++++++++++++++---------
>   sound/soc/soc-dapm.c                         |   7 +-
>   sound/soc/soc-pcm.c                          |  22 +-
>   sound/soc/soc-topology.c                     | 284 ++++++++++--
>   sound/soc/tegra/tegra_wm8903.c               |   3 +-
>   24 files changed, 879 insertions(+), 324 deletions(-)
>

      parent reply	other threads:[~2015-11-05 10:00 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-05  9:58 [PATCH v2 00/13] ASoC: topology: Add support for PCM, BE & CC links mengdong.lin
2015-11-05  9:58 ` [PATCH v2 01/13] ASoC: Vendor drivers get a link's runtime by snd_soc_get_pcm_runtime() mengdong.lin
2015-11-05  9:58 ` [PATCH v2 02/13] ASoC: Change the PCM runtime array to a list mengdong.lin
2015-11-05  9:58 ` [PATCH v2 03/13] ASoC: Define soc_init_dai_link() to wrap link intialization mengdong.lin
2015-11-05  9:58 ` [PATCH v2 04/13] ASoC: Change 2nd argument of soc_bind_dai_link() to DAI link pointer mengdong.lin
2015-11-25 17:57   ` Applied "ASoC: Change 2nd argument of soc_bind_dai_link() to DAI link pointer" to the asoc tree Mark Brown
2015-11-05  9:59 ` [PATCH v2 05/13] ASoC: Implement DAI links in a list & define API to add a link mengdong.lin
2015-11-05  9:59 ` [PATCH v2 06/13] ASoC: Add add_dai_link ops for a soc card mengdong.lin
2015-11-05  9:59 ` [PATCH v2 07/13] ASoC: soc_bind_dai_link() directly returns success for a bound DAI link mengdong.lin
2015-12-08 19:11   ` Applied "ASoC: soc_bind_dai_link() directly returns success for a bound DAI link" to the asoc tree Mark Brown
2015-11-05  9:59 ` [PATCH v2 08/13] ASoC: Bind new DAI links after probing components mengdong.lin
2015-12-08 19:11   ` Applied "ASoC: Bind new DAI links after probing components" to the asoc tree Mark Brown
2015-11-05  9:59 ` [PATCH v2 09/13] ASoC: The soc card can have auxiliary components mengdong.lin
2015-11-26 12:57   ` Lars-Peter Clausen
2015-11-05  9:59 ` [PATCH v2 10/13] ASoC: Support adding a DAI dynamically mengdong.lin
2015-11-05  9:59 ` [PATCH v2 11/13] ASoC: topology: Add PCM DAIs dynamically when loading them mengdong.lin
2015-11-05 10:00 ` [PATCH v2 12/13] ASoC: topology: Add support for FE DAI links mengdong.lin
2015-11-05 10:00 ` [PATCH v2 13/13] ASoC: topology: Add support for BE and CC DAI Links mengdong.lin
2015-11-05 10:15 ` Mengdong Lin [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=563B2C4B.4030901@linux.intel.com \
    --to=mengdong.lin@linux.intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=jeeja.kp@intel.com \
    --cc=liam.r.girdwood@linux.intel.com \
    --cc=mengdong.lin@intel.com \
    --cc=subhransu.s.prusty@intel.com \
    --cc=tiwai@suse.de \
    --cc=vinod.koul@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.