summaryrefslogtreecommitdiff
path: root/core/cortex-m/cpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/cortex-m/cpu.h')
-rw-r--r--core/cortex-m/cpu.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/cortex-m/cpu.h b/core/cortex-m/cpu.h
index a6029e2e7e..7f91b33179 100644
--- a/core/cortex-m/cpu.h
+++ b/core/cortex-m/cpu.h
@@ -71,4 +71,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 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 */