David Gibson <david@gibson.dropbear.id.au> writes:
> > As I mentioned in my previous message, one of my platforms is like that
> > memory, which is only 2 megabytes in size.
>
> Ok, that starts to make sense then (what platform is it,
> incidentally). Is using consistent memory actually faster than doing
> the cache flushes expliticly? Much?
It's an embedded evaluation board (Midas `RTE-MOTHER-A' and
`RTE-V850E-MA1-CB').
The thing is there _is_ no cache on this machine (it's very slow), so
cache-consistency is actually not an issue (and the cache-flushing
macros won't help me at all).
PCI devices are several busses removed from the CPU, and they only have
this one 2MB area in common. So on this machine, PCI devices can _only_
use consistent memory.
When a driver uses the non-consistent interfaces, then:
* pci_map_single allocates a `shadow area' of consistent memory and
pci_unmap_single deallocates it
* pci_dma_sync_... just does a memcpy to/from the `shadow' consistent
memory from/to the drivers kalloc'd block (in principle I think this
is incorrect, because it uses the `dir' parameter to determine the
direction to copy, but it works in practice)
So you can see that for this platform, it would be better if drivers
could _always_ use alloc_consistent, but many don't.
Yes this is a wierd and frustrating design, but I think it does credit
to the linux PCI layer that I could get it work at all, without
modifying any drivers! I guess my main goal in this discussion is to
ensure that remains the case...
-Miles
-- .Numeric stability is probably not all that important when you're guessing. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
This archive was generated by hypermail 2b29 : Sat Dec 07 2002 - 22:00:22 EST