All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vinod Koul <vinod.koul@intel.com>
To: Nicolin Chen <b42378@freescale.com>
Cc: dan.j.williams@intel.com, s.hauer@pengutronix.de, timur@tabi.org,
	shawn.guo@linaro.org, broonie@kernel.org,
	linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
	linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
	dmaengine@vger.kernel.org, linuxppc-dev@lists.ozlabs.org,
	alsa-devel@alsa-project.org, rob.herring@calxeda.com,
	mark.rutland@arm.com, swarren@wwwdotorg.org, pawel.moll@arm.com,
	ijc+devicetree@hellion.org.uk
Subject: Re: [PATCH v7 0/4] Add dual-fifo mode support of i.MX ssi
Date: Thu, 28 Nov 2013 14:11:09 +0530	[thread overview]
Message-ID: <20131128084108.GZ8834@intel.com> (raw)
In-Reply-To: <cover.1384352281.git.b42378@freescale.com>

On Wed, Nov 13, 2013 at 10:55:23PM +0800, Nicolin Chen wrote:
>  * ! This series of patches has a direct dependency between them. When
>  * ! applying them, we need to apply to one single branch. Otherwise,
>  * ! it would break currect branches.
Applied, thanks

--
~Vinod
> 
> Changelog
> v7:
>  * Appended missing Acked-by to all four patches.
>  * Sorry that I didn't add them at the first place.
> v6:
>  * PATCH-1: Use goto err_firmware instead of return directly.
>  *
>  * Nothing changes for the other three ack-ed patches
> v5:
>  * PATCH-3: Add period size constraint when using dual fifo mode
>  *
>  * Nothing changes for the other three patches
> v4:
>  * PATCH-3: Drop useless register configuration.
>  *
>  * Nothing changes for the other three patches
> v3:
>  * PATCH-1: Add comments to indicate the end of v1 and v2 array.
>  * PATCH-3: Use better way to keep watermark as even number.
>  *
>  * Nothing changes for PATCH-2 and PATCH-4
> v2:
>  * Instead of adding rogue scripts to current SDMA driver based on firmware
>  * V1, we define the new SDMA firmware as version 2 and bisect the PATCH-1
>  * to two patches: The first is to add version check code to the SDMA driver;
>  * And the second is to add SSI dual FIFO DMATYPE.
>  *
>  * Nothing changes for the last two patches.
> v1:
>  * SSI can reduce hardware overrun/underrun possibility when using dual
>  * fifo mode. To support this mode, we need to first update sdma sciprt
>  * list, and then enable dual fifo BIT in SSI driver, and last update DT
>  * bindings of i.MX series.
> 
> Nicolin Chen (4):
>   dma: imx-sdma: Add sdma firmware version 2 support
>   dma: imx-sdma: Add new dma type for ssi dual fifo script
>   ASoC: fsl_ssi: Add dual fifo mode support
>   ARM: dts: imx: use dual-fifo sdma script for ssi
> 
>  .../devicetree/bindings/dma/fsl-imx-sdma.txt       |  1 +
>  arch/arm/boot/dts/imx51.dtsi                       |  4 ++--
>  arch/arm/boot/dts/imx53.dtsi                       |  4 ++--
>  arch/arm/boot/dts/imx6qdl.dtsi                     | 12 +++++-----
>  arch/arm/boot/dts/imx6sl.dtsi                      | 12 +++++-----
>  drivers/dma/imx-sdma.c                             | 19 ++++++++++++++-
>  include/linux/platform_data/dma-imx-sdma.h         |  5 ++++
>  include/linux/platform_data/dma-imx.h              |  1 +
>  sound/soc/fsl/fsl_ssi.c                            | 27 +++++++++++++++++++++-
>  9 files changed, 67 insertions(+), 18 deletions(-)
> 
> -- 
> 1.8.4
> 
> 

-- 

WARNING: multiple messages have this Message-ID (diff)
From: Vinod Koul <vinod.koul@intel.com>
To: Nicolin Chen <b42378@freescale.com>
Cc: mark.rutland@arm.com, devicetree@vger.kernel.org,
	alsa-devel@alsa-project.org, pawel.moll@arm.com,
	linux-doc@vger.kernel.org, s.hauer@pengutronix.de,
	swarren@wwwdotorg.org, timur@tabi.org, rob.herring@calxeda.com,
	linux-kernel@vger.kernel.org, broonie@kernel.org,
	ijc+devicetree@hellion.org.uk, dmaengine@vger.kernel.org,
	dan.j.williams@intel.com, shawn.guo@linaro.org,
	linuxppc-dev@lists.ozlabs.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v7 0/4] Add dual-fifo mode support of i.MX ssi
