2007-10-22 03:42:09 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_ARCH_M68K_VM_TRANSLATION_MAP_H
|
|
|
|
#define _KERNEL_ARCH_M68K_VM_TRANSLATION_MAP_H
|
|
|
|
|
|
|
|
#include <arch/vm_translation_map.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-10-30 05:33:50 +04:00
|
|
|
void m68k_translation_map_change_asid(VMTranslationMap *map);
|
2007-10-22 03:42:09 +04:00
|
|
|
|
2010-05-26 01:34:08 +04:00
|
|
|
status_t m68k_map_address_range(addr_t virtualAddress,
|
|
|
|
phys_addr_t physicalAddress, size_t size);
|
2007-10-22 03:42:09 +04:00
|
|
|
void m68k_unmap_address_range(addr_t virtualAddress, size_t size);
|
|
|
|
status_t m68k_remap_address_range(addr_t *virtualAddress, size_t size,
|
|
|
|
bool unmap);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _KERNEL_ARCH_M68K_VM_TRANSLATION_MAP_H */
|