MIPS: cpu-info: Change the cpu options variable to unsigned long long
authorMarkos Chandras <markos.chandras@imgtec.com>
Mon, 14 Jul 2014 09:14:02 +0000 (10:14 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 1 Aug 2014 22:06:38 +0000 (00:06 +0200)
Long integers which are 4 bytes in MIPS32 can't hold new CPU
options anymore, so the type of the 'options' variable is changed
to unsigned long long which allows 32 more cpu options to be defined
for MIPS32

Also, re-arrange the 'options' struct member to avoid potential 4-byte
alignment gap in the middle of the struct.

Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/7324/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/cpu-info.h
arch/mips/include/asm/cpu.h

index 6690d7af0a03c7068fd73a60852a1542827aee55..d5f42c168001c69a21a37cfcf066f0892a0cdfc0 100644 (file)
@@ -44,8 +44,8 @@ struct cpuinfo_mips {
        /*
         * Capability and feature descriptor structure for MIPS CPU
         */
-       unsigned long           options;
        unsigned long           ases;
+       unsigned long long      options;
        unsigned int            udelay_val;
        unsigned int            processor_id;
        unsigned int            fpu_id;
index abf7e005b98f6145d5ff5b6bb22a1ec44226d976..abacaa1f7293dfdbf303981c49632fe296b05299 100644 (file)
@@ -337,34 +337,34 @@ enum cpu_type_enum {
 /*
  * CPU Option encodings
  */
-#define MIPS_CPU_TLB           0x00000001 /* CPU has TLB */
-#define MIPS_CPU_4KEX          0x00000002 /* "R4K" exception model */
-#define MIPS_CPU_3K_CACHE      0x00000004 /* R3000-style caches */
-#define MIPS_CPU_4K_CACHE      0x00000008 /* R4000-style caches */
-#define MIPS_CPU_TX39_CACHE    0x00000010 /* TX3900-style caches */
-#define MIPS_CPU_FPU           0x00000020 /* CPU has FPU */
-#define MIPS_CPU_32FPR         0x00000040 /* 32 dbl. prec. FP registers */
-#define MIPS_CPU_COUNTER       0x00000080 /* Cycle count/compare */
-#define MIPS_CPU_WATCH         0x00000100 /* watchpoint registers */
-#define MIPS_CPU_DIVEC         0x00000200 /* dedicated interrupt vector */
-#define MIPS_CPU_VCE           0x00000400 /* virt. coherence conflict possible */
-#define MIPS_CPU_CACHE_CDEX_P  0x00000800 /* Create_Dirty_Exclusive CACHE op */
-#define MIPS_CPU_CACHE_CDEX_S  0x00001000 /* ... same for seconary cache ... */
-#define MIPS_CPU_MCHECK                0x00002000 /* Machine check exception */
-#define MIPS_CPU_EJTAG         0x00004000 /* EJTAG exception */
-#define MIPS_CPU_NOFPUEX       0x00008000 /* no FPU exception */
-#define MIPS_CPU_LLSC          0x00010000 /* CPU has ll/sc instructions */
-#define MIPS_CPU_INCLUSIVE_CACHES      0x00020000 /* P-cache subset enforced */
-#define MIPS_CPU_PREFETCH      0x00040000 /* CPU has usable prefetch */
-#define MIPS_CPU_VINT          0x00080000 /* CPU supports MIPSR2 vectored interrupts */
-#define MIPS_CPU_VEIC          0x00100000 /* CPU supports MIPSR2 external interrupt controller mode */
-#define MIPS_CPU_ULRI          0x00200000 /* CPU has ULRI feature */
-#define MIPS_CPU_PCI           0x00400000 /* CPU has Perf Ctr Int indicator */
-#define MIPS_CPU_RIXI          0x00800000 /* CPU has TLB Read/eXec Inhibit */
-#define MIPS_CPU_MICROMIPS     0x01000000 /* CPU has microMIPS capability */
-#define MIPS_CPU_TLBINV                0x02000000 /* CPU supports TLBINV/F */
-#define MIPS_CPU_SEGMENTS      0x04000000 /* CPU supports Segmentation Control registers */
-#define MIPS_CPU_EVA           0x80000000 /* CPU supports Enhanced Virtual Addressing */
+#define MIPS_CPU_TLB           0x00000001ull /* CPU has TLB */
+#define MIPS_CPU_4KEX          0x00000002ull /* "R4K" exception model */
+#define MIPS_CPU_3K_CACHE      0x00000004ull /* R3000-style caches */
+#define MIPS_CPU_4K_CACHE      0x00000008ull /* R4000-style caches */
+#define MIPS_CPU_TX39_CACHE    0x00000010ull /* TX3900-style caches */
+#define MIPS_CPU_FPU           0x00000020ull /* CPU has FPU */
+#define MIPS_CPU_32FPR         0x00000040ull /* 32 dbl. prec. FP registers */
+#define MIPS_CPU_COUNTER       0x00000080ull /* Cycle count/compare */
+#define MIPS_CPU_WATCH         0x00000100ull /* watchpoint registers */
+#define MIPS_CPU_DIVEC         0x00000200ull /* dedicated interrupt vector */
+#define MIPS_CPU_VCE           0x00000400ull /* virt. coherence conflict possible */
+#define MIPS_CPU_CACHE_CDEX_P  0x00000800ull /* Create_Dirty_Exclusive CACHE op */
+#define MIPS_CPU_CACHE_CDEX_S  0x00001000ull /* ... same for seconary cache ... */
+#define MIPS_CPU_MCHECK                0x00002000ull /* Machine check exception */
+#define MIPS_CPU_EJTAG         0x00004000ull /* EJTAG exception */
+#define MIPS_CPU_NOFPUEX       0x00008000ull /* no FPU exception */
+#define MIPS_CPU_LLSC          0x00010000ull /* CPU has ll/sc instructions */
+#define MIPS_CPU_INCLUSIVE_CACHES      0x00020000ull /* P-cache subset enforced */
+#define MIPS_CPU_PREFETCH      0x00040000ull /* CPU has usable prefetch */
+#define MIPS_CPU_VINT          0x00080000ull /* CPU supports MIPSR2 vectored interrupts */
+#define MIPS_CPU_VEIC          0x00100000ull /* CPU supports MIPSR2 external interrupt controller mode */
+#define MIPS_CPU_ULRI          0x00200000ull /* CPU has ULRI feature */
+#define MIPS_CPU_PCI           0x00400000ull /* CPU has Perf Ctr Int indicator */
+#define MIPS_CPU_RIXI          0x00800000ull /* CPU has TLB Read/eXec Inhibit */
+#define MIPS_CPU_MICROMIPS     0x01000000ull /* CPU has microMIPS capability */
+#define MIPS_CPU_TLBINV                0x02000000ull /* CPU supports TLBINV/F */
+#define MIPS_CPU_SEGMENTS      0x04000000ull /* CPU supports Segmentation Control registers */
+#define MIPS_CPU_EVA           0x80000000ull /* CPU supports Enhanced Virtual Addressing */
 
 /*
  * CPU ASE encodings