pgtable.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ALPHA_PGTABLE_H
  2. #define _ALPHA_PGTABLE_H
  3. /*
  4.  * This file contains the functions and defines necessary to modify and use
  5.  * the Alpha page table tree.
  6.  *
  7.  * This hopefully works with any standard Alpha page-size, as defined
  8.  * in <asm/page.h> (currently 8192).
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/mmzone.h>
  12. #include <asm/page.h>
  13. #include <asm/processor.h> /* For TASK_SIZE */
  14. #include <asm/machvec.h>
  15. /* Certain architectures need to do special things when PTEs
  16.  * within a page table are directly modified.  Thus, the following
  17.  * hook is made available.
  18.  */
  19. #define set_pte(pteptr, pteval) ((*(pteptr)) = (pteval))
  20. /* PMD_SHIFT determines the size of the area a second-level page table can map */
  21. #define PMD_SHIFT (PAGE_SHIFT + (PAGE_SHIFT-3))
  22. #define PMD_SIZE (1UL << PMD_SHIFT)
  23. #define PMD_MASK (~(PMD_SIZE-1))
  24. /* PGDIR_SHIFT determines what a third-level page table entry can map */
  25. #define PGDIR_SHIFT (PAGE_SHIFT + 2*(PAGE_SHIFT-3))
  26. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  27. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  28. /*
  29.  * Entries per page directory level:  the Alpha is three-level, with
  30.  * all levels having a one-page page table.
  31.  */
  32. #define PTRS_PER_PTE (1UL << (PAGE_SHIFT-3))
  33. #define PTRS_PER_PMD (1UL << (PAGE_SHIFT-3))
  34. #define PTRS_PER_PGD (1UL << (PAGE_SHIFT-3))
  35. #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
  36. #define FIRST_USER_PGD_NR 0
  37. /* Number of pointers that fit on a page:  this will go away. */
  38. #define PTRS_PER_PAGE (1UL << (PAGE_SHIFT-3))
  39. #ifdef CONFIG_ALPHA_LARGE_VMALLOC
  40. #define VMALLOC_START 0xfffffe0000000000
  41. #else
  42. #define VMALLOC_START (-2*PGDIR_SIZE)
  43. #endif
  44. #define VMALLOC_VMADDR(x) ((unsigned long)(x))
  45. #define VMALLOC_END (-PGDIR_SIZE)
  46. /*
  47.  * OSF/1 PAL-code-imposed page table bits
  48.  */
  49. #define _PAGE_VALID 0x0001
  50. #define _PAGE_FOR 0x0002 /* used for page protection (fault on read) */
  51. #define _PAGE_FOW 0x0004 /* used for page protection (fault on write) */
  52. #define _PAGE_FOE 0x0008 /* used for page protection (fault on exec) */
  53. #define _PAGE_ASM 0x0010
  54. #define _PAGE_KRE 0x0100 /* xxx - see below on the "accessed" bit */
  55. #define _PAGE_URE 0x0200 /* xxx */
  56. #define _PAGE_KWE 0x1000 /* used to do the dirty bit in software */
  57. #define _PAGE_UWE 0x2000 /* used to do the dirty bit in software */
  58. /* .. and these are ours ... */
  59. #define _PAGE_DIRTY 0x20000
  60. #define _PAGE_ACCESSED 0x40000
  61. /*
  62.  * NOTE! The "accessed" bit isn't necessarily exact:  it can be kept exactly
  63.  * by software (use the KRE/URE/KWE/UWE bits appropriately), but I'll fake it.
  64.  * Under Linux/AXP, the "accessed" bit just means "read", and I'll just use
  65.  * the KRE/URE bits to watch for it. That way we don't need to overload the
  66.  * KWE/UWE bits with both handling dirty and accessed.
  67.  *
  68.  * Note that the kernel uses the accessed bit just to check whether to page
  69.  * out a page or not, so it doesn't have to be exact anyway.
  70.  */
  71. #define __DIRTY_BITS (_PAGE_DIRTY | _PAGE_KWE | _PAGE_UWE)
  72. #define __ACCESS_BITS (_PAGE_ACCESSED | _PAGE_KRE | _PAGE_URE)
  73. #define _PFN_MASK 0xFFFFFFFF00000000
  74. #define _PAGE_TABLE (_PAGE_VALID | __DIRTY_BITS | __ACCESS_BITS)
  75. #define _PAGE_CHG_MASK (_PFN_MASK | __DIRTY_BITS | __ACCESS_BITS)
  76. /*
  77.  * All the normal masks have the "page accessed" bits on, as any time they are used,
  78.  * the page is accessed. They are cleared only by the page-out routines
  79.  */
  80. #define PAGE_NONE __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOR | _PAGE_FOW | _PAGE_FOE)
  81. #define PAGE_SHARED __pgprot(_PAGE_VALID | __ACCESS_BITS)
  82. #define PAGE_COPY __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOW)
  83. #define PAGE_READONLY __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOW)
  84. #define PAGE_KERNEL __pgprot(_PAGE_VALID | _PAGE_ASM | _PAGE_KRE | _PAGE_KWE)
  85. #define _PAGE_NORMAL(x) __pgprot(_PAGE_VALID | __ACCESS_BITS | (x))
  86. #define _PAGE_P(x) _PAGE_NORMAL((x) | (((x) & _PAGE_FOW)?0:_PAGE_FOW))
  87. #define _PAGE_S(x) _PAGE_NORMAL(x)
  88. /*
  89.  * The hardware can handle write-only mappings, but as the Alpha
  90.  * architecture does byte-wide writes with a read-modify-write
  91.  * sequence, it's not practical to have write-without-read privs.
  92.  * Thus the "-w- -> rw-" and "-wx -> rwx" mapping here (and in
  93.  * arch/alpha/mm/fault.c)
  94.  */
  95. /* xwr */
  96. #define __P000 _PAGE_P(_PAGE_FOE | _PAGE_FOW | _PAGE_FOR)
  97. #define __P001 _PAGE_P(_PAGE_FOE | _PAGE_FOW)
  98. #define __P010 _PAGE_P(_PAGE_FOE)
  99. #define __P011 _PAGE_P(_PAGE_FOE)
  100. #define __P100 _PAGE_P(_PAGE_FOW | _PAGE_FOR)
  101. #define __P101 _PAGE_P(_PAGE_FOW)
  102. #define __P110 _PAGE_P(0)
  103. #define __P111 _PAGE_P(0)
  104. #define __S000 _PAGE_S(_PAGE_FOE | _PAGE_FOW | _PAGE_FOR)
  105. #define __S001 _PAGE_S(_PAGE_FOE | _PAGE_FOW)
  106. #define __S010 _PAGE_S(_PAGE_FOE)
  107. #define __S011 _PAGE_S(_PAGE_FOE)
  108. #define __S100 _PAGE_S(_PAGE_FOW | _PAGE_FOR)
  109. #define __S101 _PAGE_S(_PAGE_FOW)
  110. #define __S110 _PAGE_S(0)
  111. #define __S111 _PAGE_S(0)
  112. /*
  113.  * BAD_PAGETABLE is used when we need a bogus page-table, while
  114.  * BAD_PAGE is used for a bogus page.
  115.  *
  116.  * ZERO_PAGE is a global shared page that is always zero:  used
  117.  * for zero-mapped memory areas etc..
  118.  */
  119. extern pte_t __bad_page(void);
  120. extern pmd_t * __bad_pagetable(void);
  121. extern unsigned long __zero_page(void);
  122. #define BAD_PAGETABLE __bad_pagetable()
  123. #define BAD_PAGE __bad_page()
  124. #define ZERO_PAGE(vaddr) (virt_to_page(ZERO_PGE))
  125. /* number of bits that fit into a memory pointer */
  126. #define BITS_PER_PTR (8*sizeof(unsigned long))
  127. /* to align the pointer to a pointer address */
  128. #define PTR_MASK (~(sizeof(void*)-1))
  129. /* sizeof(void*)==1<<SIZEOF_PTR_LOG2 */
  130. #define SIZEOF_PTR_LOG2 3
  131. /* to find an entry in a page-table */
  132. #define PAGE_PTR(address)
  133.   ((unsigned long)(address)>>(PAGE_SHIFT-SIZEOF_PTR_LOG2)&PTR_MASK&~PAGE_MASK)
  134. /*
  135.  * On certain platforms whose physical address space can overlap KSEG,
  136.  * namely EV6 and above, we must re-twiddle the physaddr to restore the
  137.  * correct high-order bits.
  138.  *
  139.  * This is extremely confusing until you realize that this is actually
  140.  * just working around a userspace bug.  The X server was intending to
  141.  * provide the physical address but instead provided the KSEG address.
  142.  * Or tried to, except it's not representable.
  143.  * 
  144.  * On Tsunami there's nothing meaningful at 0x40000000000, so this is
  145.  * a safe thing to do.  Come the first core logic that does put something
  146.  * in this area -- memory or whathaveyou -- then this hack will have
  147.  * to go away.  So be prepared!
  148.  */
  149. #if defined(CONFIG_ALPHA_GENERIC) && defined(USE_48_BIT_KSEG)
  150. #error "EV6-only feature in a generic kernel"
  151. #endif
  152. #if defined(CONFIG_ALPHA_GENERIC) || 
  153.     (defined(CONFIG_ALPHA_EV6) && !defined(USE_48_BIT_KSEG))
  154. #define PHYS_TWIDDLE(phys) 
  155.   ((((phys) & 0xc0000000000UL) == 0x40000000000UL) 
  156.   ? ((phys) ^= 0xc0000000000UL) : (phys))
  157. #else
  158. #define PHYS_TWIDDLE(phys) (phys)
  159. #endif
  160. /*
  161.  * Conversion functions:  convert a page and protection to a page entry,
  162.  * and a page entry and page directory to the page they refer to.
  163.  */
  164. #ifndef CONFIG_DISCONTIGMEM
  165. #define PAGE_TO_PA(page) ((page - mem_map) << PAGE_SHIFT)
  166. #else
  167. #define PAGE_TO_PA(page) 
  168. ((((page)-(page)->zone->zone_mem_map) << PAGE_SHIFT) 
  169. + (page)->zone->zone_start_paddr)
  170. #endif
  171. #ifndef CONFIG_DISCONTIGMEM
  172. #define mk_pte(page, pgprot)
  173. ({
  174. pte_t pte;
  175. pte_val(pte) = ((unsigned long)(page - mem_map) << 32) |
  176.        pgprot_val(pgprot);
  177. pte;
  178. })
  179. #else
  180. #define mk_pte(page, pgprot)
  181. ({
  182. pte_t pte;
  183. unsigned long pfn;
  184. pfn = ((unsigned long)((page)-(page)->zone->zone_mem_map)) << 32;
  185. pfn += (page)->zone->zone_start_paddr << (32-PAGE_SHIFT);
  186. pte_val(pte) = pfn | pgprot_val(pgprot);
  187. pte;
  188. })
  189. #endif
  190. extern inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot)
  191. { pte_t pte; pte_val(pte) = (PHYS_TWIDDLE(physpage) << (32-PAGE_SHIFT)) | pgprot_val(pgprot); return pte; }
  192. extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  193. { pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot); return pte; }
  194. extern inline void pmd_set(pmd_t * pmdp, pte_t * ptep)
  195. { pmd_val(*pmdp) = _PAGE_TABLE | ((((unsigned long) ptep) - PAGE_OFFSET) << (32-PAGE_SHIFT)); }
  196. extern inline void pgd_set(pgd_t * pgdp, pmd_t * pmdp)
  197. { pgd_val(*pgdp) = _PAGE_TABLE | ((((unsigned long) pmdp) - PAGE_OFFSET) << (32-PAGE_SHIFT)); }
  198. #ifndef CONFIG_DISCONTIGMEM
  199. #define pte_page(x) (mem_map+(unsigned long)((pte_val(x) >> 32)))
  200. #else
  201. #define pte_page(x)
  202. ({
  203. unsigned long kvirt;
  204. struct page * __xx;
  205. kvirt = (unsigned long)__va(pte_val(x) >> (32-PAGE_SHIFT));
  206. __xx = virt_to_page(kvirt);
  207. __xx;
  208. })
  209. #endif
  210. extern inline unsigned long pmd_page(pmd_t pmd)
  211. { return PAGE_OFFSET + ((pmd_val(pmd) & _PFN_MASK) >> (32-PAGE_SHIFT)); }
  212. extern inline unsigned long pgd_page(pgd_t pgd)
  213. { return PAGE_OFFSET + ((pgd_val(pgd) & _PFN_MASK) >> (32-PAGE_SHIFT)); }
  214. extern inline int pte_none(pte_t pte) { return !pte_val(pte); }
  215. extern inline int pte_present(pte_t pte) { return pte_val(pte) & _PAGE_VALID; }
  216. extern inline void pte_clear(pte_t *ptep) { pte_val(*ptep) = 0; }
  217. extern inline int pmd_none(pmd_t pmd) { return !pmd_val(pmd); }
  218. extern inline int pmd_bad(pmd_t pmd) { return (pmd_val(pmd) & ~_PFN_MASK) != _PAGE_TABLE; }
  219. extern inline int pmd_present(pmd_t pmd) { return pmd_val(pmd) & _PAGE_VALID; }
  220. extern inline void pmd_clear(pmd_t * pmdp) { pmd_val(*pmdp) = 0; }
  221. extern inline int pgd_none(pgd_t pgd) { return !pgd_val(pgd); }
  222. extern inline int pgd_bad(pgd_t pgd) { return (pgd_val(pgd) & ~_PFN_MASK) != _PAGE_TABLE; }
  223. extern inline int pgd_present(pgd_t pgd) { return pgd_val(pgd) & _PAGE_VALID; }
  224. extern inline void pgd_clear(pgd_t * pgdp) { pgd_val(*pgdp) = 0; }
  225. #define page_address(page) ((page)->virtual)
  226. /*
  227.  * The following only work if pte_present() is true.
  228.  * Undefined behaviour if not..
  229.  */
  230. extern inline int pte_read(pte_t pte) { return !(pte_val(pte) & _PAGE_FOR); }
  231. extern inline int pte_write(pte_t pte) { return !(pte_val(pte) & _PAGE_FOW); }
  232. extern inline int pte_exec(pte_t pte) { return !(pte_val(pte) & _PAGE_FOE); }
  233. extern inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
  234. extern inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
  235. extern inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) |= _PAGE_FOW; return pte; }
  236. extern inline pte_t pte_rdprotect(pte_t pte) { pte_val(pte) |= _PAGE_FOR; return pte; }
  237. extern inline pte_t pte_exprotect(pte_t pte) { pte_val(pte) |= _PAGE_FOE; return pte; }
  238. extern inline pte_t pte_mkclean(pte_t pte) { pte_val(pte) &= ~(__DIRTY_BITS); return pte; }
  239. extern inline pte_t pte_mkold(pte_t pte) { pte_val(pte) &= ~(__ACCESS_BITS); return pte; }
  240. extern inline pte_t pte_mkwrite(pte_t pte) { pte_val(pte) &= ~_PAGE_FOW; return pte; }
  241. extern inline pte_t pte_mkread(pte_t pte) { pte_val(pte) &= ~_PAGE_FOR; return pte; }
  242. extern inline pte_t pte_mkexec(pte_t pte) { pte_val(pte) &= ~_PAGE_FOE; return pte; }
  243. extern inline pte_t pte_mkdirty(pte_t pte) { pte_val(pte) |= __DIRTY_BITS; return pte; }
  244. extern inline pte_t pte_mkyoung(pte_t pte) { pte_val(pte) |= __ACCESS_BITS; return pte; }
  245. #define PAGE_DIR_OFFSET(tsk,address) pgd_offset((tsk),(address))
  246. /* to find an entry in a kernel page-table-directory */
  247. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  248. /* to find an entry in a page-table-directory. */
  249. #define pgd_index(address) ((address >> PGDIR_SHIFT) & (PTRS_PER_PGD - 1))
  250. #define __pgd_offset(address) pgd_index(address)
  251. #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
  252. /* Find an entry in the second-level page table.. */
  253. extern inline pmd_t * pmd_offset(pgd_t * dir, unsigned long address)
  254. {
  255. return (pmd_t *) pgd_page(*dir) + ((address >> PMD_SHIFT) & (PTRS_PER_PAGE - 1));
  256. }
  257. /* Find an entry in the third-level page table.. */
  258. extern inline pte_t * pte_offset(pmd_t * dir, unsigned long address)
  259. {
  260. return (pte_t *) pmd_page(*dir) + ((address >> PAGE_SHIFT) & (PTRS_PER_PAGE - 1));
  261. }
  262. extern pgd_t swapper_pg_dir[1024];
  263. /*
  264.  * The Alpha doesn't have any external MMU info:  the kernel page
  265.  * tables contain all the necessary information.
  266.  */
  267. extern inline void update_mmu_cache(struct vm_area_struct * vma,
  268. unsigned long address, pte_t pte)
  269. {
  270. }
  271. /*
  272.  * Non-present pages:  high 24 bits are offset, next 8 bits type,
  273.  * low 32 bits zero.
  274.  */
  275. extern inline pte_t mk_swap_pte(unsigned long type, unsigned long offset)
  276. { pte_t pte; pte_val(pte) = (type << 32) | (offset << 40); return pte; }
  277. #define SWP_TYPE(x) (((x).val >> 32) & 0xff)
  278. #define SWP_OFFSET(x) ((x).val >> 40)
  279. #define SWP_ENTRY(type, offset) ((swp_entry_t) { pte_val(mk_swap_pte((type),(offset))) })
  280. #define pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  281. #define swp_entry_to_pte(x) ((pte_t) { (x).val })
  282. /* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
  283. #define PageSkip(page) (0)
  284. #ifndef CONFIG_DISCONTIGMEM
  285. #define kern_addr_valid(addr) (1)
  286. #endif
  287. #define io_remap_page_range(start, busaddr, size, prot) 
  288.     remap_page_range(start, virt_to_phys(__ioremap(busaddr, size)), size, prot)
  289. #define pte_ERROR(e) 
  290. printk("%s:%d: bad pte %016lx.n", __FILE__, __LINE__, pte_val(e))
  291. #define pmd_ERROR(e) 
  292. printk("%s:%d: bad pmd %016lx.n", __FILE__, __LINE__, pmd_val(e))
  293. #define pgd_ERROR(e) 
  294. printk("%s:%d: bad pgd %016lx.n", __FILE__, __LINE__, pgd_val(e))
  295. extern void paging_init(void);
  296. #include <asm-generic/pgtable.h>
  297. /*
  298.  * No page table caches to initialise
  299.  */
  300. #define pgtable_cache_init() do { } while (0)
  301. /* We have our own get_unmapped_area to cope with ADDR_LIMIT_32BIT.  */
  302. #define HAVE_ARCH_UNMAPPED_AREA
  303. #endif /* _ALPHA_PGTABLE_H */