Date: Thu, 7 Sep 2017 19:51:18 +0000 (UTC) From: Andrew Turner <andrew@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r323282 - head/sys/arm64/arm64 Message-ID: <201709071951.v87JpINJ011736@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: andrew Date: Thu Sep 7 19:51:17 2017 New Revision: 323282 URL: https://svnweb.freebsd.org/changeset/base/323282 Log: Add the ATS1E1 case to the ID_AA64MMFR1_EL1 decoding. Sponsored by: DARPA, AFRL Modified: head/sys/arm64/arm64/identcpu.c Modified: head/sys/arm64/arm64/identcpu.c ============================================================================== --- head/sys/arm64/arm64/identcpu.c Thu Sep 7 19:23:08 2017 (r323281) +++ head/sys/arm64/arm64/identcpu.c Thu Sep 7 19:51:17 2017 (r323282) @@ -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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709071951.v87JpINJ011736>