> You always have the hack of reserving a block of memory > at the top of SDRAM, i.e., lie to Linux and tell it it > has less memory. It sounds like that might be the least > effort. Rubini has an example of how to do that. >
I've done this with a bus-master PCI peripheral and it works nicely. The other point about this is that the mmap() call will work rationally with memory above the linux pool, so it's easy to go straight to/from user land with this approach. (and you can set caching and the guard bit and all that so that PPC access works the way you want it to) Mark Chambers
