All of lore.kernel.org
 help / color / mirror / Atom feed
From: Shawn Guo <shawn.guo@freescale.com>
To: Vinod Koul <vinod.koul@intel.com>
Cc: devicetree-discuss@lists.ozlabs.org,
	linux-arm-kernel@lists.infradead.org, patches@linaro.org
Subject: Re: [PATCH v2 0/3] Add device tree probe for imx-sdma driver
Date: Fri, 22 Jul 2011 11:54:50 +0800	[thread overview]
Message-ID: <20110722035450.GH26837@S2100-06.ap.freescale.net> (raw)
In-Reply-To: <1310723066-567-1-git-send-email-shawn.guo@linaro.org>

Hi Vinod,

Can I have your ack on this series, please?  I attempt to get it
merged through Sascha's tree after his tree and devicetree/next get
merged in the coming window.

Regards,
Shawn

On Fri, Jul 15, 2011 at 05:44:23PM +0800, Shawn Guo wrote:
> The first patch remove the use of software defined sdma version, and
> instead uses platform_device_id to handle the sdma differences from
> one soc to another.  The second one makes a small cleanup on function
> sdma_get_firmware(), and the third patch adds the actual device tree
> probe support.
> 
> Changes since v1:
>  * Do not encode ROM script address in device tree
>  * Add one more small cleanup on function sdma_get_firmware()
> 
> ShawnsGuo (3):
>       dmaengine: imx-sdma: use platform_device_id to identify sdma version
>       dmaengine: imx-sdma: sdma_get_firmware does not need to copy fw_name
>       dmaengine: imx-sdma: add device tree probe support
> 
>  .../devicetree/bindings/dma/fsl-imx-sdma.txt       |   17 ++++
>  arch/arm/mach-imx/clock-imx25.c                    |    3 +-
>  arch/arm/mach-imx/clock-imx31.c                    |    2 +-
>  arch/arm/mach-imx/clock-imx35.c                    |    2 +-
>  arch/arm/mach-imx/mm-imx25.c                       |    4 +-
>  arch/arm/mach-imx/mm-imx31.c                       |    3 +-
>  arch/arm/mach-imx/mm-imx35.c                       |    3 +-
>  arch/arm/mach-mx5/clock-mx51-mx53.c                |    6 +-
>  arch/arm/mach-mx5/mm.c                             |    8 +-
>  arch/arm/plat-mxc/devices/platform-imx-dma.c       |    4 +-
>  arch/arm/plat-mxc/include/mach/devices-common.h    |    2 +-
>  arch/arm/plat-mxc/include/mach/dma.h               |    3 +-
>  arch/arm/plat-mxc/include/mach/sdma.h              |    2 -
>  drivers/dma/imx-sdma.c                             |   92 +++++++++++++++-----
>  14 files changed, 107 insertions(+), 44 deletions(-)
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
> 

WARNING: multiple messages have this Message-ID (diff)
From: shawn.guo@freescale.com (Shawn Guo)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/3] Add device tree probe for imx-sdma driver
Date: Fri, 22 Jul 2011 11:54:50 +0800	[thread overview]
Message-ID: <20110722035450.GH26837@S2100-06.ap.freescale.net> (raw)
In-Reply-To: <1310723066-567-1-git-send-email-shawn.guo@linaro.org>

Hi Vinod,

Can I have your ack on this series, please?  I attempt to get it
merged through Sascha's tree after his tree and devicetree/next get
merged in the coming window.

Regards,
Shawn

