2009-07-27 16:23:08 +00:00
|
|
|
/*
|
|
|
|
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
|
|
*/
|
2010-10-24 22:06:22 +00:00
|
|
|
#ifndef _KERNEL_ARCH_ARM_VM_TRANSLATION_MAP_H
|
|
|
|
#define _KERNEL_ARCH_ARM_VM_TRANSLATION_MAP_H
|
2009-07-27 16:23:08 +00:00
|
|
|
|
|
|
|
#include <arch/vm_translation_map.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-10-24 22:06:22 +00:00
|
|
|
status_t arm_map_address_range(addr_t virtualAddress, addr_t physicalAddress,
|
2009-07-27 16:23:08 +00:00
|
|
|
size_t size);
|
2010-10-24 22:06:22 +00:00
|
|
|
void arm_unmap_address_range(addr_t virtualAddress, size_t size);
|
|
|
|
status_t arm_remap_address_range(addr_t *virtualAddress, size_t size,
|
2009-07-27 16:23:08 +00:00
|
|
|
bool unmap);
|
2010-10-24 22:06:22 +00:00
|
|
|
|
2009-07-27 16:23:08 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-10-24 22:06:22 +00:00
|
|
|
#endif /* _KERNEL_ARCH_ARM_VM_TRANSLATION_MAP_H */
|