devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jon Hunter <jonathanh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
To: Vinod Koul <vinod.koul-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: Laxman Dewangan
	<ldewangan-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
	Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>,
	Thierry Reding
	<thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Alexandre Courbot
	<gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Pawel Moll <pawel.moll-5wv7dgnIgG8@public.gmane.org>,
	Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>,
	Ian Campbell
	<ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org>,
	Kumar Gala <galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>,
	dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH V4 2/3] dmaengine: tegra-adma: Add support for Tegra210 ADMA
Date: Tue, 12 Apr 2016 17:23:32 +0100	[thread overview]
Message-ID: <570D2104.1040607@nvidia.com> (raw)
In-Reply-To: <20160412141025.GJ2274@localhost>


On 12/04/16 15:10, Vinod Koul wrote:
> On Mon, Apr 11, 2016 at 03:09:05PM +0100, Jon Hunter wrote:
>> On 05/04/16 22:36, Vinod Koul wrote:
>>> On Tue, Mar 15, 2016 at 03:56:29PM +0000, Jon Hunter wrote:

[snip]

>> So, AFAICT, dma_async_device_register() does not check to see if
>> device_prep_slave_sg() is valid AND none of the functions
>> dmaengine_prep_slave_single(), dmaengine_prep_slave_single() and
>> dmaengine_prep_rio_sg() check to see if the function pointer is valid
>> before calling chan->device->device_prep_slave_sg(). So it seems that we
>> always expect this function pointer to be valid.
>>
>> So should the inline functions ensure the function pointer is valid
>> before attempting to call them? If so I can add a patch for this.
>> Otherwise it seems the driver needs a stub. It would be a massive change
>> to add a new capability, say SLAVE_SG, and populate this for all
>> existing drivers.
> 
> No we should check here, it's indeed a miss, not sure why none complained
> about this. I was assuming this is due to caps not considering cyclic case,
> so I fixed that up.
> 
> I will fix these cases too, thanks for reporting

Ok, great.

>>>> +static const struct tegra_adma_chip_data tegra210_chip_data = {
>>>> +	.nr_channels = 22,
>>>> +};
>>>
>>> why should this be hard coded in kernel and not queried from something like
>>> DT? This case seems to be hardware property
>>
>> Originally, I did have this in DT, however, the Tegra maintainers prefer
>> this and this is consistent with the other Tegra DMA driver (see
>> driver/dma/tegra20-apb-dma.c) [0].
> 
> But this creates a problem when you have next generation of controller with
> different channel count!
> How do we solve then?

Same way we solve this for the tegra20-apb-dma driver by having
different chip data per SoC in the driver ...

1259 /* Tegra20 specific DMA controller information */
1260 static const struct tegra_dma_chip_data tegra20_dma_chip_data = {
1261         .nr_channels            = 16,
1262         .channel_reg_size       = 0x20,
1263         .max_dma_count          = 1024UL * 64,
1264         .support_channel_pause  = false,
1265         .support_separate_wcount_reg = false,
1266 };
1267
1268 /* Tegra30 specific DMA controller information */
1269 static const struct tegra_dma_chip_data tegra30_dma_chip_data = {
1270         .nr_channels            = 32,
1271         .channel_reg_size       = 0x20,
1272         .max_dma_count          = 1024UL * 64,
1273         .support_channel_pause  = false,
1274         .support_separate_wcount_reg = false,
1275 };
1276
1277 /* Tegra114 specific DMA controller information */
1278 static const struct tegra_dma_chip_data tegra114_dma_chip_data = {
1279         .nr_channels            = 32,
1280         .channel_reg_size       = 0x20,
1281         .max_dma_count          = 1024UL * 64,
1282         .support_channel_pause  = true,
1283         .support_separate_wcount_reg = false,
1284 };
1285
1286 /* Tegra148 specific DMA controller information */
1287 static const struct tegra_dma_chip_data tegra148_dma_chip_data = {
1288         .nr_channels            = 32,
1289         .channel_reg_size       = 0x40,
1290         .max_dma_count          = 1024UL * 64,
1291         .support_channel_pause  = true,
1292         .support_separate_wcount_reg = true,
1293 };

