flush.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
  26. unsigned long end)
  27. {
  28. if (vma->vm_flags & VM_EXEC)
  29. __flush_icache_all();
  30. }
  31. static void sync_icache_aliases(void *kaddr, unsigned long len)
  32. {
  33. unsigned long addr = (unsigned long)kaddr;
  34. if (icache_is_aliasing()) {
  35. __clean_dcache_area_pou(kaddr, len);
  36. __flush_icache_all();
  37. } else {
  38. flush_icache_range(addr, addr + len);
  39. }
  40. }
  41. static void flush_ptrace_access(struct vm_area_struct *vma, struct page *page,
  42. unsigned long uaddr, void *kaddr,
  43. unsigned long len)
  44. {
  45. if (vma->vm_flags & VM_EXEC)
  46. sync_icache_aliases(kaddr, len);
  47. }
  48. /*
  49. * Copy user data from/to a page which is mapped into a different processes
  50. * address space. Really, we want to allow our "user space" model to handle
  51. * this.
  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. memcpy(dst, src, len);
  58. flush_ptrace_access(vma, page, uaddr, dst, len);
  59. }
  60. void __sync_icache_dcache(pte_t pte, unsigned long addr)
  61. {
  62. struct page *page = pte_page(pte);
  63. if (!test_and_set_bit(PG_dcache_clean, &page->flags))
  64. sync_icache_aliases(page_address(page),
  65. PAGE_SIZE << compound_order(page));
  66. else if (icache_is_aivivt())
  67. __flush_icache_all();
  68. }
  69. /*
  70. * This function is called when a page has been modified by the kernel. Mark
  71. * it as dirty for later flushing when mapped in user space (if executable,
  72. * see __sync_icache_dcache).
  73. */
  74. void flush_dcache_page(struct page *page)
  75. {
  76. if (test_bit(PG_dcache_clean, &page->flags))
  77. clear_bit(PG_dcache_clean, &page->flags);
  78. }
  79. EXPORT_SYMBOL(flush_dcache_page);
  80. /*
  81. * Additional functions defined in assembly.
  82. */
  83. EXPORT_SYMBOL(flush_icache_range);