Date: Thu, 28 Nov 2013 14:11:09 +0530	[thread overview]
Message-ID: <20131128084108.GZ8834@intel.com> (raw)
In-Reply-To: <cover.1384352281.git.b42378@freescale.com>

On Wed, Nov 13, 2013 at 10:55:23PM +0800, Nicolin Chen wrote:
>  * ! This series of patches has a direct dependency between them. When
>  * ! applying them, we need to apply to one single branch. Otherwise,
>  * ! it would break currect branches.
Applied, thanks

--
~Vinod
> 
> Changelog
> v7:
>  * Appended missing Acked-by to all four patches.
>  * Sorry that I didn't add them at the first place.
> v6:
>  * PATCH-1: Use goto err_firmware instead of return directly.
>  *
>  * Nothing changes for the other three ack-ed patches
> v5:
>  * PATCH-3: Add period size constraint when using dual fifo mode
>  *
>  * Nothing changes for the other three patches
> v4:
>  * PATCH-3: Drop useless register configuration.
>  *
>  * Nothing changes for the other three patches
> v3:
>  * PATCH-1: Add comments to indicate the end of v1 and v2 array.
>  * PATCH-3: Use better way to keep watermark as even number.
>  *
>  * Nothing changes for PATCH-2 and PATCH-4
> v2:
>  * Instead of adding rogue scripts to current SDMA driver based on firmware
>  * V1, we define the new SDMA firmware as version 2 and bisect the PATCH-1
>  * to two patches: The first is to add version check code to the SDMA driver;
>  * And the second is to add SSI dual FIFO DMATYPE.
>  *
>  * Nothing changes for the last two patches.
> v1:
>  * SSI can reduce hardware overrun/underrun possibility when using dual
>  * fifo mode. To support this mode, we need to first update sdma sciprt
>  * list, and then enable dual fifo BIT in SSI driver, and last update DT
>  * bindings of i.MX series.
> 
> Nicolin Chen (4):
>   dma: imx-sdma: Add sdma firmware version 2 support
>   dma: imx-sdma: Add new dma type for ssi dual fifo script
>   ASoC: fsl_ssi: Add dual fifo mode support
>   ARM: dts: imx: use dual-fifo sdma script for ssi
> 
>  .../devicetree/bindings/dma/fsl-imx-sdma.txt       |  1 +
>  arch/arm/boot/dts/imx51.dtsi                       |  4 ++--
>  arch/arm/boot/dts/imx53.dtsi                       |  4 ++--
>  arch/arm/boot/dts/imx6qdl.dtsi                     | 12 +++++-----
>  arch/arm/boot/dts/imx6sl.dtsi                      | 12 +++++-----
>  drivers/dma/imx-sdma.c                             | 19 ++++++++++++++-
>  include/linux/platform_data/dma-imx-sdma.h         |  5 ++++
>  include/linux/platform_data/dma-imx.h              |  1 +
>  sound/soc/fsl/fsl_ssi.c                            | 27 +++++++++++++++++++++-
>  9 files changed, 67 insertions(+), 18 deletions(-)
> 
> -- 
> 1.8.4
> 
> 

-- 

WARNING: multiple messages have this Message-ID (diff)
From: vinod.koul@intel.com (Vinod Koul)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 0/4] Add dual-fifo mode support of i.MX ssi
Date: Thu, 28 Nov 2013 14:11:09 +0530	[thread overview]
Message-ID: <20131128084108.GZ8834@intel.com> (raw)
In-Reply-To: <cover.1384352281.git.b42378@freescale.com>

On Wed, Nov 13, 2013 at 10:55:23PM +0800, Nicolin Chen wrote:
>  * ! This series of patches has a direct dependency between them. When
>  * ! applying them, we need to apply to one single branch. Otherwise,
>  * ! it would break currect branches.
Applied, thanks

