By entering this site you need to consent to the use of cookies and their functional use according to this privacy policy. Cookies help us to provide the functional services of the website. Kindly read the below message of use and consent to the use.
The following cookies are stored and shared when accessing this website:
- Internal cookies for the MediaWiki site. This is used for user authentication and article modifications.
- Third-party cookies from Google providing services for Google AdSense and Google Analytics
We will never use data collected outside of the above scope.
Note: this is inlined, however it uses instructions that no compiler has intrinsics for (and looks like hand-written asm), so it's presumably its own thing.
+
+
<pre>
+
// Invalidate Local Cache
+
KernelLdr_InvalidateCacheLocal();
+
__dsb_sy();
+
+
// Invalidate Share
+
KernelLdr_InvalidateCacheShared();
+
__dsb_sy();
+
+
// Invalidate Local Cache again
+
KernelLdr_InvalidateCacheLocal();
+
__dsb_sy();
+
+
// asm { tlbi vmallelis; }
+
__dsb_sy();
+
__isb();
+
</pre>
+
+
== KernelLdr_InvalidateCacheLocal ==
+
+
Standard ARM cache clean code, uses LoUIS from CLIDR_EL1.
+
+
== KernelLdr_InvalidateCacheShared ==
+
+
Standard ARM cache clean code, uses LoUIS + LoC from CLIDR_EL1.