You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a fairly old bug. Please let me know if I should create another instead of adding to it.
Some ARM64 hardware does not have a single cache line size. bigLITTLE configurations can have one cache line size for one set of cores and a different one for the other set. See below:
The above link shows an example of this on Exynos systems. For most of the uses I find in the code (alignment) it seems like going with the larger size would work, but for cache line clearing you may run into the same bug the Mono guys did.
Oh, and Exynos cache line sizes are 64 for the little cores and 128 for the big ones. At least that version of Exynos.
Will update. I've already fixed this on this magenta side of things (which forks from this project). At some point I'll probably switch it over to some sort of detection mechanism, but since LK primarily runs on thigns that is is compiled to, there hasn't been a big desire.
In lk/arch/arm64/include/arch/defines.h file:
define CACHE_LINE 32
But actually the cortex-a53, cortex-a57 and cortex-a72 cache line size is 64 bytes.
The text was updated successfully, but these errors were encountered: