1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */ 2*4882a593Smuzhiyun #ifndef __ASM_MACH_BMIPS_CPU_FEATURE_OVERRIDES_H 3*4882a593Smuzhiyun #define __ASM_MACH_BMIPS_CPU_FEATURE_OVERRIDES_H 4*4882a593Smuzhiyun 5*4882a593Smuzhiyun /* Invariants across all BMIPS processors */ 6*4882a593Smuzhiyun #define cpu_has_vtag_icache 0 7*4882a593Smuzhiyun #define cpu_icache_snoops_remote_store 1 8*4882a593Smuzhiyun 9*4882a593Smuzhiyun /* Processor ISA compatibility is MIPS32R1 */ 10*4882a593Smuzhiyun #define cpu_has_mips32r1 1 11*4882a593Smuzhiyun #define cpu_has_mips32r2 0 12*4882a593Smuzhiyun #define cpu_has_mips64r1 0 13*4882a593Smuzhiyun #define cpu_has_mips64r2 0 14*4882a593Smuzhiyun 15*4882a593Smuzhiyun #endif /* __ASM_MACH_BMIPS_CPU_FEATURE_OVERRIDES_H */ 16