flush.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * Based on arch/arm/mm/flush.c
  3. *
  4. * Copyright (C) 1995-2002 Russell King
  5. * Copyright (C) 2012 ARM Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <linux/export.h>
  20. #include <linux/mm.h>
  21. #include <linux/pagemap.h>
  22. #include <asm/cacheflush.h>
  23. #include <asm/cachetype.h>
  24. #include <asm/tlbflush.h>
  25. #include "mm.h"
  26. void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
  27. unsigned long end)
  28. {
  29. if (vma->vm_flags & VM_EXEC)
  30. __flush_icache_all();
  31. }
  32. static void flush_ptrace_access(struct vm_area_struct *vma, struct page *page,
  33. unsigned long uaddr, void *kaddr,
  34. unsigned long len)
  35. {
  36. if (vma->vm_flags & VM_EXEC) {
  37. unsigned long addr = (unsigned long)kaddr;
  38. if (icache_is_aliasing()) {
  39. __flush_dcache_area(kaddr, len);
  40. __flush_icache_all();
  41. } else {
  42. flush_icache_range(addr, addr + len);
  43. }
  44. }
  45. }
  46. /*
  47. * Copy user data from/to a page which is mapped into a different processes
  48. * address space. Really, we want to allow our "user space" model to handle
  49. * this.
  50. *
  51. * Note that this code needs to run on the current CPU.
  52. */
  53. void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
  54. unsigned long uaddr, void *dst, const void *src,
  55. unsigned long len)
  56. {
  57. #ifdef CONFIG_SMP
  58. preempt_disable();
  59. #endif
  60. memcpy(dst, src, len);
  61. flush_ptrace_access(vma, page, uaddr, dst, len);
  62. #ifdef CONFIG_SMP
  63. preempt_enable();
  64. #endif
  65. }
  66. void __flush_dcache_page(struct page *page)
  67. {
  68. __flush_dcache_area(page_address(page), PAGE_SIZE);
  69. }
  70. void __sync_icache_dcache(pte_t pte, unsigned long addr)
  71. {
  72. unsigned long pfn;
  73. struct page *page;
  74. pfn = pte_pfn(pte);
  75. if (!pfn_valid(pfn))
  76. return;
  77. page = pfn_to_page(pfn);
  78. if (!test_and_set_bit(PG_dcache_clean, &page->flags)) {
  79. __flush_dcache_page(page);
  80. __flush_icache_all();
  81. } else if (icache_is_aivivt()) {
  82. __flush_icache_all();
  83. }
  84. }
  85. /*
  86. * Ensure cache coherency between kernel mapping and userspace mapping of this
  87. * page.
  88. */
  89. void flush_dcache_page(struct page *page)
  90. {
  91. struct address_space *mapping;
  92. /*
  93. * The zero page is never written to, so never has any dirty cache
  94. * lines, and therefore never needs to be flushed.
  95. */
  96. if (page == ZERO_PAGE(0))
  97. return;
  98. mapping = page_mapping(page);
  99. if (mapping && mapping_mapped(mapping)) {
  100. __flush_dcache_page(page);
  101. __flush_icache_all();
  102. set_bit(PG_dcache_clean, &page->flags);
  103. } else {
  104. clear_bit(PG_dcache_clean, &page->flags);
  105. }
  106. }
  107. EXPORT_SYMBOL(flush_dcache_page);
  108. /*
  109. * Additional functions defined in assembly.
  110. */
  111. EXPORT_SYMBOL(flush_cache_all);
  112. EXPORT_SYMBOL(flush_icache_range);