On Thu, 19 Apr 2012, Steven J. Hill wrote:
> diff --git a/arch/mips/include/asm/cpu-features.h
> b/arch/mips/include/asm/cpu-features.h
> index 556afa2..3b50744 100644
> --- a/arch/mips/include/asm/cpu-features.h
> +++ b/arch/mips/include/asm/cpu-features.h
> @@ -98,6 +98,9 @@
> #ifndef kernel_uses_smartmips_rixi
> #define kernel_uses_smartmips_rixi 0
> #endif
> +#ifndef cpu_has_mmips
> +#define cpu_has_mmips (cpu_data[0].options &
> MIPS_CPU_MICROMIPS)
> +#endif
> #ifndef cpu_has_vtag_icache
> #define cpu_has_vtag_icache (cpu_data[0].icache.flags & MIPS_CACHE_VTAG)
> #endif
I think this has crept in here from the microMIPS change, right? This
patch doesn't make any use of this macro.
> diff --git a/arch/mips/include/asm/cpu.h b/arch/mips/include/asm/cpu.h
> index 00e5adf..242a401 100644
> --- a/arch/mips/include/asm/cpu.h
> +++ b/arch/mips/include/asm/cpu.h
> @@ -96,6 +96,7 @@
> #define PRID_IMP_1004K 0x9900
> #define PRID_IMP_1074K 0x9a00
> #define PRID_IMP_14K 0x9c00
> +#define PRID_IMP_14KE 0x9e00
>
> /*
> * These are the PRID's for when 23:16 == PRID_COMP_SIBYTE
Like with the M14Kc this should be PRID_IMP_M14KEC here and throughout
(spelled out as M14KEc -- with a small "c" -- where applicable). There's
another processor called M14KE that is different.
Maciej
|