Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753588AbcCGUac (ORCPT ); Mon, 7 Mar 2016 15:30:32 -0500 Received: from down.free-electrons.com ([37.187.137.238]:52844 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753013AbcCGUa1 (ORCPT ); Mon, 7 Mar 2016 15:30:27 -0500 Date: Mon, 7 Mar 2016 21:30:24 +0100 From: Maxime Ripard To: Boris Brezillon Cc: Vinod Koul , Dan Williams , dmaengine@vger.kernel.org, Chen-Yu Tsai , linux-sunxi@googlegroups.com, Emilio =?iso-8859-1?Q?L=F3pez?= , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] dma: sun4i: expose block size and wait cycle configuration to DMA users Message-ID: <20160307203024.GD8418@lukather> References: <1457344771-12946-1-git-send-email-boris.brezillon@free-electrons.com> <20160307145429.GG11154@localhost> <20160307160857.577bb04d@bbrezillon> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8lKUOMLFs7xrer6k" Content-Disposition: inline In-Reply-To: <20160307160857.577bb04d@bbrezillon> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3012 Lines: 78 --8lKUOMLFs7xrer6k Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 07, 2016 at 04:08:57PM +0100, Boris Brezillon wrote: > Hi Vinod, >=20 > On Mon, 7 Mar 2016 20:24:29 +0530 > Vinod Koul wrote: >=20 > > On Mon, Mar 07, 2016 at 10:59:31AM +0100, Boris Brezillon wrote: > > > +/* Dedicated DMA parameter register layout */ > > > +#define SUN4I_DDMA_PARA_DST_DATA_BLK_SIZE(n) (((n) - 1) << 24) > > > +#define SUN4I_DDMA_PARA_DST_WAIT_CYCLES(n) (((n) - 1) << 16) > > > +#define SUN4I_DDMA_PARA_SRC_DATA_BLK_SIZE(n) (((n) - 1) << 8) > > > +#define SUN4I_DDMA_PARA_SRC_WAIT_CYCLES(n) (((n) - 1) << 0) > > > + > > > +/** > > > + * struct sun4i_dma_chan_config - DMA channel config > > > + * > > > + * @para: contains information about block size and time before chec= king > > > + * DRQ line. This is device specific and only applicable to dedica= ted > > > + * DMA channels > >=20 > > What information, can you elobrate.. And why can't you use existing > > dma_slave_config for this? >=20 > Block size is related to the device FIFO size. I guess it allows the > DMA channel to launch a transfer of X bytes without having to check the > DRQ line (the line telling the DMA engine it can transfer more data > to/from the device). The wait cycles information is apparently related > to the number of clks the engine should wait before polling/checking > the DRQ line status between each block transfer. I'm not sure what it > saves to put WAIT_CYCLES() to something !=3D 1, but in their BSP, > Allwinner tweak that depending on the device. >=20 > Note that I'd be happy if the above configuration could go into the > generic dma_slave_config struct. This way we could avoid per-engine > specific APIs. And I'd really like to avoid that too. That will avoid to cripple the consumer drivers that might be using any of the two. Thanks! Maxime --=20 Maxime Ripard, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com --8lKUOMLFs7xrer6k Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBAgAGBQJW3eTgAAoJEBx+YmzsjxAgol8QAKFDCjWEVlz9gnZLcEZWIKeh +JdCkSYwVLABkQ6CDUfQyzR7kHpk72zY2PFz2xMCEfAruXYac6QnOzb+UADpO5+W gAFhJMNrypqhDWMbm99iKkr82iAqJaptaRVX5spwD6mMxnvhPzBrnWvHpFDg3ey0 1aXmLmEWbLLu+4ASL9+JFDx+GBbujXkc/Qmlq2Jn7aSy9w5kIfpk2gvhbRlyMOMR 0bogP7HBs1FCVySTuX9a7WdSwCiGsaSNo3+YOVK4WrxoCxIvoUuLWyddzIadb2nJ iykLvRH1Bd19gd7Q58PCburBXWm34wW7Sy9YhqsYi7L0yccX8H+zsuA1t2hRXAYz /4Kww7757+OBR38k8mAOW1sWU+uxMh4TlPDM1rgdmPU/HeQjp9oU8qbybiJB7qkv TEPee9aR8ZJHBXxL1gqcLMvgznxS7aictiy16Lea7z3q0OOaYbAJeWzaIrBVm7Bx jQwRsJZqy/JCadIwQGggmfo+1hZvtiEd2TU10A16oVqKPEAnyy35DjhOiPjsCe0g s78kqbNeRpLjVON8jOgRoqIkJFeOaK21rdL6+1pHVR7ZAWFQM9c2ob9unOZ6T6N8 QaFELIOLQ+RH8hg3YZcwhQcjRQj7FeNICXX3RXn7qYPVPj+De0Mq5QNeD3tzepuA nH9sxNlFVzPojiLHDogs =sztc -----END PGP SIGNATURE----- --8lKUOMLFs7xrer6k--