Re: [PATCH resend 5/9] MIPS: sync after cacheflush

From: Maciej W. Rozycki
Date: Wed Oct 20 2010 - 13:26:21 EST


On Wed, 20 Oct 2010, Gleb O. Raiko wrote:

> > That said, R4k DECstations seem to perform aggressive write buffering in
> > the chipset and to make sure a write has propagated to an MMIO register a
> > SYNC and an uncached read operation are necessary.
>
> Just uncached read may be enough. R4k shall pull data from its store buffer on
> uncached read.

I'm not sure what you mean: whether the processor will snoop the value to
read in the store buffer or will it stall until the buffer has drained and
issue the load on the external bus?

I can't see the behaviour of uncached loads wrt uncached stores clearly
documented anywhere for the R4400 processor (DEC used the SC variation,
BTW). There's no mention of uncached loads to have SYNC properties.
Therefore in the context of one or more pending uncached stores I can
assume one of the three for an uncached load:

1. If the addresses match, then the value loaded is snooped in (retrieved
from) the store buffer, no external cycle on the bus is seen. This is
what the R2020 WB did.

2. The load bypasses the stores and therefore reaches the external bus
before the stores. This is what the R3220 MB did and I believe the
R2020 WB defaulted to in the case of no address match.

3. The load stalls until the outstanding stores have completed and only
then appears on the external bus.

There's no hurt from using SYNC here and its semantics make it clear it
enforces the case #3 above even if not otherwise guaranteed. Otherwise I
think the case #2 would be a reasonable default (i.e. one I'd recommend to
a processor designer) as draining the store buffer on any uncached load
whether needed or not is a waste of performance.

> > I haven't investigated DMA dependencies and I think we currently only
> > have one TURBOchannel device/driver only (that is the DEFTA/defxx FDDI
> > thingy) making use of the generic DMA API on DECstations. It seemed to
> > work correctly the last time I tried; presumably either because the API
> > Does The Right Thing, or by pure luck and right timings.
>
> dfx_writel issues sync after store. BTW, it seems no uncached read issued here
> (just mb() is used, which seems to do sync only), so either those uncached
> read is not needed (unlikely) or data from dfx_writel wait somewhere in the
> chipset for being pulled by subsequent reads or writes.

Ah, I could have added it myself ;) -- oddly enough even though the
driver originated from DEC, they only used/tested it with x86 systems
apparently, rather than the obvious choice of the Alpha that implemented a
much, much weaker ordering model that any MIPS chip ever did.

Maciej
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/