We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3aac153 + 4b3ce8e commit aeabcc9Copy full SHA for aeabcc9
cmsis/core_caFunc.h
@@ -811,6 +811,23 @@ __asm(
811
__STATIC_INLINE void __v7_inv_dcache_all(void) {
812
__v7_all_cache(0);
813
}
814
+/** \brief Clean the whole D$
815
+
816
+ DCCSW. Clean by Set/Way
817
+ */
818
819
+__STATIC_INLINE void __v7_clean_dcache_all(void) {
820
+ __v7_all_cache(1);
821
+}
822
823
+/** \brief Clean and invalidate the whole D$
824
825
+ DCCISW. Clean and Invalidate by Set/Way
826
827
828
+__STATIC_INLINE void __v7_clean_inv_dcache_all(void) {
829
+ __v7_all_cache(2);
830
831
/** \brief Clean and Invalidate D$ by MVA
832
833
DCCIMVAC. Data cache clean and invalidate by MVA to PoC
0 commit comments