From: Gary Bisson <gary.bisson@boundarydevices.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] arm: cache: exit maintenance functions when cache disabled
Date: Fri, 10 Mar 2017 12:26:36 +0100 [thread overview]
Message-ID: <20170310112636.7999-1-gary.bisson@boundarydevices.com> (raw)
No need to check the region range and send commands when the cache
isn't even enabled.
Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
---
Hi all,
This is a follow-up to this thread:
https://lists.denx.de/pipermail/u-boot/2017-March/283423.html
Although what started the conversation was the sparse-image flashing
procedure, it appears cache maintenance functions don't check on cache
status.
Regards,
Gary
---
arch/arm/cpu/armv7/cache_v7.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/arch/arm/cpu/armv7/cache_v7.c b/arch/arm/cpu/armv7/cache_v7.c
index c4bbcc3cc3..992cdeaa6e 100644
--- a/arch/arm/cpu/armv7/cache_v7.c
+++ b/arch/arm/cpu/armv7/cache_v7.c
@@ -117,6 +117,9 @@ void flush_dcache_all(void)
*/
void invalidate_dcache_range(unsigned long start, unsigned long stop)
{
+ if (!dcache_status())
+ return;
+
check_cache_range(start, stop);
v7_dcache_maint_range(start, stop, ARMV7_DCACHE_INVAL_RANGE);
@@ -131,6 +134,9 @@ void invalidate_dcache_range(unsigned long start, unsigned long stop)
*/
void flush_dcache_range(unsigned long start, unsigned long stop)
{
+ if (!dcache_status())
+ return;
+
check_cache_range(start, stop);
v7_dcache_maint_range(start, stop, ARMV7_DCACHE_CLEAN_INVAL_RANGE);
--
2.11.0
next reply other threads:[~2017-03-10 11:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-10 11:26 Gary Bisson [this message]
2017-03-10 11:49 ` [U-Boot] [PATCH] arm: cache: exit maintenance functions when cache disabled Siarhei Siamashka
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=20170310112636.7999-1-gary.bisson@boundarydevices.com \
--to=gary.bisson@boundarydevices.com \
--cc=u-boot@lists.denx.de \
/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