-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x86, 64bit, mm: Add generic kernel/ident mapping helper
It is simple version for kernel_physical_mapping_init. it will work to build one page table that will be used later. Use mapping_info to control 1. alloc_pg_page method 2. if PMD is EXEC, 3. if pgd is with kernel low mapping or ident mapping. Will use to replace some local versions in kexec, hibernation and etc. Signed-off-by: Yinghai Lu <yinghai@kernel.org> Link: http://lkml.kernel.org/r/1359058816-7615-8-git-send-email-yinghai@kernel.org Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
- Loading branch information
Yinghai Lu
authored and
H. Peter Anvin
committed
Jan 29, 2013
1 parent
231b364
commit aece278
Showing
2 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
#ifndef _ASM_X86_INIT_H | ||
#define _ASM_X86_INIT_H | ||
|
||
struct x86_mapping_info { | ||
void *(*alloc_pgt_page)(void *); /* allocate buf for page table */ | ||
void *context; /* context for alloc_pgt_page */ | ||
unsigned long pmd_flag; /* page flag for PMD entry */ | ||
bool kernel_mapping; /* kernel mapping or ident mapping */ | ||
}; | ||
|
||
int kernel_ident_mapping_init(struct x86_mapping_info *info, pgd_t *pgd_page, | ||
unsigned long addr, unsigned long end); | ||
|
||
#endif /* _ASM_X86_INIT_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters