blob: c26b804015e80c46e1380d0a1af7f8f439c55405 [file] [log] [blame]
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +00001/*
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
20#include <linux/export.h>
21#include <linux/mm.h>
22#include <linux/pagemap.h>
23
24#include <asm/cacheflush.h>
25#include <asm/cachetype.h>
26#include <asm/tlbflush.h>
27
28#include "mm.h"
29
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000030void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
31 unsigned long end)
32{
33 if (vma->vm_flags & VM_EXEC)
34 __flush_icache_all();
35}
36
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000037static void flush_ptrace_access(struct vm_area_struct *vma, struct page *page,
38 unsigned long uaddr, void *kaddr,
39 unsigned long len)
40{
41 if (vma->vm_flags & VM_EXEC) {
42 unsigned long addr = (unsigned long)kaddr;
43 if (icache_is_aliasing()) {
44 __flush_dcache_area(kaddr, len);
45 __flush_icache_all();
46 } else {
47 flush_icache_range(addr, addr + len);
48 }
49 }
50}
51
52/*
53 * Copy user data from/to a page which is mapped into a different processes
54 * address space. Really, we want to allow our "user space" model to handle
55 * this.
56 *
57 * Note that this code needs to run on the current CPU.
58 */
59void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
60 unsigned long uaddr, void *dst, const void *src,
61 unsigned long len)
62{
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000063 preempt_disable();
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000064 memcpy(dst, src, len);
65 flush_ptrace_access(vma, page, uaddr, dst, len);
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000066 preempt_enable();
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000067}
68
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000069void __sync_icache_dcache(pte_t pte, unsigned long addr)
70{
Catalin Marinas7249b792013-05-01 16:34:22 +010071 struct page *page = pte_page(pte);
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000072
Catalin Marinas7249b792013-05-01 16:34:22 +010073 /* no flushing needed for anonymous pages */
74 if (!page_mapping(page))
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000075 return;
76
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000077 if (!test_and_set_bit(PG_dcache_clean, &page->flags)) {
Steve Capper923b8f52014-07-02 11:46:23 +010078 __flush_dcache_area(page_address(page),
79 PAGE_SIZE << compound_order(page));
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000080 __flush_icache_all();
81 } else if (icache_is_aivivt()) {
82 __flush_icache_all();
83 }
84}
85
86/*
Catalin Marinasb5b6c9e2013-05-01 12:23:05 +010087 * This function is called when a page has been modified by the kernel. Mark
88 * it as dirty for later flushing when mapped in user space (if executable,
89 * see __sync_icache_dcache).
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000090 */
91void flush_dcache_page(struct page *page)
92{
Catalin Marinasb5b6c9e2013-05-01 12:23:05 +010093 if (test_bit(PG_dcache_clean, &page->flags))
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000094 clear_bit(PG_dcache_clean, &page->flags);
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000095}
96EXPORT_SYMBOL(flush_dcache_page);
97
98/*
99 * Additional functions defined in assembly.
100 */
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +0000101EXPORT_SYMBOL(flush_icache_range);
Steve Capper29e56942014-10-09 15:29:25 -0700102
103#ifdef CONFIG_TRANSPARENT_HUGEPAGE
104#ifdef CONFIG_HAVE_RCU_TABLE_FREE
105void pmdp_splitting_flush(struct vm_area_struct *vma, unsigned long address,
106 pmd_t *pmdp)
107{
108 pmd_t pmd = pmd_mksplitting(*pmdp);
109
110 VM_BUG_ON(address & ~PMD_MASK);
111 set_pmd_at(vma->vm_mm, address, pmdp, pmd);
112
113 /* dummy IPI to serialise against fast_gup */
114 kick_all_cpus_sync();
115}
116#endif /* CONFIG_HAVE_RCU_TABLE_FREE */
117#endif /* CONFIG_TRANSPARENT_HUGEPAGE */