Will a memory mapped i/o operation (in intel processor) still be cached if the address range of the mapped i/o is being typed as write back (WB) even if I use the in/out instruction?

EDIT: This question is solved. I found out that MMIO is cacheable, and MMIO operation can be reordered depending on it's memory type. That's why intel recommended to set MMIO using the MTRR as UC (uncacheable).. I found it on intel software developer manual v3A, which might also be applied on amd processors...

link|improve this question

62% accept rate
2  
Memory mapping with the in and out instructions - how are they related? – Olof Forshell Feb 10 '11 at 6:43
Memory-mapped I/O uses the same address bus to address both memory and I/O devices. – prinzrainer Feb 17 '11 at 3:51
And in/out instructions use a separate address space from system memory. Using in/out is not mmio. – Michael May 18 '11 at 21:54
feedback

1 Answer

I'm not aware that MMIO (on x86 systems) can actually be set to be cacheable, but even if they can, I would think using IO instructions would bypass that part of the MMU.The CPU wouldn't be aware that the IO address that you are writing to is internally mapped to the same MMIO address on your device. How are you setting the cacheability of that MMIO region?

link|improve this answer
Some devices IO are mapped on some region on physical memory, by setting the MTRR (memory type range registers) you can give control of the cacheability of the memory region.. – prinzrainer May 28 '11 at 23:42
Sorry for the late reply, and I'm glad you found an answer! Guess I was wrong about the cacheability of MMIO... it looks like it is even common to set prefetchable MMIO spaces as cacheable! – Nicholas Hembree Jun 8 '11 at 20:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.