From: Eli Billauer <eli@billauer.co.il>
To: LKML <linux-kernel@vger.kernel.org>
Cc: monstr@monstr.eu
Subject: Re: [PATCH] arch/microblaze: Added sync method support for DMA and made refinements
Date: Fri, 02 Sep 2011 18:12:48 +0300 [thread overview]
Message-ID: <4E60F270.4020208@billauer.co.il> (raw)
In-Reply-To: <4E60CCE9.5050900@monstr.eu>
Michal Simek wrote:
>
> DMA_TO_DEVICE is fine - data has to be flushed.
>
> For DMA_FROM_DEVICE you expect that allocated space will contains data
> from device.
> Which means if you flush them, they will be rewritten by DMA in the
> next step.
> Which means that IMHO you can invalidate them which is faster than
> flushing.
The flushing is only necessary when a certain memory region is written
to, not flushed, and then allocated for DMA from device. This is not
what drivers usually do, but it's nevertheless legal to do so. Maybe it
can also happen as a result of memory being freed but not flushed, and
then allocated as a DMA buffer. So this flushing prevents, at most, an
extremely rare problem. I don't expect to see something go wrong right
away in the lack of this flush.
In light of this, I can't see why flushing would be slower than
invalidation, if the cache lines aren't expected to be dirty except for
very rare conditions.
As for invalidation of a dirty cache line: Looking at the Microblaze
reference manual's description of the wdc instruction, I'm under the
impression that each cache line has two flags: Valid and Dirty, as they
appear in the pseudocode. I'm not on the clear about what happens if a
dirty cache line is invalidated. It would make sense to clear both
flags. It also makes sense to write the data back to the RAM in this
case. But I really don't know what's actually implemented.
Patch with the corrections soon to be posted.
Eli
--
Web: http://www.billauer.co.il
next prev parent reply other threads:[~2011-09-02 15:08 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-02 9:31 [PATCH] arch/microblaze: Added sync method support for DMA and made refinements Eli Billauer
2011-09-02 12:32 ` Michal Simek
2011-09-02 15:12 ` Eli Billauer [this message]
2011-09-09 9:16 ` Michal Simek
2011-09-02 15:15 ` [PATCH] Added sync method support for DMA and made refinements (Take II) Eli Billauer
2011-09-09 9:19 ` Michal Simek
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=4E60F270.4020208@billauer.co.il \
--to=eli@billauer.co.il \
--cc=linux-kernel@vger.kernel.org \
--cc=monstr@monstr.eu \
/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.