pgtable_32.h 2.6 KB
Newer Older
H
H. Peter Anvin 已提交
1 2
#ifndef _ASM_X86_PGTABLE_32_H
#define _ASM_X86_PGTABLE_32_H
L
Linus Torvalds 已提交
3

4
#include <asm/pgtable_32_types.h>
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18

/*
 * The Linux memory management assumes a three-level page table setup. On
 * the i386, we use that, but "fold" the mid level into the top-level page
 * table, so that we physically have the same two-level page table as the
 * i386 mmu expects.
 *
 * This file contains the functions and defines necessary to modify and use
 * the i386 page table tree.
 */
#ifndef __ASSEMBLY__
#include <asm/processor.h>
#include <asm/fixmap.h>
#include <linux/threads.h>
19
#include <asm/paravirt.h>
L
Linus Torvalds 已提交
20

J
Jiri Slaby 已提交
21
#include <linux/bitops.h>
L
Linus Torvalds 已提交
22 23 24 25
#include <linux/slab.h>
#include <linux/list.h>
#include <linux/spinlock.h>

26 27 28
struct mm_struct;
struct vm_area_struct;

L
Linus Torvalds 已提交
29 30
extern pgd_t swapper_pg_dir[1024];

T
Thomas Gleixner 已提交
31 32
static inline void pgtable_cache_init(void) { }
static inline void check_pgt_cache(void) { }
L
Linus Torvalds 已提交
33 34
void paging_init(void);

35
extern void set_pmd_pfn(unsigned long, unsigned long, pgprot_t);
C
Christoph Lameter 已提交
36

D
Dave Young 已提交
37

L
Linus Torvalds 已提交
38 39 40
/*
 * Define this if things work differently on an i386 and an i486:
 * it will (on an i486) warn about kernel memory accesses that are
J
Jesper Juhl 已提交
41
 * done without a 'access_ok(VERIFY_WRITE,..)'
L
Linus Torvalds 已提交
42
 */
J
Jesper Juhl 已提交
43
#undef TEST_ACCESS_OK
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51

#ifdef CONFIG_X86_PAE
# include <asm/pgtable-3level.h>
#else
# include <asm/pgtable-2level.h>
#endif

#if defined(CONFIG_HIGHPTE)
52
#define __KM_PTE	(in_nmi() ? KM_NMI_PTE : KM_PTE0)
53
#define pte_offset_map(dir, address)					\
54
	((pte_t *)kmap_atomic_pte(pmd_page(*(dir)), __KM_PTE) +		\
55 56 57 58
	 pte_index((address)))
#define pte_offset_map_nested(dir, address)				\
	((pte_t *)kmap_atomic_pte(pmd_page(*(dir)), KM_PTE1) +		\
	 pte_index((address)))
59
#define pte_unmap(pte) kunmap_atomic((pte), __KM_PTE)
60
#define pte_unmap_nested(pte) kunmap_atomic((pte), KM_PTE1)
L
Linus Torvalds 已提交
61
#else
62 63 64
#define pte_offset_map(dir, address)					\
	((pte_t *)page_address(pmd_page(*(dir))) + pte_index((address)))
#define pte_offset_map_nested(dir, address) pte_offset_map((dir), (address))
L
Linus Torvalds 已提交
65 66 67 68
#define pte_unmap(pte) do { } while (0)
#define pte_unmap_nested(pte) do { } while (0)
#endif

Z
Zachary Amsden 已提交
69
/* Clear a kernel PTE and flush it from the TLB */
70 71 72 73
#define kpte_clear_flush(ptep, vaddr)		\
do {						\
	pte_clear(&init_mm, (vaddr), (ptep));	\
	__flush_tlb_one((vaddr));		\
Z
Zachary Amsden 已提交
74 75
} while (0)

L
Linus Torvalds 已提交
76 77 78 79
/*
 * The i386 doesn't have any external MMU info: the kernel page
 * tables contain all the necessary information.
 */
80
#define update_mmu_cache(vma, address, pte) do { } while (0)
81

L
Linus Torvalds 已提交
82 83
#endif /* !__ASSEMBLY__ */

84 85 86 87
/*
 * kern_addr_valid() is (1) for FLATMEM and (0) for
 * SPARSEMEM and DISCONTIGMEM
 */
88
#ifdef CONFIG_FLATMEM
L
Linus Torvalds 已提交
89
#define kern_addr_valid(addr)	(1)
90 91 92
#else
#define kern_addr_valid(kaddr)	(0)
#endif
L
Linus Torvalds 已提交
93

H
H. Peter Anvin 已提交
94
#endif /* _ASM_X86_PGTABLE_32_H */