ARM: Set the high bits in the part number so it's considered new by some code.
authorAli Saidi <ali.saidi@arm.com>
Thu, 26 Aug 2010 00:10:42 +0000 (19:10 -0500)
committerAli Saidi <ali.saidi@arm.com>
Thu, 26 Aug 2010 00:10:42 +0000 (19:10 -0500)
src/arch/arm/isa.cc

index f5bbc36109c3961359b780b104240870e435d4a6..5655c1265b212f20e835c4505d186fe14f46ef5a 100644 (file)
@@ -74,11 +74,11 @@ ISA::clear()
      * Variant = 0,
      */
     miscRegs[MISCREG_MIDR] =
-        (0x35 << 24) | //Implementor is '5' from "M5"
-        (0 << 20)    | //Variant
-        (0xf << 16)  | //Architecture from CPUID scheme
-        (0 << 4)     | //Primary part number
-        (0 << 0)     | //Revision
+        (0x35 << 24) | // Implementor is '5' from "M5"
+        (0 << 20)    | // Variant
+        (0xf << 16)  | // Architecture from CPUID scheme
+        (0xf00 << 4) | // Primary part number
+        (0 << 0)     | // Revision
         0;
 
     // Separate Instruction and Data TLBs.