All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Peter Ujfalusi <peter.ujfalusi@ti.com>
Cc: vinod.koul@intel.com, nsekhar@ti.com, linux@arm.linux.org.uk,
	olof@lixom.net, arnd@arndb.de,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org,
	dmaengine@vger.kernel.org
Subject: Re: [PATCH v3 10/24] ARM: davinci: Add set dma_mask to eDMA devices
Date: Wed, 23 Sep 2015 10:25:19 -0700	[thread overview]
Message-ID: <20150923172518.GH23801@atomide.com> (raw)
In-Reply-To: <1442915675-7121-11-git-send-email-peter.ujfalusi@ti.com>

* Peter Ujfalusi <peter.ujfalusi@ti.com> [150922 03:01]:
> The upcoming change to merge the arch/arm/common/edma.c into
> drivers/dma/edma.c will need this change when booting daVinci devices in
> no DT mode.
> 
> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
> ---
>  arch/arm/Kconfig                      |    1 -
>  arch/arm/common/Kconfig               |    3 -
>  arch/arm/common/Makefile              |    1 -
>  arch/arm/common/edma.c                | 1431 --------------------------------
>  arch/arm/mach-davinci/devices-da8xx.c |    2 +
>  arch/arm/mach-davinci/dm355.c         |    1 +
>  arch/arm/mach-davinci/dm644x.c        |    1 +
>  arch/arm/mach-davinci/dm646x.c        |    1 +
>  arch/arm/mach-omap2/Kconfig           |    1 -
>  drivers/dma/Kconfig                   |    1 -
>  drivers/dma/edma.c                    | 1447 +++++++++++++++++++++++++++++++--
>  include/linux/platform_data/edma.h    |   74 --
>  12 files changed, 1394 insertions(+), 1570 deletions(-)
>  delete mode 100644 arch/arm/common/edma.c

Hmm I think I already acked the mach-omap2/Kconfig change,
but if not, here you are:

Acked-by: Tony Lindgren <tony@atomide.com>

WARNING: multiple messages have this Message-ID (diff)
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 10/24] ARM: davinci: Add set dma_mask to eDMA devices
Date: Wed, 23 Sep 2015 10:25:19 -0700	[thread overview]
Message-ID: <20150923172518.GH23801@atomide.com> (raw)
In-Reply-To: <1442915675-7121-11-git-send-email-peter.ujfalusi@ti.com>

* Peter Ujfalusi <peter.ujfalusi@ti.com> [150922 03:01]:
> The upcoming change to merge the arch/arm/common/edma.c into
> drivers/dma/edma.c will need this change when booting daVinci devices in
> no DT mode.
> 
> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
> ---
>  arch/arm/Kconfig                      |    1 -
>  arch/arm/common/Kconfig               |    3 -
>  arch/arm/common/Makefile              |    1 -
>  arch/arm/common/edma.c                | 1431 --------------------------------
>  arch/arm/mach-davinci/devices-da8xx.c |    2 +
>  arch/arm/mach-davinci/dm355.c         |    1 +
>  arch/arm/mach-davinci/dm644x.c        |    1 +
>  arch/arm/mach-davinci/dm646x.c        |    1 +
>  arch/arm/mach-omap2/Kconfig           |    1 -
>  drivers/dma/Kconfig                   |    1 -
>  drivers/dma/edma.c                    | 1447 +++++++++++++++++++++++++++++++--
>  include/linux/platform_data/edma.h    |   74 --
>  12 files changed, 1394 insertions(+), 1570 deletions(-)
>  delete mode 100644 arch/arm/common/edma.c

Hmm I think I already acked the mach-omap2/Kconfig change,
but if not, here you are:

Acked-by: Tony Lindgren <tony@atomide.com>

  reply	other threads:[~2015-09-23 17:25 UTC|newest]

Thread overview: 80+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-22  9:54 [PATCH v3 00/24] dmaengine/ARM: Merge the edma drivers into one Peter Ujfalusi
2015-09-22  9:54 ` Peter Ujfalusi
2015-09-22  9:54 ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 01/24] ARM: common: edma: Fix channel parameter for irq callbacks Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 02/24] ARM: common: edma: Remove unused functions Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 03/24] dmaengine: edma: Simplify and optimize the edma_execute path Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 04/24] ARM: davinci/common: Convert edma driver to handle one eDMA instance per driver Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 05/24] ARM/dmaengine: edma: Move of_dma_controller_register to the dmaengine driver Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 06/24] ARM: common: edma: Internal API to use pointer to 'struct edma' Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 07/24] ARM/dmaengine: edma: Public API to use private struct pointer Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 08/24] ARM/dmaengine: edma: Remove limitation on the number of eDMA controllers Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 09/24] ARM: davinci: Use platform_device_register_full() to create pdev for eDMA Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 10/24] ARM: davinci: Add set dma_mask to eDMA devices Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-23 17:25   ` Tony Lindgren [this message]
2015-09-23 17:25     ` Tony Lindgren
2015-09-24  9:56     ` Peter Ujfalusi
2015-09-24  9:56       ` Peter Ujfalusi
2015-09-24  9:56       ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 11/24] dmaengine: edma: Allocate memory dynamically for bitmaps and structures Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 12/24] dmaengine: edma: Parameter alignment and long line fixes Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 13/24] dmaengine: edma: Use devm_kcalloc when possible Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 14/24] dmaengine: edma: Cleanup regarding the use of dev around the code Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 15/24] dmaengine: edma: Use dev_dbg instead pr_debug Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 16/24] dmaengine: edma: Use the edma_write_slot instead open coded memcpy_toio Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 17/24] dmaengine: edma: Print warning when linking slots from different eDMA Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 18/24] dmaengine: edma: Consolidate the comments for functions Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 19/24] dmaengine: edma: Simplify the interrupt handling Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 20/24] dmaengine: edma: Move the pending error check into helper function Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 21/24] dmaengine: edma: Simplify and optimize ccerr interrupt handler Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 22/24] dmaengine: edma: Read channel mapping support only once from HW Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 23/24] dmaengine: edma: Rename bitfields for slot and channel usage tracking Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54 ` [PATCH v3 24/24] dmaengine: edma: Dynamic paRAM slot handling if HW supports it Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi
2015-09-22  9:54   ` Peter Ujfalusi

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=20150923172518.GH23801@atomide.com \
    --to=tony@atomide.com \
    --cc=arnd@arndb.de \
    --cc=dmaengine@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=nsekhar@ti.com \
    --cc=olof@lixom.net \
    --cc=peter.ujfalusi@ti.com \
    --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.