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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_SH_PGALLOC_H
  2. #define __ASM_SH_PGALLOC_H
  3. #include <asm/processor.h>
  4. #include <linux/threads.h>
  5. #include <linux/slab.h>
  6. #define pgd_quicklist ((unsigned long *)0)
  7. #define pmd_quicklist ((unsigned long *)0)
  8. #define pte_quicklist ((unsigned long *)0)
  9. #define pgtable_cache_size 0L
  10. #define pmd_populate(mm, pmd, pte) 
  11. set_pmd(pmd, __pmd(_PAGE_TABLE + __pa(pte)))
  12. /*
  13.  * Allocate and free page tables.
  14.  */
  15. static inline pgd_t *pgd_alloc(struct mm_struct *mm)
  16. {
  17. unsigned int pgd_size = (USER_PTRS_PER_PGD * sizeof(pgd_t));
  18. pgd_t *pgd = (pgd_t *)kmalloc(pgd_size, GFP_KERNEL);
  19. if (pgd)
  20. memset(pgd, 0, pgd_size);
  21. return pgd;
  22. }
  23. static inline void pgd_free(pgd_t *pgd)
  24. {
  25. kfree(pgd);
  26. }
  27. static inline pte_t *pte_alloc_one(struct mm_struct *mm, unsigned long address)
  28. {
  29. pte_t *pte = (pte_t *) __get_free_page(GFP_KERNEL);
  30. if (pte)
  31. clear_page(pte);
  32. return pte;
  33. }
  34. static inline pte_t *pte_alloc_one_fast(struct mm_struct *mm, unsigned long address)
  35. {
  36. return 0;
  37. }
  38. static inline void pte_free_slow(pte_t *pte)
  39. {
  40. free_page((unsigned long)pte);
  41. }
  42. #define pte_free(pte) pte_free_slow(pte)
  43. /*
  44.  * allocating and freeing a pmd is trivial: the 1-entry pmd is
  45.  * inside the pgd, so has no extra memory associated with it.
  46.  */
  47. static inline void pmd_free(pmd_t * pmd)
  48. {
  49. }
  50. #define pmd_alloc_one_fast(mm, addr) ({ BUG(); ((pmd_t *)1); })
  51. #define pmd_alloc_one(mm, addr) ({ BUG(); ((pmd_t *)2); })
  52. #define pmd_free_slow(x) do { } while (0)
  53. #define pmd_free_fast(x) do { } while (0)
  54. #define pmd_free(x) do { } while (0)
  55. #define pgd_populate(mm, pmd, pte) BUG()
  56. /* Do nothing */
  57. static inline int do_check_pgt_cache(int low, int high) { }
  58. /*
  59.  * TLB flushing:
  60.  *
  61.  *  - flush_tlb() flushes the current mm struct TLBs
  62.  *  - flush_tlb_all() flushes all processes TLBs
  63.  *  - flush_tlb_mm(mm) flushes the specified mm context TLB's
  64.  *  - flush_tlb_page(vma, vmaddr) flushes one page
  65.  *  - flush_tlb_range(mm, start, end) flushes a range of pages
  66.  *  - flush_tlb_pgtables(mm, start, end) flushes a range of page tables
  67.  */
  68. extern void flush_tlb(void);
  69. extern void flush_tlb_all(void);
  70. extern void flush_tlb_mm(struct mm_struct *mm);
  71. extern void flush_tlb_range(struct mm_struct *mm, unsigned long start,
  72.     unsigned long end);
  73. extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long page);
  74. extern void __flush_tlb_page(unsigned long asid, unsigned long page);
  75. static inline void flush_tlb_pgtables(struct mm_struct *mm,
  76.       unsigned long start, unsigned long end)
  77. { /* Nothing to do */
  78. }
  79. #if defined(__SH4__)
  80. /*
  81.  * For SH-4, we have our own implementation for ptep_get_and_clear
  82.  */
  83. static inline pte_t ptep_get_and_clear(pte_t *ptep)
  84. {
  85. pte_t pte = *ptep;
  86. pte_clear(ptep);
  87. if (!pte_not_present(pte)) {
  88. struct page *page = pte_page(pte);
  89. if (VALID_PAGE(page)&&
  90.     (!page->mapping || !(page->mapping->i_mmap_shared)))
  91. __clear_bit(PG_mapped, &page->flags);
  92. }
  93. return pte;
  94. }
  95. #else
  96. static inline pte_t ptep_get_and_clear(pte_t *ptep)
  97. {
  98. pte_t pte = *ptep;
  99. pte_clear(ptep);
  100. return pte;
  101. }
  102. #endif
  103. /*
  104.  * Following functions are same as generic ones.
  105.  */
  106. static inline int ptep_test_and_clear_young(pte_t *ptep)
  107. {
  108. pte_t pte = *ptep;
  109. if (!pte_young(pte))
  110. return 0;
  111. set_pte(ptep, pte_mkold(pte));
  112. return 1;
  113. }
  114. static inline int ptep_test_and_clear_dirty(pte_t *ptep)
  115. {
  116. pte_t pte = *ptep;
  117. if (!pte_dirty(pte))
  118. return 0;
  119. set_pte(ptep, pte_mkclean(pte));
  120. return 1;
  121. }
  122. static inline void ptep_set_wrprotect(pte_t *ptep)
  123. {
  124. pte_t old_pte = *ptep;
  125. set_pte(ptep, pte_wrprotect(old_pte));
  126. }
  127. static inline void ptep_mkdirty(pte_t *ptep)
  128. {
  129. pte_t old_pte = *ptep;
  130. set_pte(ptep, pte_mkdirty(old_pte));
  131. }
  132. #endif /* __ASM_SH_PGALLOC_H */