1 // SPDX-License-Identifier: GPL-2.0-only
3 * Based on arch/arm/mm/flush.c
5 * Copyright (C) 1995-2002 Russell King
6 * Copyright (C) 2012 ARM Ltd.
9 #include <linux/export.h>
11 #include <linux/pagemap.h>
13 #include <asm/cacheflush.h>
14 #include <asm/cache.h>
15 #include <asm/tlbflush.h>
17 void sync_icache_aliases(void *kaddr
, unsigned long len
)
19 unsigned long addr
= (unsigned long)kaddr
;
21 if (icache_is_aliasing()) {
22 __clean_dcache_area_pou(kaddr
, len
);
26 * Don't issue kick_all_cpus_sync() after I-cache invalidation
29 __flush_icache_range(addr
, addr
+ len
);
33 static void flush_ptrace_access(struct vm_area_struct
*vma
, struct page
*page
,
34 unsigned long uaddr
, void *kaddr
,
37 if (vma
->vm_flags
& VM_EXEC
)
38 sync_icache_aliases(kaddr
, len
);
42 * Copy user data from/to a page which is mapped into a different processes
43 * address space. Really, we want to allow our "user space" model to handle
46 void copy_to_user_page(struct vm_area_struct
*vma
, struct page
*page
,
47 unsigned long uaddr
, void *dst
, const void *src
,
50 memcpy(dst
, src
, len
);
51 flush_ptrace_access(vma
, page
, uaddr
, dst
, len
);
54 void __sync_icache_dcache(pte_t pte
)
56 struct page
*page
= pte_page(pte
);
58 if (!test_and_set_bit(PG_dcache_clean
, &page
->flags
))
59 sync_icache_aliases(page_address(page
), page_size(page
));
61 EXPORT_SYMBOL_GPL(__sync_icache_dcache
);
64 * This function is called when a page has been modified by the kernel. Mark
65 * it as dirty for later flushing when mapped in user space (if executable,
66 * see __sync_icache_dcache).
68 void flush_dcache_page(struct page
*page
)
70 if (test_bit(PG_dcache_clean
, &page
->flags
))
71 clear_bit(PG_dcache_clean
, &page
->flags
);
73 EXPORT_SYMBOL(flush_dcache_page
);
76 * Additional functions defined in assembly.
78 EXPORT_SYMBOL(__flush_icache_range
);
80 #ifdef CONFIG_ARCH_HAS_PMEM_API
81 void arch_wb_cache_pmem(void *addr
, size_t size
)
83 /* Ensure order against any prior non-cacheable writes */
85 __clean_dcache_area_pop(addr
, size
);
87 EXPORT_SYMBOL_GPL(arch_wb_cache_pmem
);
89 void arch_invalidate_pmem(void *addr
, size_t size
)
91 __inval_dcache_area(addr
, size
);
93 EXPORT_SYMBOL_GPL(arch_invalidate_pmem
);