flush.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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/cache.h>
  24. #include <asm/tlbflush.h>
  25. void sync_icache_aliases(void *kaddr, unsigned long len)
  26. {
  27. unsigned long addr = (unsigned long)kaddr;
  28. if (icache_is_aliasing()) {
  29. __clean_dcache_area_pou(kaddr, len);
  30. __flush_icache_all();
  31. } else {
  32. flush_icache_range(addr, addr + len);
  33. }
  34. }
  35. static void flush_ptrace_access(struct vm_area_struct *vma, struct page *page,
  36. unsigned long uaddr, void *kaddr,
  37. unsigned long len)
  38. {
  39. if (vma->vm_flags & VM_EXEC)
  40. sync_icache_aliases(kaddr, len);
  41. }
  42. /*
  43. * Copy user data from/to a page which is mapped into a different processes
  44. * address space. Really, we want to allow our "user space" model to handle
  45. * this.
  46. */
  47. void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
  48. unsigned long uaddr, void *dst, const void *src,
  49. unsigned long len)
  50. {
  51. memcpy(dst, src, len);
  52. flush_ptrace_access(vma, page, uaddr, dst, len);
  53. }
  54. void __sync_icache_dcache(pte_t pte)
  55. {
  56. struct page *page = pte_page(pte);
  57. if (!test_and_set_bit(PG_dcache_clean, &page->flags))
  58. sync_icache_aliases(page_address(page),
  59. PAGE_SIZE << compound_order(page));
  60. }
  61. EXPORT_SYMBOL_GPL(__sync_icache_dcache);
  62. /*
  63. * This function is called when a page has been modified by the kernel. Mark
  64. * it as dirty for later flushing when mapped in user space (if executable,
  65. * see __sync_icache_dcache).
  66. */
  67. void flush_dcache_page(struct page *page)
  68. {
  69. if (test_bit(PG_dcache_clean, &page->flags))
  70. clear_bit(PG_dcache_clean, &page->flags);
  71. }
  72. EXPORT_SYMBOL(flush_dcache_page);
  73. /*
  74. * Additional functions defined in assembly.
  75. */
  76. EXPORT_SYMBOL(__flush_icache_range);
  77. #ifdef CONFIG_ARCH_HAS_PMEM_API
  78. void arch_wb_cache_pmem(void *addr, size_t size)
  79. {
  80. /* Ensure order against any prior non-cacheable writes */
  81. dmb(osh);
  82. __clean_dcache_area_pop(addr, size);
  83. }
  84. EXPORT_SYMBOL_GPL(arch_wb_cache_pmem);
  85. void arch_invalidate_pmem(void *addr, size_t size)
  86. {
  87. __inval_dcache_area(addr, size);
  88. }
  89. EXPORT_SYMBOL_GPL(arch_invalidate_pmem);
  90. #endif