From 130be885e66c71bc9532c6a25398ceb036fd9d3d Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Thu, 7 Sep 2017 19:51:17 +0000 Subject: [PATCH] Add the ATS1E1 case to the ID_AA64MMFR1_EL1 decoding. Sponsored by: DARPA, AFRL --- sys/arm64/arm64/identcpu.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/arm64/arm64/identcpu.c b/sys/arm64/arm64/identcpu.c index e753e9264444..2c7f7764265f 100644 --- a/sys/arm64/arm64/identcpu.c +++ b/sys/arm64/arm64/identcpu.c @@ -608,6 +608,9 @@ print_cpu_features(u_int cpu) case ID_AA64MMFR1_PAN_IMPL: printf("%sPAN", SEP_STR); break; + case ID_AA64MMFR1_PAN_ATS1E1: + printf("%sPAN+AT", SEP_STR); + break; default: printf("%sUnknown PAN", SEP_STR); break;