2002-07-09 12:24:59 +00:00
|
|
|
/*
|
|
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2003-05-03 14:12:16 +00:00
|
|
|
#ifndef KERNEL_ARCH_VM_TRANSLATION_MAP_H
|
|
|
|
#define KERNEL_ARCH_VM_TRANSLATION_MAP_H
|
|
|
|
|
2002-07-09 12:24:59 +00:00
|
|
|
|
2003-10-28 21:10:00 +00:00
|
|
|
#include <vm_translation_map.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2002-07-09 12:24:59 +00:00
|
|
|
|
|
|
|
int vm_translation_map_create(vm_translation_map *new_map, bool kernel);
|
2003-05-03 14:12:16 +00:00
|
|
|
int vm_translation_map_module_init(struct kernel_args *ka);
|
|
|
|
int vm_translation_map_module_init2(struct kernel_args *ka);
|
|
|
|
void vm_translation_map_module_init_post_sem(struct kernel_args *ka);
|
2002-07-09 12:24:59 +00:00
|
|
|
// quick function to map a page in regardless of map context. Used in VM initialization,
|
|
|
|
// before most vm data structures exist
|
2003-10-28 21:10:00 +00:00
|
|
|
status_t vm_translation_map_quick_map(struct kernel_args *ka, addr_t va, addr_t pa,
|
|
|
|
uint8 attributes, addr_t (*get_free_page)(struct kernel_args *));
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2002-07-09 12:24:59 +00:00
|
|
|
|
2003-10-17 13:36:38 +00:00
|
|
|
#include <arch_vm_translation_map.h>
|
2002-07-09 12:24:59 +00:00
|
|
|
|
2003-10-28 21:10:00 +00:00
|
|
|
#endif /* KERNEL_ARCH_VM_TRANSLATION_MAP_H */
|
2002-07-09 12:24:59 +00:00
|
|
|
|