linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
To: Vinod Koul <vinod.koul@intel.com>
Cc: Russell King - ARM Linux <linux@arm.linux.org.uk>,
	linux-kernel@vger.kernel.org,
	"'Jassi Brar'" <jassisinghbrar@gmail.com>,
	Linus Walleij <linus.walleij@linaro.org>,
	Magnus Damm <magnus.damm@gmail.com>,
	Paul Mundt <lethal@linux-sh.org>
Subject: Re: [PATCH/RFC] dmaengine: add a slave parameter to __dma_request_channel()
Date: Fri, 9 Mar 2012 13:20:08 +0100 (CET)	[thread overview]
Message-ID: <Pine.LNX.4.64.1203091049060.7852@axis700.grange> (raw)
In-Reply-To: <1331285959.4657.76.camel@vkoul-udesk3>

On Fri, 9 Mar 2012, Vinod Koul wrote:

> On Fri, 2012-03-09 at 10:24 +0100, Guennadi Liakhovetski wrote:
> > On Fri, 9 Mar 2012, Vinod Koul wrote:
> > 
> > > On Thu, 2012-03-08 at 14:18 +0100, Guennadi Liakhovetski wrote:
> > > > > Assuming I didn't miss...
> > > > > 
> > > > > The case B can be handled without sweat by platforms channel mapping
> > > > > information.
> > > > > 
> > > > > Case A where we don't find that devices exist in map, thus being treated
> > > > > as generic DMA channels and can be handled easily in sequence. So when
> > > > > someone in Q request a channel it would get first channel in Ps
> > > > > 
> > > > > This way we handle both of them in a transparent manner to both clients
> > > > > and controllers. 
> > > > > 
> > > > > Perhaps we can also add capability to know that if channel is to be
> > > > > searched in map or not - would be anyway required for non slave cases.
> > > > 
> > > > Right, but I don't understand then what this gives us. You propose some 
> > > > channel maps, that will not be used for your "case A." Which means, for 
> > > > "case A" nothing changes. So, the reason for this whole thread hasn't been 
> > > > addressed: how to pass channel configuration to the DMA controller driver.
> > > For "Case A" there should be no filtering or any issues even now. You
> > > have controller requesting a channel and as long as they get a channel
> > > for respective pool, it should work.
> > > 
> > > Or is there anything else which is required in this case?
> > 
> > Yes, there is. You keep complaining about my use of .priv pointer, which I 
> > use in the filter to pass channel configuration to the DMA controller 
> > driver. That is the original reason for this whole discussion. If you're 
> > fine with that, I'll just carry that .priv use over in the "simple" DMA 
> > engine driver and stay happy forever:-)
> Channel configuration != filtering & channel allocation
> 
> The discussion is focused on getting request_channel fixed so that we
> take care of oddities in respective platforms for channel maps which
> exist.
> What the heck does it have to on how you configure you channel??
> 
> Once you have channel allocated correctly which can work for you,

It can be made to work as long as there's only one DMAC group with 
configurable channels and all other DMACs are dedicated to specific 
peripherals, yes. I don't know whether there are already now or are 
approaching any platforms with multiple reconfigurable groups.

> you
> need to configure you channel. Since this is slave case you to tell what
> your client FIFO depth, burst size, width etc parameters. There is
> dma_slave_config for that purpose ONLY. Is there anything else required
> for _configuring_ if yes, we can add those. But then again that doesn't
> have anything to do with how you get a channel.

As Russell mentioned, struct dma_slave_config isn't suitable for channel 
configuration. Currently we use struct sh_dmae_slave_config to configure 
channels. As you can see, apart from the client's address, it also 
contains two fields with register values, that have to be used with this 
client. We could use dmaengine_slave_config() and embed struct 
dma_slave_config in our private type, but out of 7 fields of that struct 
effectively only one would be used, which makes this approach both clumsy 
and inefficient.

