Last active
January 6, 2024 17:06
-
-
Save jannau/079ce2d5a35fedcdaad7bd9e71bac9c9 to your computer and use it in GitHub Desktop.
M3 CPU ID regs (everest, p-core)?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> u.mrs(ID_AA64ISAR0_EL1) | |
0x221100110212120 | |
>>> u.mrs(ID_AA64ISAR1_EL1) | |
0x10111110211402 | |
>>> u.mrs(ID_AA64ISAR2_EL1) | |
0x10 | |
>>> u.mrs(ID_AA64MMFR0_EL1) | |
0x110012120f100003 | |
>>> u.mrs(ID_AA64MMFR1_EL1) | |
0x111111312100 | |
>>> u.mrs(ID_AA64MMFR2_EL1) | |
0x1201011102001011 | |
>>> u.mrs(ID_AA64PFR0_EL1) | |
0x1101000010110111 | |
>>> u.mrs(ID_AA64PFR1_EL1) | |
0x100000021 | |
>>> u.mrs(ID_AA64DFR0_EL1) | |
0x10305f09 | |
>>> u.mrs(ID_AA64DFR1_EL1) | |
0x0 | |
>>> u.mrs(MIDR_EL1) | |
0x612f0430 | |
>>> u.mrs(MPIDR_EL1) | |
0x80010100 | |
>>> u.mrs(REVIDR_EL1) | |
0x0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment