From: Florian Meier <florian.meier-oZ8rN/sblLk@public.gmane.org>
To: Andy Shevchenko
<andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
Cc: Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>,
"Koul,
Vinod" <vinod.koul-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
"Williams,
Dan J" <dan.j.williams-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
Russell King - ARM Linux
<linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>,
devicetree <devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
"alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org"
<alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org>,
Liam Girdwood <lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
"linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
linux-rpi-kernel
<linux-rpi-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>,
dmaengine <dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
"linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org"
<linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>
Subject: Re: [PATCHv7] dmaengine: Add support for BCM2835
Date: Mon, 18 Nov 2013 15:37:01 +0100 [thread overview]
Message-ID: <528A260D.7090807@koalo.de> (raw)
In-Reply-To: <1384785017.14845.214.camel@smile>
>>>> +static enum dma_status bcm2835_dma_tx_status(struct dma_chan *chan,
>>>> + dma_cookie_t cookie, struct dma_tx_state *txstate)
>>>> +{
>>>
>>> []
>>>
>>>> + } else {
>>>> + txstate->residue = 0;
>>>
>>> Useless assignment since dmaengine will do this for you in
>>> dma_cookie_status.
>>
>> I agree that it is useless, but I think otherwise it might be concealed
>> that there is a third case left that uses a residue of 0. Do you think a
>> comment is better? E.g.:
>>
>> + } else {
>> + /* residue = 0 per default */
>
> I think like in many other DMA drivers either you have separate function
> to get residue, which returns 0, or just not include this case.
You mean like in the omap-dma.c? ;-P
>>>> +static int bcm2835_dma_probe(struct platform_device *pdev)
>>>> +{
>
>>>> + uint32_t chans_available;
>>>
>>> Why uint32_t?
>>
>> Because it is a bit mask of fixed length that directly comes from the
>> firmware.
>
> Like one already told you in your i2s patch, please, change that to
> corresponding u* value, namely u32.
I have no problem with changing that, but why?
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: florian.meier@koalo.de (Florian Meier)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCHv7] dmaengine: Add support for BCM2835
Date: Mon, 18 Nov 2013 15:37:01 +0100 [thread overview]
Message-ID: <528A260D.7090807@koalo.de> (raw)
In-Reply-To: <1384785017.14845.214.camel@smile>
>>>> +static enum dma_status bcm2835_dma_tx_status(struct dma_chan *chan,
>>>> + dma_cookie_t cookie, struct dma_tx_state *txstate)
>>>> +{
>>>
>>> []
>>>
>>>> + } else {
>>>> + txstate->residue = 0;
>>>
>>> Useless assignment since dmaengine will do this for you in
>>> dma_cookie_status.
>>
>> I agree that it is useless, but I think otherwise it might be concealed
>> that there is a third case left that uses a residue of 0. Do you think a
>> comment is better? E.g.:
>>
>> + } else {
>> + /* residue = 0 per default */
>
> I think like in many other DMA drivers either you have separate function
> to get residue, which returns 0, or just not include this case.
You mean like in the omap-dma.c? ;-P
>>>> +static int bcm2835_dma_probe(struct platform_device *pdev)
>>>> +{
>
>>>> + uint32_t chans_available;
>>>
>>> Why uint32_t?
>>
>> Because it is a bit mask of fixed length that directly comes from the
>> firmware.
>
> Like one already told you in your i2s patch, please, change that to
> corresponding u* value, namely u32.
I have no problem with changing that, but why?
WARNING: multiple messages have this Message-ID (diff)
From: Florian Meier <florian.meier@koalo.de>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Stephen Warren <swarren@wwwdotorg.org>,
"Koul, Vinod" <vinod.koul@intel.com>,
"Williams, Dan J" <dan.j.williams@intel.com>,
Russell King - ARM Linux <linux@arm.linux.org.uk>,
devicetree <devicetree@vger.kernel.org>,
"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
Liam Girdwood <lgirdwood@gmail.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Mark Brown <broonie@kernel.org>,
linux-rpi-kernel <linux-rpi-kernel@lists.infradead.org>,
dmaengine <dmaengine@vger.kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCHv7] dmaengine: Add support for BCM2835
Date: Mon, 18 Nov 2013 15:37:01 +0100 [thread overview]
Message-ID: <528A260D.7090807@koalo.de> (raw)
In-Reply-To: <1384785017.14845.214.camel@smile>
>>>> +static enum dma_status bcm2835_dma_tx_status(struct dma_chan *chan,
>>>> + dma_cookie_t cookie, struct dma_tx_state *txstate)
>>>> +{
>>>
>>> []
>>>
>>>> + } else {
>>>> + txstate->residue = 0;
>>>
>>> Useless assignment since dmaengine will do this for you in
>>> dma_cookie_status.
>>
>> I agree that it is useless, but I think otherwise it might be concealed
>> that there is a third case left that uses a residue of 0. Do you think a
>> comment is better? E.g.:
>>
>> + } else {
>> + /* residue = 0 per default */
>
> I think like in many other DMA drivers either you have separate function
> to get residue, which returns 0, or just not include this case.
You mean like in the omap-dma.c? ;-P
>>>> +static int bcm2835_dma_probe(struct platform_device *pdev)
>>>> +{
>
>>>> + uint32_t chans_available;
>>>
>>> Why uint32_t?
>>
>> Because it is a bit mask of fixed length that directly comes from the
>> firmware.
>
> Like one already told you in your i2s patch, please, change that to
> corresponding u* value, namely u32.
I have no problem with changing that, but why?
next prev parent reply other threads:[~2013-11-18 14:37 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-17 15:39 [PATCHv7] dmaengine: Add support for BCM2835 Florian Meier
2013-11-17 15:39 ` Florian Meier
[not found] ` <5288E327.8050809-oZ8rN/sblLk@public.gmane.org>
2013-11-17 16:02 ` Joe Perches
2013-11-17 16:02 ` Joe Perches
2013-11-17 16:02 ` Joe Perches
2013-11-17 16:37 ` Florian Meier
2013-11-17 16:37 ` Florian Meier
2013-11-17 16:37 ` Florian Meier
2013-11-17 20:12 ` [PATCH] mmp_pdma: Style neatening Joe Perches
2013-11-17 20:12 ` Joe Perches
2013-11-17 20:12 ` Joe Perches
2013-11-28 9:34 ` Vinod Koul
2013-11-28 9:34 ` Vinod Koul
2013-11-18 10:00 ` [PATCHv7] dmaengine: Add support for BCM2835 Shevchenko, Andriy
2013-11-18 10:00 ` Shevchenko, Andriy
2013-11-18 10:00 ` Shevchenko, Andriy
2013-11-18 12:16 ` Florian Meier
2013-11-18 12:16 ` Florian Meier
2013-11-18 12:16 ` Florian Meier
[not found] ` <528A051A.7000703-oZ8rN/sblLk@public.gmane.org>
2013-11-18 14:30 ` Andy Shevchenko
2013-11-18 14:30 ` Andy Shevchenko
2013-11-18 14:30 ` Andy Shevchenko
2013-11-18 14:37 ` Florian Meier [this message]
2013-11-18 14:37 ` Florian Meier
2013-11-18 14:37 ` Florian Meier
2013-11-18 14:54 ` Russell King - ARM Linux
2013-11-18 14:54 ` Russell King - ARM Linux
2013-11-18 14:54 ` Russell King - ARM Linux
[not found] ` <20131118145400.GE16735-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2013-11-18 15:04 ` Mark Rutland
2013-11-18 15:04 ` Mark Rutland
2013-11-18 15:04 ` Mark Rutland
2013-11-18 22:18 ` Joe Perches
2013-11-18 22:18 ` Joe Perches
2013-11-18 22:18 ` Joe Perches
2013-11-18 14:41 ` Mark Rutland
2013-11-18 14:41 ` Mark Rutland
2013-11-18 14:41 ` Mark Rutland
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=528A260D.7090807@koalo.de \
--to=florian.meier-oz8rn/sbllk@public.gmane.org \
--cc=alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org \
--cc=andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org \
--cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=dan.j.williams-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
--cc=linux-rpi-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=swarren-3lzwWm7+Weoh9ZMKESR00Q@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 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.