Thanks
Guennadi
---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

  reply	other threads:[~2012-03-09 12:20 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-01 15:26 [PATCH/RFC] dmaengine: add a slave parameter to __dma_request_channel() Guennadi Liakhovetski
2012-03-02 13:21 ` Guennadi Liakhovetski
2012-03-06  8:30   ` Vinod Koul
2012-03-06  8:53     ` Guennadi Liakhovetski
2012-03-06 12:08       ` Vinod Koul
2012-03-06 13:03         ` Guennadi Liakhovetski
2012-03-07  6:28           ` Vinod Koul
2012-03-07  9:18             ` Guennadi Liakhovetski
2012-03-07  9:30               ` Russell King - ARM Linux
2012-03-07  9:55                 ` Linus Walleij
2012-03-07 10:02                 ` Guennadi Liakhovetski
2012-03-07 10:31                   ` Russell King - ARM Linux
2012-03-07 12:30                     ` Guennadi Liakhovetski
2012-03-07 12:45                       ` Guennadi Liakhovetski
2012-03-07 12:46                       ` Russell King - ARM Linux
2012-03-07 13:49                         ` Guennadi Liakhovetski
2012-03-07 14:26                           ` Russell King - ARM Linux
2012-03-07 15:44                             ` Guennadi Liakhovetski
2012-03-07 16:27                               ` Russell King - ARM Linux
2012-03-07 18:21                                 ` Guennadi Liakhovetski
2012-03-08  6:30                                   ` Vinod Koul
2012-03-08 10:16                                     ` Guennadi Liakhovetski
2012-03-08 10:55                                       ` Vinod Koul
2012-03-08 11:22                                         ` Guennadi Liakhovetski
2012-03-08 11:34                                           ` Vinod Koul
2012-03-08 12:58                                             ` Vinod Koul
2012-03-08 13:18                                               ` Guennadi Liakhovetski
2012-03-09  9:21                                                 ` Vinod Koul
2012-03-09  9:24                                                   ` Guennadi Liakhovetski
2012-03-09  9:39                                                     ` Vinod Koul
2012-03-09 12:20                                                       ` Guennadi Liakhovetski [this message]
2012-03-09 14:07                                                         ` Russell King - ARM Linux
2012-03-09 14:15                                                           ` Guennadi Liakhovetski
2012-03-12  2:47                                                         ` Vinod Koul
2012-03-12 19:47                                                           ` Linus Walleij
2012-03-16  9:36                                                           ` Guennadi Liakhovetski
2012-03-16 10:16                                                             ` Linus Walleij
2012-03-16 10:31                                                               ` Russell King - ARM Linux
2012-03-16 11:09                                                               ` Guennadi Liakhovetski
2012-03-16 14:11                                                                 ` Linus Walleij
2012-03-16 14:28                                                                   ` Guennadi Liakhovetski
2012-03-30  5:44                                                                     ` Linus Walleij
2012-03-30  6:40                                                                       ` Guennadi Liakhovetski
2012-03-30 10:38                                                                       ` Russell King - ARM Linux
2012-04-03 20:36                                                                         ` Linus Walleij
2012-04-03 20:44                                                                         ` Linus Walleij
2012-04-12 21:33                                                                           ` Guennadi Liakhovetski
2012-04-12 23:48                                                                             ` Russell King - ARM Linux
2012-03-30 10:29                                                                     ` Russell King - ARM Linux
2012-03-30 10:40                                                                       ` Guennadi Liakhovetski
2012-03-30 10:43                                                                         ` Russell King - ARM Linux
2012-03-19 11:58                                                                   ` Vinod Koul
2012-03-30 10:25                                                                 ` Russell King - ARM Linux
2012-03-19 11:39                                                               ` Vinod Koul
2012-03-19 11:37                                                             ` Vinod Koul
2012-03-19 11:47                                                               ` Guennadi Liakhovetski
2012-03-19 13:34                                                                 ` Vinod Koul
2012-03-19 13:38                                                                   ` Guennadi Liakhovetski
2012-03-19 14:00                                                                     ` Vinod Koul
2012-03-19 14:09                                                                       ` Guennadi Liakhovetski
2012-03-19 14:22                                                                         ` Vinod Koul
2012-03-19 14:45                                                                           ` Guennadi Liakhovetski
2012-03-19 16:20                                                                             ` Vinod Koul
2012-03-19 16:32                                                                               ` Guennadi Liakhovetski
2012-03-20  7:11                                                                                 ` Vinod Koul
2012-03-08 11:46                                       ` Linus Walleij
2012-03-08 12:36                                         ` Guennadi Liakhovetski
2012-03-07 16:31                         ` Linus Walleij
2012-03-07 16:20                     ` Linus Walleij
2012-03-07  9:46               ` Linus Walleij

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=Pine.LNX.4.64.1203091049060.7852@axis700.grange \
    --to=g.liakhovetski@gmx.de \
    --cc=jassisinghbrar@gmail.com \
    --cc=lethal@linux-sh.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=magnus.damm@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).