> > A truly safe and general I-cache flush routine should itself run uncached, > > but a cursory glance at the linux-mips.org sources makes me think > > that we do not take that precaution by default - the flush_icache_range > > pointer looks to be set to the address of r4k_flush_icache_range() > > function, rather than its (uncacheable) alias in kseg1. Is this something > > that's fixed in a linker script, or are we just living dangerously? > > That's a new restriction in MIPS32 v2.0 and you're right, we're not trying > to deal with it yet except for the TX49xx. I'm pretty sure that restriction is not new to MIPS32 v2.0. In any case, there are pre-MIPS32/MIPS64 chips in current mass production and use, under Linux among other OSes, which specify in their user manuals that one should not invalidate the Icache line from which one is currently executing. The clause about unpredictable behavior in that case went into the MIPS32 spec because it was known that such parts existed, and we wanted to make it as easy as possible for such designs to be made compliant Invalidating the entire Icache with a routine executing out of the Icache is a Bad Idea, and will almost certainly cause problems some of the time on some MIPS processors. Reasonable people could disagree on whether we want to handle that in the generic code, or create a variant icache flush routine which gets plugged in only for those parts that really need it. Regards, Kevin K.