pgtable.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:15k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _PARISC_PGTABLE_H
  2. #define _PARISC_PGTABLE_H
  3. #include <asm/fixmap.h>
  4. #ifndef __ASSEMBLY__
  5. /*
  6.  * we simulate an x86-style page table for the linux mm code
  7.  */
  8. #include <linux/spinlock.h>
  9. #include <asm/processor.h>
  10. #include <asm/cache.h>
  11. #include <asm/bitops.h>
  12. #define ARCH_STACK_GROWSUP
  13. /*
  14.  * kern_addr_valid(ADDR) tests if ADDR is pointing to valid kernel
  15.  * memory.  For the return value to be meaningful, ADDR must be >=
  16.  * PAGE_OFFSET.  This operation can be relatively expensive (e.g.,
  17.  * require a hash-, or multi-level tree-lookup or something of that
  18.  * sort) but it guarantees to return TRUE only if accessing the page
  19.  * at that address does not cause an error.  Note that there may be
  20.  * addresses for which kern_addr_valid() returns FALSE even though an
  21.  * access would not cause an error (e.g., this is typically true for
  22.  * memory mapped I/O regions.
  23.  *
  24.  * XXX Need to implement this for parisc.
  25.  */
  26. #define kern_addr_valid(addr) (1)
  27. /* Certain architectures need to do special things when PTEs
  28.  * within a page table are directly modified.  Thus, the following
  29.  * hook is made available.
  30.  */
  31. #define set_pte(pteptr, pteval)                                 
  32.         do{                                                     
  33.                 *(pteptr) = (pteval);                           
  34.         } while(0)
  35. #endif /* !__ASSEMBLY__ */
  36. #define pte_ERROR(e) 
  37. printk("%s:%d: bad pte %08lx.n", __FILE__, __LINE__, pte_val(e))
  38. #define pmd_ERROR(e) 
  39. printk("%s:%d: bad pmd %08lx.n", __FILE__, __LINE__, pmd_val(e))
  40. #define pgd_ERROR(e) 
  41. printk("%s:%d: bad pgd %08lx.n", __FILE__, __LINE__, pgd_val(e))
  42.  /* Note: If you change ISTACK_SIZE, you need to change the corresponding
  43.   * values in vmlinux.lds and vmlinux64.lds (init_istack section). Also,
  44.   * the "order" and size need to agree.
  45.   */
  46. #define  ISTACK_SIZE  32768 /* Interrupt Stack Size */
  47. #define  ISTACK_ORDER 3
  48. /*
  49.  * NOTE: Many of the below macros use PT_NLEVELS because
  50.  *       it is convenient that PT_NLEVELS == LOG2(pte size in bytes),
  51.  *       i.e. we use 3 level page tables when we use 8 byte pte's
  52.  *       (for 64 bit) and 2 level page tables when we use 4 byte pte's
  53.  */
  54. #ifdef __LP64__
  55. #define PT_NLEVELS 3
  56. #define PT_INITIAL 4 /* Number of initial page tables */
  57. #else
  58. #define PT_NLEVELS 2
  59. #define PT_INITIAL 2 /* Number of initial page tables */
  60. #endif
  61. #define MAX_ADDRBITS (PAGE_SHIFT + (PT_NLEVELS)*(PAGE_SHIFT - PT_NLEVELS))
  62. #define MAX_ADDRESS (1UL << MAX_ADDRBITS)
  63. #define SPACEID_SHIFT (MAX_ADDRBITS - 32)
  64. /* Definitions for 1st level */
  65. #define PGDIR_SHIFT  (PAGE_SHIFT + (PT_NLEVELS - 1)*(PAGE_SHIFT - PT_NLEVELS))
  66. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  67. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  68. #define PTRS_PER_PGD    (1UL << (PAGE_SHIFT - PT_NLEVELS))
  69. #define USER_PTRS_PER_PGD       PTRS_PER_PGD
  70. /* Definitions for 2nd level */
  71. #define pgtable_cache_init() do { } while (0)
  72. #define PMD_SHIFT       (PAGE_SHIFT + (PAGE_SHIFT - PT_NLEVELS))
  73. #define PMD_SIZE (1UL << PMD_SHIFT)
  74. #define PMD_MASK (~(PMD_SIZE-1))
  75. #if PT_NLEVELS == 3
  76. #define PTRS_PER_PMD    (1UL << (PAGE_SHIFT - PT_NLEVELS))
  77. #else
  78. #define PTRS_PER_PMD    1
  79. #endif
  80. /* Definitions for 3rd level */
  81. #define PTRS_PER_PTE    (1UL << (PAGE_SHIFT - PT_NLEVELS))
  82. /*
  83.  * pgd entries used up by user/kernel:
  84.  */
  85. #define FIRST_USER_PGD_NR 0
  86. #ifndef __ASSEMBLY__
  87. extern  void *vmalloc_start;
  88. #define PCXL_DMA_MAP_SIZE   (8*1024*1024)
  89. #define VMALLOC_START   ((unsigned long)vmalloc_start)
  90. #define VMALLOC_VMADDR(x) ((unsigned long)(x))
  91. #define VMALLOC_END (FIXADDR_START)
  92. #endif
  93. /* NB: The tlb miss handlers make certain assumptions about the order */
  94. /*     of the following bits, so be careful (One example, bits 25-31  */
  95. /*     are moved together in one instruction).                        */
  96. #define _PAGE_READ_BIT     31   /* (0x001) read access allowed */
  97. #define _PAGE_WRITE_BIT    30   /* (0x002) write access allowed */
  98. #define _PAGE_EXEC_BIT     29   /* (0x004) execute access allowed */
  99. #define _PAGE_GATEWAY_BIT  28   /* (0x008) privilege promotion allowed */
  100. #define _PAGE_DMB_BIT      27   /* (0x010) Data Memory Break enable (B bit) */
  101. #define _PAGE_DIRTY_BIT    26   /* (0x020) Page Dirty (D bit) */
  102. #define _PAGE_REFTRAP_BIT  25   /* (0x040) Page Ref. Trap enable (T bit) */
  103. #define _PAGE_NO_CACHE_BIT 24   /* (0x080) Uncached Page (U bit) */
  104. #define _PAGE_ACCESSED_BIT 23   /* (0x100) Software: Page Accessed */
  105. #define _PAGE_PRESENT_BIT  22   /* (0x200) Software: translation valid */
  106. #define _PAGE_FLUSH_BIT    21   /* (0x400) Software: translation valid */
  107. /*             for cache flushing only */
  108. #define _PAGE_USER_BIT     20   /* (0x800) Software: User accessable page */
  109. /* N.B. The bits are defined in terms of a 32 bit word above, so the */
  110. /*      following macro is ok for both 32 and 64 bit.                */
  111. #define xlate_pabit(x) (31 - x)
  112. #define _PAGE_READ     (1 << xlate_pabit(_PAGE_READ_BIT))
  113. #define _PAGE_WRITE    (1 << xlate_pabit(_PAGE_WRITE_BIT))
  114. #define _PAGE_RW       (_PAGE_READ | _PAGE_WRITE)
  115. #define _PAGE_EXEC     (1 << xlate_pabit(_PAGE_EXEC_BIT))
  116. #define _PAGE_GATEWAY  (1 << xlate_pabit(_PAGE_GATEWAY_BIT))
  117. #define _PAGE_DMB      (1 << xlate_pabit(_PAGE_DMB_BIT))
  118. #define _PAGE_DIRTY    (1 << xlate_pabit(_PAGE_DIRTY_BIT))
  119. #define _PAGE_REFTRAP  (1 << xlate_pabit(_PAGE_REFTRAP_BIT))
  120. #define _PAGE_NO_CACHE (1 << xlate_pabit(_PAGE_NO_CACHE_BIT))
  121. #define _PAGE_ACCESSED (1 << xlate_pabit(_PAGE_ACCESSED_BIT))
  122. #define _PAGE_PRESENT  (1 << xlate_pabit(_PAGE_PRESENT_BIT))
  123. #define _PAGE_FLUSH    (1 << xlate_pabit(_PAGE_FLUSH_BIT))
  124. #define _PAGE_USER     (1 << xlate_pabit(_PAGE_USER_BIT))
  125. #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE |  _PAGE_DIRTY | _PAGE_ACCESSED)
  126. #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
  127. #define _PAGE_KERNEL (_PAGE_PRESENT | _PAGE_EXEC | _PAGE_READ | _PAGE_WRITE | _PAGE_DIRTY | _PAGE_ACCESSED)
  128. #ifndef __ASSEMBLY__
  129. #define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
  130. #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_WRITE | _PAGE_ACCESSED)
  131. /* Others seem to make this executable, I don't know if that's correct
  132.    or not.  The stack is mapped this way though so this is necessary
  133.    in the short term - dhd@linuxcare.com, 2000-08-08 */
  134. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_ACCESSED)
  135. #define PAGE_WRITEONLY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITE | _PAGE_ACCESSED)
  136. #define PAGE_EXECREAD   __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_EXEC |_PAGE_ACCESSED)
  137. #define PAGE_COPY       PAGE_EXECREAD
  138. #define PAGE_RWX        __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_WRITE | _PAGE_EXEC |_PAGE_ACCESSED)
  139. #define PAGE_KERNEL __pgprot(_PAGE_KERNEL)
  140. #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_EXEC | _PAGE_READ | _PAGE_DIRTY | _PAGE_ACCESSED)
  141. #define PAGE_KERNEL_UNC __pgprot(_PAGE_KERNEL | _PAGE_NO_CACHE)
  142. #define PAGE_GATEWAY    __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_GATEWAY| _PAGE_READ)
  143. #define PAGE_FLUSH      __pgprot(_PAGE_FLUSH)
  144. /*
  145.  * We could have an execute only page using "gateway - promote to priv
  146.  * level 3", but that is kind of silly. So, the way things are defined
  147.  * now, we must always have read permission for pages with execute
  148.  * permission. For the fun of it we'll go ahead and support write only
  149.  * pages.
  150.  */
  151.  /*xwr*/
  152. #define __P000  PAGE_NONE
  153. #define __P001  PAGE_READONLY
  154. #define __P010  __P000 /* copy on write */
  155. #define __P011  __P001 /* copy on write */
  156. #define __P100  PAGE_EXECREAD
  157. #define __P101  PAGE_EXECREAD
  158. #define __P110  __P100 /* copy on write */
  159. #define __P111  __P101 /* copy on write */
  160. #define __S000  PAGE_NONE
  161. #define __S001  PAGE_READONLY
  162. #define __S010  PAGE_WRITEONLY
  163. #define __S011  PAGE_SHARED
  164. #define __S100  PAGE_EXECREAD
  165. #define __S101  PAGE_EXECREAD
  166. #define __S110  PAGE_RWX
  167. #define __S111  PAGE_RWX
  168. extern pgd_t swapper_pg_dir[]; /* declared in init_task.c */
  169. /* initial page tables for 0-8MB for kernel */
  170. extern unsigned long pg0[];
  171. /* zero page used for uninitialized stuff */
  172. extern unsigned long *empty_zero_page;
  173. /*
  174.  * ZERO_PAGE is a global shared page that is always zero: used
  175.  * for zero-mapped memory areas etc..
  176.  */
  177. #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
  178. #define pte_none(x)     ((pte_val(x) == 0) || (pte_val(x) & _PAGE_FLUSH))
  179. #define pte_present(x) (pte_val(x) & _PAGE_PRESENT)
  180. #define pte_clear(xp) do { pte_val(*(xp)) = 0; } while (0)
  181. #define pmd_none(x) (!pmd_val(x))
  182. #define pmd_bad(x) ((pmd_val(x) & ~PAGE_MASK) != _PAGE_TABLE)
  183. #define pmd_present(x) (pmd_val(x) & _PAGE_PRESENT)
  184. #define pmd_clear(xp) do { pmd_val(*(xp)) = 0; } while (0)
  185. #ifdef __LP64__
  186. #define pgd_page(pgd) ((unsigned long) __va(pgd_val(pgd) & PAGE_MASK))
  187. /* For 64 bit we have three level tables */
  188. #define pgd_none(x)     (!pgd_val(x))
  189. #define pgd_bad(x)      ((pgd_val(x) & ~PAGE_MASK) != _PAGE_TABLE)
  190. #define pgd_present(x)  (pgd_val(x) & _PAGE_PRESENT)
  191. #define pgd_clear(xp)   do { pgd_val(*(xp)) = 0; } while (0)
  192. #else
  193. /*
  194.  * The "pgd_xxx()" functions here are trivial for a folded two-level
  195.  * setup: the pgd is never bad, and a pmd always exists (as it's folded
  196.  * into the pgd entry)
  197.  */
  198. extern inline int pgd_none(pgd_t pgd) { return 0; }
  199. extern inline int pgd_bad(pgd_t pgd) { return 0; }
  200. extern inline int pgd_present(pgd_t pgd) { return 1; }
  201. extern inline void pgd_clear(pgd_t * pgdp) { }
  202. #endif
  203. /*
  204.  * The following only work if pte_present() is true.
  205.  * Undefined behaviour if not..
  206.  */
  207. extern inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_READ; }
  208. extern inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
  209. extern inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
  210. extern inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
  211. extern inline pte_t pte_rdprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_READ; return pte; }
  212. extern inline pte_t pte_mkclean(pte_t pte) { pte_val(pte) &= ~_PAGE_DIRTY; return pte; }
  213. extern inline pte_t pte_mkold(pte_t pte) { pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
  214. extern inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_WRITE; return pte; }
  215. extern inline pte_t pte_mkread(pte_t pte) { pte_val(pte) |= _PAGE_READ; return pte; }
  216. extern inline pte_t pte_mkdirty(pte_t pte) { pte_val(pte) |= _PAGE_DIRTY; return pte; }
  217. extern inline pte_t pte_mkyoung(pte_t pte) { pte_val(pte) |= _PAGE_ACCESSED; return pte; }
  218. extern inline pte_t pte_mkwrite(pte_t pte) { pte_val(pte) |= _PAGE_WRITE; return pte; }
  219. /*
  220.  * Conversion functions: convert a page and protection to a page entry,
  221.  * and a page entry and page directory to the page they refer to.
  222.  */
  223. #define __mk_pte(addr,pgprot) 
  224. ({
  225. pte_t __pte;
  226. pte_val(__pte) = ((addr)+pgprot_val(pgprot));
  227. __pte;
  228. })
  229. #ifdef CONFIG_DISCONTIGMEM
  230. #define PAGE_TO_PA(page) 
  231. ((((page)-(page)->zone->zone_mem_map) << PAGE_SHIFT) 
  232. + ((page)->zone->zone_start_paddr))
  233. #else
  234. #define PAGE_TO_PA(page) ((page - mem_map) << PAGE_SHIFT)
  235. #endif
  236. #define mk_pte(page, pgprot)
  237. ({
  238. pte_t __pte;                                                    
  239. pte_val(__pte) = ((unsigned long)(PAGE_TO_PA(page))) |
  240. pgprot_val(pgprot);
  241. __pte;
  242. })
  243. /* This takes a physical page address that is used by the remapping functions */
  244. #define mk_pte_phys(physpage, pgprot) 
  245. ({ pte_t __pte; pte_val(__pte) = physpage + pgprot_val(pgprot); __pte; })
  246. extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  247. { pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot); return pte; }
  248. /* Permanent address of a page.  On parisc we don't have highmem. */
  249. #ifdef CONFIG_DISCONTIGMEM
  250. #define pte_page(x) (phys_to_page(pte_val(x)))
  251. #else
  252. #define pte_page(x) (mem_map+(pte_val(x) >> PAGE_SHIFT))
  253. #endif
  254. #define pmd_page(pmd) ((unsigned long) __va(pmd_val(pmd) & PAGE_MASK))
  255. #define pgd_index(address) ((address) >> PGDIR_SHIFT)
  256. /* to find an entry in a page-table-directory */
  257. #define pgd_offset(mm, address) 
  258. ((mm)->pgd + ((address) >> PGDIR_SHIFT))
  259. /* to find an entry in a kernel page-table-directory */
  260. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  261. /* Find an entry in the second-level page table.. */
  262. #ifdef __LP64__
  263. #define pmd_offset(dir,address) 
  264. ((pmd_t *) pgd_page(*(dir)) + (((address)>>PMD_SHIFT) & (PTRS_PER_PMD-1)))
  265. #else
  266. #define pmd_offset(dir,addr) ((pmd_t *) dir)
  267. #endif
  268. /* Find an entry in the third-level page table.. */ 
  269. #define pte_offset(pmd, address) 
  270. ((pte_t *) pmd_page(*(pmd)) + (((address)>>PAGE_SHIFT) & (PTRS_PER_PTE-1)))
  271. extern void paging_init (void);
  272. /* Used for deferring calls to flush_dcache_page() */
  273. #define PG_dcache_dirty         PG_arch_1
  274. struct vm_area_struct; /* forward declaration (include/linux/mm.h) */
  275. extern void update_mmu_cache(struct vm_area_struct *, unsigned long, pte_t);
  276. /* Encode and de-code a swap entry */
  277. #define SWP_TYPE(x)                     ((x).val & 0x1f)
  278. #define SWP_OFFSET(x)                   ( (((x).val >> 5) &  0xf) | 
  279.   (((x).val >> 7) & ~0xf) )
  280. #define SWP_ENTRY(type, offset)         ((swp_entry_t) { (type) | 
  281.     ((offset &  0xf) << 5) | 
  282.     ((offset & ~0xf) << 7) })
  283. #define pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  284. #define swp_entry_to_pte(x) ((pte_t) { (x).val })
  285. static inline int ptep_test_and_clear_young(pte_t *ptep)
  286. {
  287. #ifdef CONFIG_SMP
  288. return test_and_clear_bit(xlate_pabit(_PAGE_ACCESSED_BIT), ptep);
  289. #else
  290. pte_t pte = *ptep;
  291. if (!pte_young(pte))
  292. return 0;
  293. set_pte(ptep, pte_mkold(pte));
  294. return 1;
  295. #endif
  296. }
  297. static inline int ptep_test_and_clear_dirty(pte_t *ptep)
  298. {
  299. #ifdef CONFIG_SMP
  300. return test_and_clear_bit(xlate_pabit(_PAGE_DIRTY_BIT), ptep);
  301. #else
  302. pte_t pte = *ptep;
  303. if (!pte_dirty(pte))
  304. return 0;
  305. set_pte(ptep, pte_mkclean(pte));
  306. return 1;
  307. #endif
  308. }
  309. #ifdef CONFIG_SMP
  310. extern spinlock_t pa_dbit_lock;
  311. #else
  312. static int pa_dbit_lock; /* dummy to keep the compilers happy */
  313. #endif
  314. static inline pte_t ptep_get_and_clear(pte_t *ptep)
  315. {
  316. pte_t old_pte;
  317. pte_t pte;
  318. spin_lock(&pa_dbit_lock);
  319. pte = old_pte = *ptep;
  320. pte_val(pte) &= ~_PAGE_PRESENT;
  321. pte_val(pte) |= _PAGE_FLUSH;
  322. set_pte(ptep,pte);
  323. spin_unlock(&pa_dbit_lock);
  324. return old_pte;
  325. }
  326. static inline void ptep_set_wrprotect(pte_t *ptep)
  327. {
  328. #ifdef CONFIG_SMP
  329. unsigned long new, old;
  330. do {
  331. old = pte_val(*ptep);
  332. new = pte_val(pte_wrprotect(__pte (old)));
  333. } while (cmpxchg((unsigned long *) ptep, old, new) != old);
  334. #else
  335. pte_t old_pte = *ptep;
  336. set_pte(ptep, pte_wrprotect(old_pte));
  337. #endif
  338. }
  339. static inline void ptep_mkdirty(pte_t *ptep)
  340. {
  341. #ifdef CONFIG_SMP
  342. set_bit(xlate_pabit(_PAGE_DIRTY_BIT), ptep);
  343. #else
  344. pte_t old_pte = *ptep;
  345. set_pte(ptep, pte_mkdirty(old_pte));
  346. #endif
  347. }
  348. #define pte_same(A,B) (pte_val(A) == pte_val(B))
  349. #endif /* !__ASSEMBLY__ */
  350. /* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
  351. #define PageSkip(page) (0)
  352. #define io_remap_page_range remap_page_range
  353. /* We provide our own get_unmapped_area to provide cache coherency */
  354. #define HAVE_ARCH_UNMAPPED_AREA
  355. #endif /* _PARISC_PGTABLE_H */