Hi Paul, Cheers for sticking with this! On Sun, Jul 28, 2013 at 06:43:24AM +0100, Paul Walmsley wrote: > > Commit 621a0147d5c921f4cc33636ccd0602ad5d7cbfbc ("ARM: 7757/1: mm: > don't flush icache in switch_mm with hardware broadcasting") breaks > the boot on OMAP2430SDP with omap2plus_defconfig. Tracked to an > undefined instruction abort from the CP15 read in > cache_ops_need_broadcast(). It turns out that early ARM1136 variants > don't support several CP15 registers that later ARM cores do. > ARM1136JF-S TRM section 3.2.1 "Register allocation" has the details. Intriguing... I wouldn't expect a cp15 read to be emitted for 1136, since the SMP_ON_UP magic should have caused is_smp() to return false. > diff --git a/arch/arm/include/asm/smp_plat.h b/arch/arm/include/asm/smp_plat.h > index 6462a72..76214cb 100644 > --- a/arch/arm/include/asm/smp_plat.h > +++ b/arch/arm/include/asm/smp_plat.h > @@ -25,7 +25,6 @@ static inline bool is_smp(void) > #endif > } > > -/* all SMP configurations have the extended CPUID registers */ > #ifndef CONFIG_MMU > #define tlb_ops_need_broadcast() 0 > #else > @@ -43,6 +42,9 @@ static inline int tlb_ops_need_broadcast(void) > #else > static inline int cache_ops_need_broadcast(void) > { > + if (cpu_is_arm1136_r0()) > + return 0; > + > if (!is_smp()) > return 0; So we should have returned 0 here without exploding (this just reads a .globl initialised in head.S). Are we somehow misidentifying your 1136 as an SMP core? Will -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html