--
~Vinod
> 
> Changelog
> v7:
>  * Appended missing Acked-by to all four patches.
>  * Sorry that I didn't add them at the first place.
> v6:
>  * PATCH-1: Use goto err_firmware instead of return directly.
>  *
>  * Nothing changes for the other three ack-ed patches
> v5:
>  * PATCH-3: Add period size constraint when using dual fifo mode
>  *
>  * Nothing changes for the other three patches
> v4:
>  * PATCH-3: Drop useless register configuration.
>  *
>  * Nothing changes for the other three patches
> v3:
>  * PATCH-1: Add comments to indicate the end of v1 and v2 array.
>  * PATCH-3: Use better way to keep watermark as even number.
>  *
>  * Nothing changes for PATCH-2 and PATCH-4
> v2:
>  * Instead of adding rogue scripts to current SDMA driver based on firmware
>  * V1, we define the new SDMA firmware as version 2 and bisect the PATCH-1
>  * to two patches: The first is to add version check code to the SDMA driver;
>  * And the second is to add SSI dual FIFO DMATYPE.
>  *
>  * Nothing changes for the last two patches.
> v1:
>  * SSI can reduce hardware overrun/underrun possibility when using dual
>  * fifo mode. To support this mode, we need to first update sdma sciprt
>  * list, and then enable dual fifo BIT in SSI driver, and last update DT
>  * bindings of i.MX series.
> 
> Nicolin Chen (4):
>   dma: imx-sdma: Add sdma firmware version 2 support
>   dma: imx-sdma: Add new dma type for ssi dual fifo script
>   ASoC: fsl_ssi: Add dual fifo mode support
>   ARM: dts: imx: use dual-fifo sdma script for ssi
> 
>  .../devicetree/bindings/dma/fsl-imx-sdma.txt       |  1 +
>  arch/arm/boot/dts/imx51.dtsi                       |  4 ++--
>  arch/arm/boot/dts/imx53.dtsi                       |  4 ++--
>  arch/arm/boot/dts/imx6qdl.dtsi                     | 12 +++++-----
>  arch/arm/boot/dts/imx6sl.dtsi                      | 12 +++++-----
>  drivers/dma/imx-sdma.c                             | 19 ++++++++++++++-
>  include/linux/platform_data/dma-imx-sdma.h         |  5 ++++
>  include/linux/platform_data/dma-imx.h              |  1 +
>  sound/soc/fsl/fsl_ssi.c                            | 27 +++++++++++++++++++++-
>  9 files changed, 67 insertions(+), 18 deletions(-)
> 
> -- 
> 1.8.4
> 
> 

-- 

  parent reply	other threads:[~2013-11-28  9:38 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-13 14:55 [PATCH v7 0/4] Add dual-fifo mode support of i.MX ssi Nicolin Chen
2013-11-13 14:55 ` Nicolin Chen
2013-11-13 14:55 ` Nicolin Chen
2013-11-13 14:55 ` Nicolin Chen
2013-11-13 14:55 ` [PATCH v7 1/4] dma: imx-sdma: Add sdma firmware version 2 support Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55 ` [PATCH v7 2/4] dma: imx-sdma: Add new dma type for ssi dual fifo script Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55 ` [PATCH v7 3/4] ASoC: fsl_ssi: Add dual fifo mode support Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55 ` [PATCH v7 4/4] ARM: dts: imx: use dual-fifo sdma script for ssi Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-13 14:55   ` Nicolin Chen
2013-11-22 16:31 ` [PATCH v7 0/4] Add dual-fifo mode support of i.MX ssi Nicolin Chen
2013-11-22 16:31   ` Nicolin Chen
2013-11-22 16:31   ` Nicolin Chen
2013-11-22 16:31   ` Nicolin Chen
2013-11-25  2:11   ` Shawn Guo
2013-11-25  2:11     ` Shawn Guo
2013-11-25  2:11     ` Shawn Guo
2013-11-25  2:11     ` Shawn Guo
2013-11-28  8:41 ` Vinod Koul [this message]
2013-11-28  8:41   ` Vinod Koul
2013-11-28  8:41   ` Vinod Koul

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=20131128084108.GZ8834@intel.com \
    --to=vinod.koul@intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=b42378@freescale.com \
    --cc=broonie@kernel.org \
    --cc=dan.j.williams@intel.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dmaengine@vger.kernel.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=mark.rutland@arm.com \
    --cc=pawel.moll@arm.com \
    --cc=rob.herring@calxeda.com \
    --cc=s.hauer@pengutronix.de \
    --cc=shawn.guo@linaro.org \
    --cc=swarren@wwwdotorg.org \
    --cc=timur@tabi.org \
    /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.