Go to the documentation of this file.
9 #ifndef _ASM_PGTABLE_32_H
10 #define _ASM_PGTABLE_32_H
12 #include <asm/addrspace.h>
15 #include <linux/linkage.h>
16 #include <asm/cachectl.h>
17 #include <asm/fixmap.h>
30 #define PGDIR_SHIFT (2 * PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2)
31 #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
32 #define PGDIR_MASK (~(PGDIR_SIZE-1))
38 #define __PGD_ORDER (32 - 3 * PAGE_SHIFT + PGD_T_LOG2 + PTE_T_LOG2)
39 #define PGD_ORDER (__PGD_ORDER >= 0 ? __PGD_ORDER : 0)
40 #define PUD_ORDER aieeee_attempt_to_allocate_pud
44 #define PTRS_PER_PGD (USER_PTRS_PER_PGD * 2)
45 #define PTRS_PER_PTE ((PAGE_SIZE << PTE_ORDER) / sizeof(pte_t))
47 #define USER_PTRS_PER_PGD (0x80000000UL/PGDIR_SIZE)
48 #define FIRST_USER_ADDRESS 0
50 #define VMALLOC_START MAP_BASE
52 #define PKMAP_BASE (0xfe000000UL)
55 # define VMALLOC_END (PKMAP_BASE-2*PAGE_SIZE)
57 # define VMALLOC_END (FIXADDR_START-2*PAGE_SIZE)
60 #ifdef CONFIG_64BIT_PHYS_ADDR
61 #define pte_ERROR(e) \
62 printk("%s:%d: bad pte %016Lx.\n", __FILE__, __LINE__, pte_val(e))
64 #define pte_ERROR(e) \
65 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
67 #define pgd_ERROR(e) \
68 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
70 extern void load_pgd(
unsigned long pg_dir);
82 #define pmd_bad(pmd) (pmd_val(pmd) & ~PAGE_MASK)
94 #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
95 #define pte_page(x) pfn_to_page(pte_pfn(x))
96 #define pte_pfn(x) ((unsigned long)((x).pte_high >> 6))
108 #define pte_page(x) pfn_to_page(pte_pfn(x))
110 #ifdef CONFIG_CPU_VR41XX
111 #define pte_pfn(x) ((unsigned long)((x).pte >> (PAGE_SHIFT + 2)))
112 #define pfn_pte(pfn, prot) __pte(((pfn) << (PAGE_SHIFT + 2)) | pgprot_val(prot))
114 #define pte_pfn(x) ((unsigned long)((x).pte >> _PFN_SHIFT))
115 #define pfn_pte(pfn, prot) __pte(((unsigned long long)(pfn) << _PFN_SHIFT) | pgprot_val(prot))
119 #define __pgd_offset(address) pgd_index(address)
120 #define __pud_offset(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
121 #define __pmd_offset(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
124 #define pgd_offset_k(address) pgd_offset(&init_mm, address)
126 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
129 #define pgd_offset(mm, addr) ((mm)->pgd + pgd_index(addr))
132 #define __pte_offset(address) \
133 (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
134 #define pte_offset(dir, address) \
135 ((pte_t *) pmd_page_vaddr(*(dir)) + __pte_offset(address))
136 #define pte_offset_kernel(dir, address) \
137 ((pte_t *) pmd_page_vaddr(*(dir)) + __pte_offset(address))
139 #define pte_offset_map(dir, address) \
140 ((pte_t *)page_address(pmd_page(*(dir))) + __pte_offset(address))
141 #define pte_unmap(pte) ((void)(pte))
143 #if defined(CONFIG_CPU_R3000) || defined(CONFIG_CPU_TX39XX)
146 #define __swp_type(x) (((x).val >> 10) & 0x1f)
147 #define __swp_offset(x) ((x).val >> 15)
148 #define __swp_entry(type,offset) \
149 ((swp_entry_t) { ((type) << 10) | ((offset) << 15) })
154 #define PTE_FILE_MAX_BITS 28
156 #define pte_to_pgoff(_pte) ((((_pte).pte >> 1 ) & 0x07) | \
157 (((_pte).pte >> 2 ) & 0x38) | \
158 (((_pte).pte >> 10) << 6 ))
160 #define pgoff_to_pte(off) ((pte_t) { (((off) & 0x07) << 1 ) | \
161 (((off) & 0x38) << 2 ) | \
162 (((off) >> 6 ) << 10) | \
168 #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
169 #define __swp_type(x) (((x).val >> 2) & 0x1f)
170 #define __swp_offset(x) ((x).val >> 7)
171 #define __swp_entry(type,offset) \
172 ((swp_entry_t) { ((type) << 2) | ((offset) << 7) })
174 #define __swp_type(x) (((x).val >> 8) & 0x1f)
175 #define __swp_offset(x) ((x).val >> 13)
176 #define __swp_entry(type,offset) \
177 ((swp_entry_t) { ((type) << 8) | ((offset) << 13) })
180 #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
184 #define PTE_FILE_MAX_BITS 30
186 #define pte_to_pgoff(_pte) ((_pte).pte_high >> 2)
187 #define pgoff_to_pte(off) ((pte_t) { _PAGE_FILE, (off) << 2 })
193 #define PTE_FILE_MAX_BITS 28
195 #define pte_to_pgoff(_pte) ((((_pte).pte >> 1) & 0x7) | \
196 (((_pte).pte >> 2) & 0x8) | \
197 (((_pte).pte >> 8) << 4))
199 #define pgoff_to_pte(off) ((pte_t) { (((off) & 0x7) << 1) | \
200 (((off) & 0x8) << 2) | \
201 (((off) >> 4) << 8) | \
207 #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
208 #define __pte_to_swp_entry(pte) ((swp_entry_t) { (pte).pte_high })
209 #define __swp_entry_to_pte(x) ((pte_t) { 0, (x).val })
211 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
212 #define __swp_entry_to_pte(x) ((pte_t) { (x).val })