svn commit: r323282 - head/sys/arm64/arm64

Andrew Turner andrew at FreeBSD.org
Thu Sep 7 19:51:19 UTC 2017


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;


More information about the svn-src-all mailing list