diff options
Diffstat (limited to 'arch/mips/include/asm/cpu-features.h')
| -rw-r--r-- | arch/mips/include/asm/cpu-features.h | 19 | 
1 files changed, 16 insertions, 3 deletions
diff --git a/arch/mips/include/asm/cpu-features.h b/arch/mips/include/asm/cpu-features.h index 6998a9796499..983a6a7f43a1 100644 --- a/arch/mips/include/asm/cpu-features.h +++ b/arch/mips/include/asm/cpu-features.h @@ -243,9 +243,6 @@  #ifndef cpu_has_pindexed_dcache  #define cpu_has_pindexed_dcache	(cpu_data[0].dcache.flags & MIPS_CACHE_PINDEX)  #endif -#ifndef cpu_has_local_ebase -#define cpu_has_local_ebase	1 -#endif  /*   * I-Cache snoops remote store.	 This only matters on SMP.  Some multiprocessors @@ -397,6 +394,22 @@  #define cpu_has_dsp3		__ase(MIPS_ASE_DSP3)  #endif +#ifndef cpu_has_loongson_mmi +#define cpu_has_loongson_mmi		__ase(MIPS_ASE_LOONGSON_MMI) +#endif + +#ifndef cpu_has_loongson_cam +#define cpu_has_loongson_cam		__ase(MIPS_ASE_LOONGSON_CAM) +#endif + +#ifndef cpu_has_loongson_ext +#define cpu_has_loongson_ext		__ase(MIPS_ASE_LOONGSON_EXT) +#endif + +#ifndef cpu_has_loongson_ext2 +#define cpu_has_loongson_ext2		__ase(MIPS_ASE_LOONGSON_EXT2) +#endif +  #ifndef cpu_has_mipsmt  #define cpu_has_mipsmt		__isa_lt_and_ase(6, MIPS_ASE_MIPSMT)  #endif  |