Skip to content
Snippets Groups Projects
Commit 4d7d6936 authored by Haavard Skinnemoen's avatar Haavard Skinnemoen Committed by Stefan Roese
Browse files

Introduce map_physmem() and unmap_physmem()


map_physmem() returns a virtual address which can be used to access a
given physical address without involving the cache. unmap_physmem()
should be called when the virtual address returned by map_physmem() is
no longer needed.

This patch adds a stub implementation which simply returns the
physical address cast to a uchar * for all architectures except AVR32,
which converts the physical address to an uncached virtual mapping.
unmap_physmem() is a no-op on all architectures, but if any
architecture needs to do such mappings through the TLB, this is the
hook where those TLB entries can be invalidated.

Signed-off-by: default avatarHaavard Skinnemoen <hskinnemoen@atmel.com>
parent cdbaefb5
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment