aboutsummaryrefslogtreecommitdiff
path: root/src/arm
diff options
context:
space:
mode:
authorMarat Dukhan <marat@fb.com>2018-10-05 13:52:20 -0700
committerMarat Dukhan <marat@fb.com>2018-10-05 13:52:20 -0700
commitc342292afb040c868849bc15e96ab894dceba2bc (patch)
tree15f186c87eef51b4b5d0be83ad58a163fc12fffb /src/arm
parentfd54c3da89cac547fa04098b5572616895e4ae3f (diff)
downloadcpuinfo-c342292afb040c868849bc15e96ab894dceba2bc.tar.gz
Update MIDR scoring for Meerkat and Cortex-A76 cores
Diffstat (limited to 'src/arm')
-rw-r--r--src/arm/midr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arm/midr.h b/src/arm/midr.h
index acfb8ed..6363ed7 100644
--- a/src/arm/midr.h
+++ b/src/arm/midr.h
@@ -173,9 +173,12 @@ inline static uint32_t midr_score_core(uint32_t midr) {
switch (midr & core_mask) {
case UINT32_C(0x4E000030): /* Denver 2 */
case UINT32_C(0x53000010): /* Mongoose */
+ case UINT32_C(0x53000020): /* Meerkat */
case UINT32_C(0x51008020): /* Kryo 385 Gold */
case UINT32_C(0x51008000): /* Kryo 260 / 280 Gold */
case UINT32_C(0x51002050): /* Kryo Gold */
+ case UINT32_C(0x4800D400): /* Cortex-A76 (HiSilicon) */
+ case UINT32_C(0x4100D0B0): /* Cortex-A76 */
case UINT32_C(0x4100D0A0): /* Cortex-A75 */
case UINT32_C(0x4100D090): /* Cortex-A73 */
case UINT32_C(0x4100D080): /* Cortex-A72 */