On Fri, Jul 15, 2011 at 05:44:23PM +0800, Shawn Guo wrote:
> The first patch remove the use of software defined sdma version, and
> instead uses platform_device_id to handle the sdma differences from
> one soc to another.  The second one makes a small cleanup on function
> sdma_get_firmware(), and the third patch adds the actual device tree
> probe support.
> 
> Changes since v1:
>  * Do not encode ROM script address in device tree
>  * Add one more small cleanup on function sdma_get_firmware()
> 
> ShawnsGuo (3):
>       dmaengine: imx-sdma: use platform_device_id to identify sdma version
>       dmaengine: imx-sdma: sdma_get_firmware does not need to copy fw_name
>       dmaengine: imx-sdma: add device tree probe support
> 
>  .../devicetree/bindings/dma/fsl-imx-sdma.txt       |   17 ++++
>  arch/arm/mach-imx/clock-imx25.c                    |    3 +-
>  arch/arm/mach-imx/clock-imx31.c                    |    2 +-
>  arch/arm/mach-imx/clock-imx35.c                    |    2 +-
>  arch/arm/mach-imx/mm-imx25.c                       |    4 +-
>  arch/arm/mach-imx/mm-imx31.c                       |    3 +-
>  arch/arm/mach-imx/mm-imx35.c                       |    3 +-
>  arch/arm/mach-mx5/clock-mx51-mx53.c                |    6 +-
>  arch/arm/mach-mx5/mm.c                             |    8 +-
>  arch/arm/plat-mxc/devices/platform-imx-dma.c       |    4 +-
>  arch/arm/plat-mxc/include/mach/devices-common.h    |    2 +-
>  arch/arm/plat-mxc/include/mach/dma.h               |    3 +-
>  arch/arm/plat-mxc/include/mach/sdma.h              |    2 -
>  drivers/dma/imx-sdma.c                             |   92 +++++++++++++++-----
>  14 files changed, 107 insertions(+), 44 deletions(-)
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
> 

  parent reply	other threads:[~2011-07-22  3:54 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-15  9:44 [PATCH v2 0/3] Add device tree probe for imx-sdma driver Shawn Guo
2011-07-15  9:44 ` Shawn Guo
     [not found] ` <1310723066-567-1-git-send-email-shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2011-07-15  9:44   ` [PATCH v2 1/3] dmaengine: imx-sdma: use platform_device_id to identify sdma version Shawn Guo
2011-07-15  9:44     ` Shawn Guo
     [not found]     ` <1310723066-567-2-git-send-email-shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2011-09-05  9:16       ` Uwe Kleine-König
2011-09-05  9:16         ` Uwe Kleine-König
2011-07-15  9:44   ` [PATCH v2 2/3] dmaengine: imx-sdma: sdma_get_firmware does not need to copy fw_name Shawn Guo
2011-07-15  9:44     ` Shawn Guo
2011-09-05  9:20     ` Uwe Kleine-König
2011-09-05  9:20       ` Uwe Kleine-König
2011-07-15  9:44   ` [PATCH v2 3/3] dmaengine: imx-sdma: add device tree probe support Shawn Guo
2011-07-15  9:44     ` Shawn Guo
2011-08-04  3:57     ` Koul, Vinod
2011-08-04  3:57       ` Koul, Vinod
2011-08-25 13:37       ` Koul, Vinod
2011-08-25 13:37         ` Koul, Vinod
2011-08-30  1:45         ` Shawn Guo
2011-08-30  1:45           ` Shawn Guo
2011-09-05  9:24     ` Uwe Kleine-König
2011-09-05  9:24       ` Uwe Kleine-König
2011-07-22  3:54 ` Shawn Guo [this message]
2011-07-22  3:54   ` [PATCH v2 0/3] Add device tree probe for imx-sdma driver Shawn Guo
2011-07-25 11:41   ` Vinod Koul
2011-07-25 11:41     ` Vinod Koul
2011-07-25 15:19     ` Shawn Guo
2011-07-25 15:19       ` Shawn Guo
2011-08-04  3:59 ` Koul, Vinod
2011-08-04  3:59   ` Koul, Vinod
2011-08-04  5:35   ` Shawn Guo
2011-08-04  5:35     ` Shawn Guo
2011-08-04  5:28     ` Koul, Vinod
2011-08-04  5:28       ` Koul, Vinod

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=20110722035450.GH26837@S2100-06.ap.freescale.net \
    --to=shawn.guo@freescale.com \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=patches@linaro.org \
    --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.