OSDN Git Service

MIPS: Allow CPU specific overriding of CP0 hwrena impl bits.
authorDavid Daney <ddaney@caviumnetworks.com>
Wed, 13 May 2009 22:59:55 +0000 (15:59 -0700)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 17 Jun 2009 10:06:31 +0000 (11:06 +0100)
Some CPUs have implementation dependent rdhwr registers.  Allow them
to be enabled on a per CPU basis.

Signed-off-by: David Daney <ddaney@caviumnetworks.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/cpu-features.h
arch/mips/kernel/traps.c

index 1cba4b2..8ab1d12 100644 (file)
 #define cpu_scache_line_size() cpu_data[0].scache.linesz
 #endif
 
+#ifndef cpu_hwrena_impl_bits
+#define cpu_hwrena_impl_bits           0
+#endif
+
 #endif /* __ASM_CPU_FEATURES_H */
index e83da17..f548717 100644 (file)
@@ -1502,7 +1502,7 @@ void __cpuinit per_cpu_trap_init(void)
                         status_set);
 
        if (cpu_has_mips_r2) {
-               unsigned int enable = 0x0000000f;
+               unsigned int enable = 0x0000000f | cpu_hwrena_impl_bits;
 
                if (!noulri && cpu_has_userlocal)
                        enable |= (1 << 29);