Accessing physical memory

2006-04-10 Thread Fillod Stephane
Antonio Di Bacco wrote: >How can I access the physical memory? Can I MMAP for example /dev/mem? Is >there a simpler way? Your question is a linuxppc-embedded FAQ. It is documented in Denx's FAQ[1], and accessible through shorter URL[2]. For more information, please follow this thread[3] (not ppc

Accessing physical memory

2006-04-09 Thread Arnd Bergmann
On Saturday 08 April 2006 23:52, Antonio Di Bacco wrote: > How can I access the physical memory? Can I MMAP for example /dev/mem? Is > there a simpler way? /dev/mem access is the most simple way. A cleaner solution is usually to write your own simple character device driver for the stuff you want

Accessing physical memory

2006-04-08 Thread Antonio Di Bacco
How can I access the physical memory? Can I MMAP for example /dev/mem? Is there a simpler way? Bye, Antonio.

Accessing physical memory

2006-04-08 Thread [EMAIL PROTECTED]
Quoting Antonio Di Bacco : > How can I access the physical memory? Can I MMAP for example /dev/mem? Is > there a simpler way? > Hi Antonio, What would you like to do? If you just want some arbitrary page of memory, then look at the 'nopage' example in Rubini, or ask me and I'll send you some cod