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 53 54 55
#define __KM_PTE			\
	(in_nmi() ? KM_NMI_PTE : 	\
	 in_irq() ? KM_IRQ_PTE :	\
	 KM_PTE0)
56
#define pte_offset_map(dir, address)					\
57
	((pte_t *)kmap_atomic(pmd_page(*(dir)), __KM_PTE) +		\
58 59
	 pte_index((address)))
#define pte_offset_map_nested(dir, address)				\
60
	((pte_t *)kmap_atomic(pmd_page(*(dir)), KM_PTE1) +		\
61
	 pte_index((address)))
62
#define pte_unmap(pte) kunmap_atomic((pte), __KM_PTE)
63
#define pte_unmap_nested(pte) kunmap_atomic((pte), KM_PTE1)
L
Linus Torvalds 已提交
64
#else
65 66 67
#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 已提交
68 69 70 71
#define pte_unmap(pte) do { } while (0)
#define pte_unmap_nested(pte) do { } while (0)
#endif

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

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

L
Linus Torvalds 已提交
85 86
#endif /* !__ASSEMBLY__ */

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

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