You may still say this should be in the DT, but the Tegra maintainers
prefer this data in the driver.

>>>> +	dma_cap_set(DMA_SLAVE, tdma->dma_dev.cap_mask);
>>>> +	dma_cap_set(DMA_PRIVATE, tdma->dma_dev.cap_mask);
>>>> +	dma_cap_set(DMA_CYCLIC, tdma->dma_dev.cap_mask);
>>>
>>> I think you should not set DMA_SLAVE, do you need caps to be exported. I
>>> think that should be exported for cyclic too, let me know if that was the
>>> issue?
>>>
>>
>> Why should I not be setting DMA_SLAVE? Should I not be calling
>> dma_get_any_slave_channel() in the xlate?
>>
>> I think that I do want to set DMA_CYCLIC as well to ensure that we check
>> that the device->device_prep_dma_cyclic() function pointer is populated
>> when registering the DMA controller.
> 
> Only setting DMA_CYCLIC should do, if you see any issues around that please
> get back, we cna fix those :)

It did not work for me because dma_get_any_slave_channel() wants a DMA
device with the DMA_SLAVE bit capability set. So if I remove this above,
then requesting the channel fails via dma_get_any_slave_channel() fails.
Is there something I don't understand here?

Cheers
Jon

  reply	other threads:[~2016-04-12 16:23 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-15 15:56 [PATCH V4 0/3] Add support for Tegra210 ADMA Jon Hunter
     [not found] ` <1458057390-20756-1-git-send-email-jonathanh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-03-15 15:56   ` [PATCH V4 1/3] Documentation: DT: Add binding documentation for NVIDIA ADMA Jon Hunter
     [not found]     ` <1458057390-20756-2-git-send-email-jonathanh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-03-18 21:16       ` Rob Herring
2016-03-15 15:56   ` [PATCH V4 2/3] dmaengine: tegra-adma: Add support for Tegra210 ADMA Jon Hunter
     [not found]     ` <1458057390-20756-3-git-send-email-jonathanh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-04-05 21:36       ` Vinod Koul
     [not found]         ` <20160405213649.GA11586-bQVUxfxUtC13uc1i7fC1zK2pdiUAq4bhAL8bYrjMMd8@public.gmane.org>
2016-04-11 14:09           ` Jon Hunter
     [not found]             ` <570BB001.3020202-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-04-12 14:10               ` Vinod Koul
2016-04-12 16:23                 ` Jon Hunter [this message]
     [not found]                   ` <570D2104.1040607-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-04-13 13:49                     ` Vinod Koul
2016-04-13 17:20                       ` Stephen Warren
2016-04-14 11:04                       ` Jon Hunter
     [not found]                         ` <570F7952.2030606-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-04-18 15:06                           ` Jon Hunter
     [not found]                             ` <5714F7EF.5000605-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-04-19 13:25                               ` Vinod Koul
2016-04-19 13:59                                 ` Jon Hunter
     [not found]                                   ` <571639D5.10108-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-04-19 14:18                                     ` Arnd Bergmann
2016-04-19 14:54                                       ` Jon Hunter
     [not found]                                         ` <571646A3.1060400-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2016-04-19 15:13                                           ` Vinod Koul
2016-03-15 15:56   ` [PATCH V4 3/3] MAINTAINERS: Update Tegra DMA maintainers Jon Hunter
2016-03-28 12:39   ` [PATCH V4 0/3] Add support for Tegra210 ADMA Jon Hunter

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=570D2104.1040607@nvidia.com \
    --to=jonathanh-ddmlm1+adcrqt0dzr+alfa@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
    --cc=gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org \
    --cc=ldewangan-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
    --cc=linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
    --cc=pawel.moll-5wv7dgnIgG8@public.gmane.org \
    --cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org \
    --cc=thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=vinod.koul-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    /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).