Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 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 | |
| 20 | #include <linux/export.h> |
| 21 | #include <linux/mm.h> |
| 22 | #include <linux/pagemap.h> |
| 23 | |
| 24 | #include <asm/cacheflush.h> |
Will Deacon | 02f7760 | 2017-03-10 20:32:23 +0000 | [diff] [blame] | 25 | #include <asm/cache.h> |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 26 | #include <asm/tlbflush.h> |
| 27 | |
Pratyush Anand | 9842cea | 2016-11-02 14:40:46 +0530 | [diff] [blame] | 28 | void sync_icache_aliases(void *kaddr, unsigned long len) |
Ashok Kumar | 0a28714 | 2015-12-17 01:38:32 -0800 | [diff] [blame] | 29 | { |
| 30 | unsigned long addr = (unsigned long)kaddr; |
| 31 | |
| 32 | if (icache_is_aliasing()) { |
| 33 | __clean_dcache_area_pou(kaddr, len); |
| 34 | __flush_icache_all(); |
| 35 | } else { |
| 36 | flush_icache_range(addr, addr + len); |
| 37 | } |
| 38 | } |
| 39 | |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 40 | static void flush_ptrace_access(struct vm_area_struct *vma, struct page *page, |
| 41 | unsigned long uaddr, void *kaddr, |
| 42 | unsigned long len) |
| 43 | { |
Ashok Kumar | 0a28714 | 2015-12-17 01:38:32 -0800 | [diff] [blame] | 44 | if (vma->vm_flags & VM_EXEC) |
| 45 | sync_icache_aliases(kaddr, len); |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 46 | } |
| 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. |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 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 | { |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 57 | memcpy(dst, src, len); |
| 58 | flush_ptrace_access(vma, page, uaddr, dst, len); |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 59 | } |
| 60 | |
Shaokun Zhang | 907e21c | 2018-04-17 20:03:09 +0800 | [diff] [blame] | 61 | void __sync_icache_dcache(pte_t pte) |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 62 | { |
Catalin Marinas | 7249b79 | 2013-05-01 16:34:22 +0100 | [diff] [blame] | 63 | struct page *page = pte_page(pte); |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 64 | |
Ashok Kumar | 0a28714 | 2015-12-17 01:38:32 -0800 | [diff] [blame] | 65 | if (!test_and_set_bit(PG_dcache_clean, &page->flags)) |
| 66 | sync_icache_aliases(page_address(page), |
| 67 | PAGE_SIZE << compound_order(page)); |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | /* |
Catalin Marinas | b5b6c9e | 2013-05-01 12:23:05 +0100 | [diff] [blame] | 71 | * This function is called when a page has been modified by the kernel. Mark |
| 72 | * it as dirty for later flushing when mapped in user space (if executable, |
| 73 | * see __sync_icache_dcache). |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 74 | */ |
| 75 | void flush_dcache_page(struct page *page) |
| 76 | { |
Catalin Marinas | b5b6c9e | 2013-05-01 12:23:05 +0100 | [diff] [blame] | 77 | if (test_bit(PG_dcache_clean, &page->flags)) |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 78 | clear_bit(PG_dcache_clean, &page->flags); |
Catalin Marinas | f1a0c4a | 2012-03-05 11:49:28 +0000 | [diff] [blame] | 79 | } |
| 80 | EXPORT_SYMBOL(flush_dcache_page); |
| 81 | |
| 82 | /* |
| 83 | * Additional functions defined in assembly. |
| 84 | */ |
Will Deacon | bedbeec | 2018-07-06 16:21:17 +0100 | [diff] [blame^] | 85 | EXPORT_SYMBOL(__flush_icache_range); |
Robin Murphy | d50e071 | 2017-07-25 11:55:42 +0100 | [diff] [blame] | 86 | |
| 87 | #ifdef CONFIG_ARCH_HAS_PMEM_API |
Arnd Bergmann | caf5ef7 | 2017-08-10 16:52:31 +0200 | [diff] [blame] | 88 | void arch_wb_cache_pmem(void *addr, size_t size) |
Robin Murphy | d50e071 | 2017-07-25 11:55:42 +0100 | [diff] [blame] | 89 | { |
| 90 | /* Ensure order against any prior non-cacheable writes */ |
| 91 | dmb(osh); |
| 92 | __clean_dcache_area_pop(addr, size); |
| 93 | } |
| 94 | EXPORT_SYMBOL_GPL(arch_wb_cache_pmem); |
| 95 | |
Arnd Bergmann | caf5ef7 | 2017-08-10 16:52:31 +0200 | [diff] [blame] | 96 | void arch_invalidate_pmem(void *addr, size_t size) |
Robin Murphy | d50e071 | 2017-07-25 11:55:42 +0100 | [diff] [blame] | 97 | { |
| 98 | __inval_dcache_area(addr, size); |
| 99 | } |
| 100 | EXPORT_SYMBOL_GPL(arch_invalidate_pmem); |
| 101 | #endif |