From: "ludovic.desroches@microchip.com" <ludovic.desroches@microchip.com>
To: Trent Piepho <tpiepho@impinj.com>
Cc: "cyrille.pitchen@wedev4u.fr" <cyrille.pitchen@wedev4u.fr>,
"ludovic.desroches@microchip.com"
<ludovic.desroches@microchip.com>,
"nicolas.ferre@microchip.com" <nicolas.ferre@microchip.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-mtd@lists.infradead.org" <linux-mtd@lists.infradead.org>,
"radu.pirea@microchip.com" <radu.pirea@microchip.com>,
"linux@armlinux.org.uk" <linux@armlinux.org.uk>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"broonie@kernel.org" <broonie@kernel.org>,
"linux-spi@vger.kernel.org" <linux-spi@vger.kernel.org>,
"robh@kernel.org" <robh@kernel.org>,
"dwmw2@infradead.org" <dwmw2@infradead.org>,
"computersforpeace@gmail.com" <computersforpeace@gmail.com>,
"boris.brezillon@free-electrons.com"
<boris.brezillon@free-electrons.com>,
"vigneshr@ti.com" <vigneshr@ti.com>,
"marek.vasut@gmail.com" <marek.vasut@gmail.com>,
"richard@nod.at" <richard@nod.at>
Subject: Re: [PATCH 2/3] dt-bindings: mtd: atmel-quadspi: add an optional property 'dmacap,memcpy'
Date: Wed, 3 Jan 2018 07:51:29 +0100 [thread overview]
Message-ID: <20180103065129.GH2612@rfolt0960.corp.atmel.com> (raw)
In-Reply-To: <1514920738.26695.171.camel@impinj.com>
On Tue, Jan 02, 2018 at 07:18:58PM +0000, Trent Piepho wrote:
> On Tue, 2018-01-02 at 11:22 +0100, Ludovic Desroches wrote:
> > On Wed, Dec 27, 2017 at 10:40:00PM +0100, Cyrille Pitchen wrote:
> >
> > > Or maybe no change at all is required at the at_xdmac.c driver side: we
> > > just don't care about the provided flags in the "dmas" property, especially
> > > the "peripheral id". They would be ignored anyway when the atmel-quadspi.c
> > > driver later calls dmaengine_prep_dma_memcpy(). So I could simply set the
> > > dma cells to 0 in the device-tree?
> > >
> > > Ludovic, what do you think about that ?
> >
> > It may work but I won't do this. Usually, channels requested through the xlate
> > function have usually their capaiblities set to DMA_SLAVE and not DMA_MEMCPY.
> > In the at_xdmac case, it won't be an issue but if you have a controller
> > which has channels which can support only mem-to-mem or peripheral, it
> > won't work.
>
> Maybe one could create an "AT91_XDMAC_DT_" macro to indicate a memcpy
> channel. There are still unused bits for another flag. It also looks
> like at_xdma uses peripheral id 0x3f for memcpy transfers (will that
> work with memcpy DMA on multiple channels at the same time?). So
> perhaps perid 0x3f could be the indication of wanting a memcpy channel,
> rather than another flag bit. But however it's done, one writes:
>
> dmas = <&dma0 AT91_XDMAC_DT_MEMCPY>; dma-names = "rx-tx";
>
If have no objection about doing that, my concerns are:
- most (all ?) of the dma controllers used the xlate function to provide
slave channel. Does it have to provide slave channel or can we
use it for all kind of channel? From my point of view, we can do it,
just need the confirmation.
- this set of patches if focused on the atmel qspi controller but other
ones may be interested in doing the same thing so they would have to
update the behavior of the xlate function of the DMA controller they
are using. So having the request of a DMA_MEMCPY channel inside the
spi/qspi controller doesn't seem to be a wrong idea. Moreover, it may
be confusing for the user who don't know the context: why do I have to
use memcpy and not slave as usal?
Honestly I have no opinion about the way to do it. Both have pros and
cons.
> I think one could have the quadspi driver automatically fill in the dma
> cell in the dma specifier if it is not present in the device tree. So
> one could write "dmas = <&dma0>" and the driver adds the
> AT91_XDMAC_DT_MEMCPY cell before xlating. I'm not sure if that's a
> good idea or not.
I don't think so, there is enough black magic, let's try to not add more
:p
Regards
Ludovic
next prev parent reply other threads:[~2018-01-03 6:51 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-24 4:36 [PATCH 0/3] mtd: spi-nor: fix DMA-unsafe buffer issue between MTD and SPI Cyrille Pitchen
2017-12-24 4:36 ` [PATCH 1/3] mtd: spi-nor: add optional DMA-safe bounce buffer for data transfer Cyrille Pitchen
2017-12-26 13:42 ` Vignesh R
2017-12-26 13:59 ` Cyrille Pitchen
2018-01-07 20:07 ` Boris Brezillon
2017-12-26 19:43 ` Trent Piepho
2017-12-28 10:39 ` Cyrille Pitchen
2017-12-28 18:54 ` Trent Piepho
2017-12-29 10:16 ` Vignesh R
2017-12-29 18:03 ` Trent Piepho
2018-01-02 10:00 ` Vignesh R
2018-01-07 20:49 ` Boris Brezillon
2017-12-24 4:36 ` [PATCH 2/3] dt-bindings: mtd: atmel-quadspi: add an optional property 'dmacap, memcpy' Cyrille Pitchen
2017-12-26 23:23 ` [PATCH 2/3] dt-bindings: mtd: atmel-quadspi: add an optional property 'dmacap,memcpy' Rob Herring
2017-12-27 21:40 ` Cyrille Pitchen
2018-01-02 10:22 ` Ludovic Desroches
2018-01-02 19:18 ` Trent Piepho
2018-01-03 6:51 ` ludovic.desroches [this message]
2018-01-03 11:51 ` Mark Brown
2017-12-24 4:36 ` [PATCH 3/3] mtd: atmel-quadspi: add support of DMA memcpy() Cyrille Pitchen
2017-12-26 18:45 ` [PATCH 0/3] mtd: spi-nor: fix DMA-unsafe buffer issue between MTD and SPI Trent Piepho
2017-12-27 10:36 ` Mark Brown
2017-12-27 20:15 ` Trent Piepho
2017-12-28 9:36 ` Cyrille Pitchen
2018-01-03 11:49 ` Mark Brown
2017-12-29 9:16 ` Vignesh R
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=20180103065129.GH2612@rfolt0960.corp.atmel.com \
--to=ludovic.desroches@microchip.com \
--cc=boris.brezillon@free-electrons.com \
--cc=broonie@kernel.org \
--cc=computersforpeace@gmail.com \
--cc=cyrille.pitchen@wedev4u.fr \
--cc=devicetree@vger.kernel.org \
--cc=dwmw2@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=linux-spi@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=marek.vasut@gmail.com \
--cc=nicolas.ferre@microchip.com \
--cc=radu.pirea@microchip.com \
--cc=richard@nod.at \
--cc=robh@kernel.org \
--cc=tpiepho@impinj.com \
--cc=vigneshr@ti.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