Explorar el Código

Add e6500 processor detection

Signed-off-by: York Sun <yorksun@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
Kumar Gala hace 12 años
padre
commit
5b6b85ae63
Se han modificado 2 ficheros con 4 adiciones y 0 borrados
  1. 3 0
      arch/powerpc/cpu/mpc85xx/cpu.c
  2. 1 0
      arch/powerpc/include/asm/processor.h

+ 3 - 0
arch/powerpc/cpu/mpc85xx/cpu.c

@@ -117,6 +117,9 @@ int checkcpu (void)
 	case PVR_VER_E5500:
 	case PVR_VER_E5500:
 		puts("E5500");
 		puts("E5500");
 		break;
 		break;
+	case PVR_VER_E6500:
+		puts("E6500");
+		break;
 	default:
 	default:
 		puts("Unknown");
 		puts("Unknown");
 		break;
 		break;

+ 1 - 0
arch/powerpc/include/asm/processor.h

@@ -950,6 +950,7 @@
 #define PVR_VER_E500_V2	0x8021
 #define PVR_VER_E500_V2	0x8021
 #define PVR_VER_E500MC	0x8023
 #define PVR_VER_E500MC	0x8023
 #define PVR_VER_E5500	0x8024
 #define PVR_VER_E5500	0x8024
+#define PVR_VER_E6500	0x8040
 
 
 #define PVR_86xx	0x80040000
 #define PVR_86xx	0x80040000