svn commit: r331492 - stable/11/sys/powerpc/powerpc

Ian Lepore ian at FreeBSD.org
Sat Mar 24 18:06:35 UTC 2018


Author: ian
Date: Sat Mar 24 18:06:34 2018
New Revision: 331492
URL: https://svnweb.freebsd.org/changeset/base/331492

Log:
  To fix the powerpc build, back out r331184, which was this mfc:
  
  MFC r326859:
  
  Add identifier for POWER9 CPU to CPU list
  
  Without the identifier in the list booting FreeBSD results in printing the
  following (from a PowerKVM boot):
  
  cpu0: Unknown PowerPC CPU revision 0x1201, 2550.00 MHz
  
  For now, add the same feature list as POWER8.  As new capabilities are added to
  support POWER9 specific features, they will be added to this.
  
  PR:		224344

Modified:
  stable/11/sys/powerpc/powerpc/cpu.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/powerpc/powerpc/cpu.c
==============================================================================
--- stable/11/sys/powerpc/powerpc/cpu.c	Sat Mar 24 15:36:25 2018	(r331491)
+++ stable/11/sys/powerpc/powerpc/cpu.c	Sat Mar 24 18:06:34 2018	(r331492)
@@ -163,12 +163,6 @@ static const struct cputab models[] = {
 	   PPC_FEATURE_HAS_VSX,
 	   PPC_FEATURE2_ARCH_2_07 | PPC_FEATURE2_HAS_HTM |
 	   PPC_FEATURE2_HAS_VCRYPTO, NULL },
-        { "IBM POWER9",		IBMPOWER9,	REVFMT_MAJMIN,
-	   PPC_FEATURE_64 | PPC_FEATURE_HAS_ALTIVEC | PPC_FEATURE_HAS_FPU |
-	   PPC_FEATURE_SMT | PPC_FEATURE_ARCH_2_05 | PPC_FEATURE_ARCH_2_06 |
-	   PPC_FEATURE_HAS_VSX,
-	   PPC_FEATURE2_ARCH_2_07 | PPC_FEATURE2_HAS_HTM | PPC_FEATURE2_ISEL |
-	   PPC_FEATURE2_HAS_VCRYPTO, NULL },
         { "Motorola PowerPC 7400",	MPC7400,	REVFMT_MAJMIN,
 	   PPC_FEATURE_HAS_ALTIVEC | PPC_FEATURE_HAS_FPU, 0, cpu_6xx_setup },
         { "Motorola PowerPC 7410",	MPC7410,	REVFMT_MAJMIN,


More information about the svn-src-all mailing list