Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd. |
| 3 | |
| 4 | #include <linux/spinlock.h> |
| 5 | #include <linux/smp.h> |
Guo Ren | 761b4f6 | 2020-01-22 11:15:14 +0800 | [diff] [blame] | 6 | #include <linux/mm.h> |
Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 7 | #include <asm/cache.h> |
| 8 | #include <asm/barrier.h> |
| 9 | |
Guo Ren | dd7c983 | 2020-03-31 22:15:42 +0800 | [diff] [blame] | 10 | /* for L1-cache */ |
Guo Ren | 761b4f6 | 2020-01-22 11:15:14 +0800 | [diff] [blame] | 11 | #define INS_CACHE (1 << 0) |
Guo Ren | dd7c983 | 2020-03-31 22:15:42 +0800 | [diff] [blame] | 12 | #define DATA_CACHE (1 << 1) |
Guo Ren | 761b4f6 | 2020-01-22 11:15:14 +0800 | [diff] [blame] | 13 | #define CACHE_INV (1 << 4) |
Guo Ren | dd7c983 | 2020-03-31 22:15:42 +0800 | [diff] [blame] | 14 | #define CACHE_CLR (1 << 5) |
| 15 | #define CACHE_OMS (1 << 6) |
Guo Ren | 761b4f6 | 2020-01-22 11:15:14 +0800 | [diff] [blame] | 16 | |
| 17 | void local_icache_inv_all(void *priv) |
Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 18 | { |
Guo Ren | 761b4f6 | 2020-01-22 11:15:14 +0800 | [diff] [blame] | 19 | mtcr("cr17", INS_CACHE|CACHE_INV); |
Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 20 | sync_is(); |
| 21 | } |
| 22 | |
Guo Ren | 761b4f6 | 2020-01-22 11:15:14 +0800 | [diff] [blame] | 23 | #ifdef CONFIG_CPU_HAS_ICACHE_INS |
Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 24 | void icache_inv_range(unsigned long start, unsigned long end) |
| 25 | { |
| 26 | unsigned long i = start & ~(L1_CACHE_BYTES - 1); |
| 27 | |
| 28 | for (; i < end; i += L1_CACHE_BYTES) |
| 29 | asm volatile("icache.iva %0\n"::"r"(i):"memory"); |
| 30 | sync_is(); |
| 31 | } |
Guo Ren | 761b4f6 | 2020-01-22 11:15:14 +0800 | [diff] [blame] | 32 | #else |
Guo Ren | dd7c983 | 2020-03-31 22:15:42 +0800 | [diff] [blame] | 33 | struct cache_range { |
| 34 | unsigned long start; |
| 35 | unsigned long end; |
| 36 | }; |
| 37 | |
| 38 | static DEFINE_SPINLOCK(cache_lock); |
| 39 | |
| 40 | static inline void cache_op_line(unsigned long i, unsigned int val) |
| 41 | { |
| 42 | mtcr("cr22", i); |
| 43 | mtcr("cr17", val); |
| 44 | } |
| 45 | |
| 46 | void local_icache_inv_range(void *priv) |
| 47 | { |
| 48 | struct cache_range *param = priv; |
| 49 | unsigned long i = param->start & ~(L1_CACHE_BYTES - 1); |
| 50 | unsigned long flags; |
| 51 | |
| 52 | spin_lock_irqsave(&cache_lock, flags); |
| 53 | |
| 54 | for (; i < param->end; i += L1_CACHE_BYTES) |
| 55 | cache_op_line(i, INS_CACHE | CACHE_INV | CACHE_OMS); |
| 56 | |
| 57 | spin_unlock_irqrestore(&cache_lock, flags); |
| 58 | |
| 59 | sync_is(); |
| 60 | } |
| 61 | |
Guo Ren | 761b4f6 | 2020-01-22 11:15:14 +0800 | [diff] [blame] | 62 | void icache_inv_range(unsigned long start, unsigned long end) |
Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 63 | { |
Guo Ren | dd7c983 | 2020-03-31 22:15:42 +0800 | [diff] [blame] | 64 | struct cache_range param = { start, end }; |
| 65 | |
| 66 | if (irqs_disabled()) |
| 67 | local_icache_inv_range(¶m); |
| 68 | else |
| 69 | on_each_cpu(local_icache_inv_range, ¶m, 1); |
Guo Ren | 761b4f6 | 2020-01-22 11:15:14 +0800 | [diff] [blame] | 70 | } |
| 71 | #endif |
| 72 | |
| 73 | inline void dcache_wb_line(unsigned long start) |
| 74 | { |
| 75 | asm volatile("dcache.cval1 %0\n"::"r"(start):"memory"); |
Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 76 | sync_is(); |
| 77 | } |
| 78 | |
| 79 | void dcache_wb_range(unsigned long start, unsigned long end) |
| 80 | { |
| 81 | unsigned long i = start & ~(L1_CACHE_BYTES - 1); |
| 82 | |
| 83 | for (; i < end; i += L1_CACHE_BYTES) |
| 84 | asm volatile("dcache.cval1 %0\n"::"r"(i):"memory"); |
| 85 | sync_is(); |
| 86 | } |
| 87 | |
Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 88 | void cache_wbinv_range(unsigned long start, unsigned long end) |
| 89 | { |
Guo Ren | 9025fd4 | 2020-02-02 10:58:38 +0800 | [diff] [blame] | 90 | dcache_wb_range(start, end); |
Guo Ren | 761b4f6 | 2020-01-22 11:15:14 +0800 | [diff] [blame] | 91 | icache_inv_range(start, end); |
Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 92 | } |
| 93 | EXPORT_SYMBOL(cache_wbinv_range); |
| 94 | |
| 95 | void dma_wbinv_range(unsigned long start, unsigned long end) |
| 96 | { |
| 97 | unsigned long i = start & ~(L1_CACHE_BYTES - 1); |
| 98 | |
| 99 | for (; i < end; i += L1_CACHE_BYTES) |
| 100 | asm volatile("dcache.civa %0\n"::"r"(i):"memory"); |
| 101 | sync_is(); |
| 102 | } |
| 103 | |
Guo Ren | ae76f63 | 2019-07-30 17:16:28 +0800 | [diff] [blame] | 104 | void dma_inv_range(unsigned long start, unsigned long end) |
| 105 | { |
| 106 | unsigned long i = start & ~(L1_CACHE_BYTES - 1); |
| 107 | |
| 108 | for (; i < end; i += L1_CACHE_BYTES) |
| 109 | asm volatile("dcache.iva %0\n"::"r"(i):"memory"); |
| 110 | sync_is(); |
| 111 | } |
| 112 | |
Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 113 | void dma_wb_range(unsigned long start, unsigned long end) |
| 114 | { |
| 115 | unsigned long i = start & ~(L1_CACHE_BYTES - 1); |
| 116 | |
| 117 | for (; i < end; i += L1_CACHE_BYTES) |
Guo Ren | ae76f63 | 2019-07-30 17:16:28 +0800 | [diff] [blame] | 118 | asm volatile("dcache.cva %0\n"::"r"(i):"memory"); |
Guo Ren | 00a9730 | 2018-09-05 14:25:10 +0800 | [diff] [blame] | 119 | sync_is(); |
| 120 | } |