On Thu, Nov 25, 2021 at 04:55:28PM +0100, Thomas Bogendoerfer wrote: > On Thu, Nov 25, 2021 at 06:59:49PM +0800, Huang Pei wrote: > > It turns out that 'decode_configs' -> 'set_ftlb_enable' is called under > > c->cputype unset, which leaves FTLB disabled on BOTH 3A2000 and 3A3000 > > > > Fix it by calling "decode_configs" after c->cputype is initialized > > > > Fixes: da1bd29742b1 ("MIPS: Loongson64: Probe CPU features via CPUCFG") > > Signed-off-by: Huang Pei <huangpei@xxxxxxxxxxx> > > --- > > arch/mips/kernel/cpu-probe.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c > > index ac0e2cfc6d57..24a529c6c4be 100644 > > --- a/arch/mips/kernel/cpu-probe.c > > +++ b/arch/mips/kernel/cpu-probe.c > > @@ -1734,8 +1734,6 @@ static inline void decode_cpucfg(struct cpuinfo_mips *c) > > > > static inline void cpu_probe_loongson(struct cpuinfo_mips *c, unsigned int cpu) > > { > > - decode_configs(c); > > - > > /* All Loongson processors covered here define ExcCode 16 as GSExc. */ > > c->options |= MIPS_CPU_GSEXCEX; > > > > @@ -1796,6 +1794,8 @@ static inline void cpu_probe_loongson(struct cpuinfo_mips *c, unsigned int cpu) > > panic("Unknown Loongson Processor ID!"); > > break; > > } > > + > > + decode_configs(c); > > } > > #else > > static inline void cpu_probe_loongson(struct cpuinfo_mips *c, unsigned int cpu) { } > > -- > > 2.20.1 > > applied to mips-fixes. > > Thomas. > > -- > Crap can work. Given enough thrust pigs will fly, but it's not necessarily a > good idea. [ RFC1925, 2.3 ] Hi, Thomas, What about PATCH 1/4, without it, kernel/trace/ring_buffer.i using local_add_return, like this -------------------------------------------------------------------------------- __asm__ __volatile__( " .set push \n" " .set ""arch=r4000"" \n" ".if (( 0x00 ) != -1) && ( (1 << 31) ); .set push; .set mips64r2;.rept 1; sync 0x00; .endr; .set pop; .else; ; .endif" "\n" "1:" "lld " "%1, %2 # local_add_return\n" " addu %0, %1, %3 \n" "scd " "%0, %2 \n" " beqz %0, 1b \n" " addu %0, %1, %3 \n" " .set pop \n" : "=&r" (result), "=&r" (temp), "=m" (l->a.counter) : "Ir" (i), "m" (l->a.counter) : "memory"); } else if (1) { unsigned long temp; __asm__ __volatile__( " .set push \n" " .set ""arch=r4000"" \n" ".if (( 0x00 ) != -1) && ( (1 << 31) ); .set push; .set mips64r2; .rept 1; sync 0x00; .endr; .set pop; .else; ; .endif" " \n" "1:" "lld " "%1, %2 # local_add_return \n" " addu %0, %1, %3 \n" "scd " "%0, %2 \n" " beqz %0, 1b \n" " addu %0, %1, %3 \n" " .set pop \n" : "=&r" (result), "=&r" (temp), "=m" (l->a.counter) : "Ir" (i), "m" (l->a.counter) : "memory"); -------------------------------------------------------------------------------- it is wrong here, "lld" + "addu" with it, like this -------------------------------------------------------------------------------- if (1) { unsigned long temp; __asm__ __volatile__( " .set push \n" " .set ""arch=r4000"" \n" ".if (( 0x00 ) != -1) && ( (1 << 31) ); .set push; .set mips64r2; .rept 1; sync 0x00; .endr; .set pop; .else; ; .endif" " \n" "1:" "lld" " %1, %2 \n" " ""daddu" " %0, %1, %3 \n" " ""scd" " %0, %2 \n" " ""beqz" " %0, 1b \n" " ""daddu" " %0, %1, %3 \n" " .set pop \n" : "=&r" (result), "=&r" (temp), "=m" (l->a.counter) : "Ir" (i), "m" (l->a.counter) : "memory"); } else { MIPS64 needs "lld + daddu" and PATCH 2, any comment?