LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Haavard Skinnemoen <hskinnemoen@atmel.com> To: linux-kernel@vger.kernel.org, Dan Williams <dan.j.williams@intel.com> Cc: Shannon Nelson <shannon.nelson@intel.com>, David Brownell <david-b@pacbell.net>, kernel@avr32linux.org, "Francis Moreau" <francis.moro@gmail.com>, "Paul Mundt" <lethal@linux-sh.org>, "Vladimir A. Barinov" <vbarinov@ru.mvista.com>, Pierre Ossman <drzeus-list@drzeus.cx>, Haavard Skinnemoen <hskinnemoen@atmel.com> Subject: [RFC v3 3/7] dmaengine: Add dma_chan_is_in_use() function Date: Tue, 12 Feb 2008 17:43:54 +0100 [thread overview] Message-ID: <1202834638-9009-3-git-send-email-hskinnemoen@atmel.com> (raw) In-Reply-To: <1202834638-9009-2-git-send-email-hskinnemoen@atmel.com> This moves the code checking if a DMA channel is in use from show_in_use() into an inline helper function, dma_is_in_use(). DMA controllers can use this in order to give clients exclusive access to channels (usually necessary when setting up slave DMA.) I have to admit that I don't really understand the channel refcounting logic at all... dma_chan_get() simply increments a per-cpu value. How can we be sure that whatever CPU calls dma_chan_is_in_use() sees the same value? Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> --- drivers/dma/dmaengine.c | 12 +----------- include/linux/dmaengine.h | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c index 9d11f06..3076d80 100644 --- a/drivers/dma/dmaengine.c +++ b/drivers/dma/dmaengine.c @@ -105,17 +105,7 @@ static ssize_t show_bytes_transferred(struct device *dev, struct device_attribut static ssize_t show_in_use(struct device *dev, struct device_attribute *attr, char *buf) { struct dma_chan *chan = to_dma_chan(dev); - int in_use = 0; - - if (unlikely(chan->slow_ref) && - atomic_read(&chan->refcount.refcount) > 1) - in_use = 1; - else { - if (local_read(&(per_cpu_ptr(chan->local, - get_cpu())->refcount)) > 0) - in_use = 1; - put_cpu(); - } + int in_use = dma_chan_is_in_use(chan); return sprintf(buf, "%d\n", in_use); } diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 9cd7ed9..5d9a3a2 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h @@ -175,6 +175,23 @@ static inline void dma_chan_put(struct dma_chan *chan) } } +static inline bool dma_chan_is_in_use(struct dma_chan *chan) +{ + bool in_use = false; + + if (unlikely(chan->slow_ref) && + atomic_read(&chan->refcount.refcount) > 1) + in_use = true; + else { + if (local_read(&(per_cpu_ptr(chan->local, + get_cpu())->refcount)) > 0) + in_use = true; + put_cpu(); + } + + return in_use; +} + /* * typedef dma_event_callback - function pointer to a DMA event callback * For each channel added to the system this routine is called for each client. -- 1.5.3.8
next prev parent reply other threads:[~2008-02-12 16:44 UTC|newest] Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top 2008-02-12 16:43 [RFC v3 1/7] dmaengine: Couple DMA channels to their physical DMA device Haavard Skinnemoen 2008-02-12 16:43 ` [RFC v3 2/7] dmaengine: Add dma_client parameter to device_alloc_chan_resources Haavard Skinnemoen 2008-02-12 16:43 ` Haavard Skinnemoen [this message] 2008-02-12 16:43 ` [RFC v3 4/7] dmaengine: Add slave DMA interface Haavard Skinnemoen 2008-02-12 16:43 ` [RFC v3 5/7] dmaengine: Make DMA Engine menu visible for AVR32 users Haavard Skinnemoen 2008-02-12 16:43 ` [RFC v3 6/7] dmaengine: Driver for the Synopsys DesignWare DMA controller Haavard Skinnemoen 2008-02-12 16:43 ` [RFC v3 7/7] Atmel MCI: Driver for Atmel on-chip MMC controllers Haavard Skinnemoen 2008-02-12 20:43 ` [RFC v3 5/7] dmaengine: Make DMA Engine menu visible for AVR32 users Olof Johansson 2008-02-12 22:13 ` Haavard Skinnemoen 2008-02-12 22:27 ` Dan Williams 2008-02-13 8:44 ` Haavard Skinnemoen 2008-02-13 7:21 ` [RFC v3 4/7] dmaengine: Add slave DMA interface Dan Williams 2008-02-13 8:03 ` Haavard Skinnemoen 2008-02-13 19:07 ` Dan Williams 2008-02-13 19:24 ` Haavard Skinnemoen 2008-02-15 9:53 ` Haavard Skinnemoen 2008-02-15 17:12 ` Nelson, Shannon 2008-02-18 13:29 ` Haavard Skinnemoen 2008-02-19 18:46 ` Nelson, Shannon 2008-02-16 20:06 ` Dan Williams 2008-02-18 13:22 ` Haavard Skinnemoen 2008-02-18 22:42 ` Dan Williams
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=1202834638-9009-3-git-send-email-hskinnemoen@atmel.com \ --to=hskinnemoen@atmel.com \ --cc=dan.j.williams@intel.com \ --cc=david-b@pacbell.net \ --cc=drzeus-list@drzeus.cx \ --cc=francis.moro@gmail.com \ --cc=kernel@avr32linux.org \ --cc=lethal@linux-sh.org \ --cc=linux-kernel@vger.kernel.org \ --cc=shannon.nelson@intel.com \ --cc=vbarinov@ru.mvista.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: linkBe 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).