In our system, we have 512 MB memroy (processor opteron, linux kernel 2.4.22).
We have an application which requires 256 MB contigurous memory (for DMA).
The guy who designed it reserved the upper 256M memory by passing mem=256M in the linux command line so that upper 256M is free from any linux kernel access. But I need to read and write to this area. How can I do that? Can I use request_mem_region (0x10000000, 0x10000000, ..) and then ioremap() it?
Regards, Om.
-- Kernelnewbies: Help each other learn about the Linux kernel. Archive: http://mail.nl.linux.org/kernelnewbies/ FAQ: http://kernelnewbies.org/faq/