summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMary Ruthven <mruthven@chromium.org>2021-11-09 15:53:07 -0600
committerCommit Bot <commit-bot@chromium.org>2021-11-18 04:49:05 +0000
commitd0dcd048e1d26562512afc78fd8514bb7b563aae (patch)
treea4316d39e7870e88a7184d5b7a78743c91624f03 /core
parent30defb177b420a6572874f1ba19ed31edce17153 (diff)
downloadchrome-ec-d0dcd048e1d26562512afc78fd8514bb7b563aae.tar.gz
Revert "mt_scp: Add functions to clean/invalidated selected ranges of D-cache"
This reverts commit 153c90a2026f1ae56705e4880e2461354d1ac9af. BUG=b:200823466 TEST=make buildall -j Change-Id: I672b5f2f4703309f7034b39da051b76f3571330d Signed-off-by: Mary Ruthven <mruthven@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3273398 Reviewed-by: Vadim Sukhomlinov <sukhomlinov@chromium.org>
Diffstat (limited to 'core')
-rw-r--r--core/cortex-m/cpu.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/cortex-m/cpu.h b/core/cortex-m/cpu.h
index 47c7d0bca1..504a0ca8df 100644
--- a/core/cortex-m/cpu.h
+++ b/core/cortex-m/cpu.h
@@ -72,9 +72,9 @@ void cpu_invalidate_dcache(void);
/* Clean and Invalidate the D-cache to the Point of Coherency */
void cpu_clean_invalidate_dcache(void);
-/* Invalidate a single range of the D-cache */
-void cpu_invalidate_dcache_range(uintptr_t base, unsigned int length);
-/* Clean and Invalidate a single range of the D-cache */
-void cpu_clean_invalidate_dcache_range(uintptr_t base, unsigned int length);
+/* Invalidate a single address of the D-cache */
+void cpu_invalidate_dcache_address(uintptr_t address);
+/* Clean and Invalidate a single address of the D-cache */
+void cpu_clean_invalidate_dcache_address(uintptr_t address);
#endif /* __CROS_EC_CPU_H */