svn commit: r292858 - head/sys/powerpc/powerpc

Justin Hibbits jhibbits at FreeBSD.org
Tue Dec 29 03:31:07 UTC 2015


Author: jhibbits
Date: Tue Dec 29 03:31:06 2015
New Revision: 292858
URL: https://svnweb.freebsd.org/changeset/base/292858

Log:
  Update capabilities of e500mc, e5500, e6500.

Modified:
  head/sys/powerpc/powerpc/cpu.c

Modified: head/sys/powerpc/powerpc/cpu.c
==============================================================================
--- head/sys/powerpc/powerpc/cpu.c	Tue Dec 29 01:21:40 2015	(r292857)
+++ head/sys/powerpc/powerpc/cpu.c	Tue Dec 29 03:31:06 2015	(r292858)
@@ -175,9 +175,12 @@ static const struct cputab models[] = {
         { "Freescale e500v2 core",	FSL_E500v2,	REVFMT_MAJMIN,
 	   0, cpu_booke_setup },
 	{ "Freescale e500mc core",	FSL_E500mc,	REVFMT_MAJMIN,
-	   0, cpu_booke_setup },
+	   PPC_FEATURE_HAS_FPU, cpu_booke_setup },
 	{ "Freescale e5500 core",	FSL_E5500,	REVFMT_MAJMIN,
-	   0, cpu_booke_setup },
+	   PPC_FEATURE_64 | PPC_FEATURE_HAS_FPU, cpu_booke_setup },
+	{ "Freescale e6500 core",	FSL_E6500,	REVFMT_MAJMIN,
+	   PPC_FEATURE_64 | PPC_FEATURE_HAS_ALTIVEC | PPC_FEATURE_HAS_FPU,
+	   cpu_booke_setup },
         { "IBM Cell Broadband Engine",	IBMCELLBE,	REVFMT_MAJMIN,
 	   PPC_FEATURE_64 | PPC_FEATURE_HAS_ALTIVEC | PPC_FEATURE_HAS_FPU,
 	   NULL},


More information about the svn-src-all mailing list