2002-07-09 16:24:59 +04:00
|
|
|
/*
|
2010-01-14 06:26:12 +03:00
|
|
|
** Copyright 2002-2010, The Haiku Team. All rights reserved.
|
2004-10-20 03:19:10 +04:00
|
|
|
** Distributed under the terms of the Haiku License.
|
|
|
|
**
|
2002-07-09 16:24:59 +04:00
|
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2003-05-03 18:12:16 +04:00
|
|
|
#ifndef KERNEL_ARCH_VM_TRANSLATION_MAP_H
|
|
|
|
#define KERNEL_ARCH_VM_TRANSLATION_MAP_H
|
|
|
|
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2010-01-14 06:26:12 +03:00
|
|
|
#include <vm/VMTranslationMap.h>
|
2003-10-29 00:10:00 +03:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2010-01-14 06:26:12 +03:00
|
|
|
status_t arch_vm_translation_map_create_map(bool kernel,
|
|
|
|
VMTranslationMap** _map);
|
2004-10-20 03:19:10 +04:00
|
|
|
|
2010-01-14 06:26:12 +03:00
|
|
|
status_t arch_vm_translation_map_init(struct kernel_args *args,
|
|
|
|
VMPhysicalPageMapper** _physicalPageMapper);
|
2004-10-20 03:19:10 +04:00
|
|
|
status_t arch_vm_translation_map_init_post_area(struct kernel_args *args);
|
|
|
|
status_t arch_vm_translation_map_init_post_sem(struct kernel_args *args);
|
|
|
|
|
2009-08-03 16:39:56 +04:00
|
|
|
// Quick function to map a page in regardless of map context. Used in VM
|
|
|
|
// initialization before most vm data structures exist.
|
2010-01-14 06:26:12 +03:00
|
|
|
status_t arch_vm_translation_map_early_map(struct kernel_args *args, addr_t va,
|
2010-05-26 01:34:08 +04:00
|
|
|
phys_addr_t pa, uint8 attributes,
|
|
|
|
phys_addr_t (*get_free_page)(struct kernel_args *));
|
2003-10-29 00:10:00 +03:00
|
|
|
|
2009-08-03 16:39:56 +04:00
|
|
|
bool arch_vm_translation_map_is_kernel_page_accessible(addr_t virtualAddress,
|
2010-01-14 06:26:12 +03:00
|
|
|
uint32 protection);
|
2009-08-03 16:39:56 +04:00
|
|
|
|
2003-10-29 00:10:00 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2003-10-17 17:36:38 +04:00
|
|
|
#include <arch_vm_translation_map.h>
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2003-10-29 00:10:00 +03:00
|
|
|
#endif /* KERNEL_ARCH_VM_TRANSLATION_MAP_H */
|
2002-07-09 16:24:59 +04:00
|
|
|
|