On Thu, Dec 12, 2002 at 01:31:16AM +0000, Alan Cox wrote: > On Wed, 2002-12-11 at 23:41, Vivien Chappelier wrote: > > linear framebuffer (up to 8MB with 64kB granularity). I'm then remapping > > all those pages to one virtual region obtained from get_vm_area so that > > 1. caching attributes can be set to cacheable write-through no WA > > Ick. The framebuffer can't handle cached and write barriers ? The O2 is non-cache coherent. So with the fairly large write-back second level caches enabled frame buffer write could potencially be delayed indefinately but in any case quite long. Frame buffers are usually only written to, so the cache mode "uncached accelerated" seems preferable but only the R10000 provides this mode, so for the R5000 write-though no write allocation is the next best solution. Ralf