Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003 |
| 4 | * Wolfgang Denk, DENX Software Engineering, <wd@denx.de> |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 9edefc2 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 9 | #include <asm/cache.h> |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 10 | #include <asm/cacheops.h> |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 11 | #include <asm/cm.h> |
Paul Burton | 219c2db | 2017-11-21 11:18:37 -0800 | [diff] [blame] | 12 | #include <asm/io.h> |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 13 | #include <asm/mipsregs.h> |
Paul Burton | d8b3269 | 2017-11-21 11:18:38 -0800 | [diff] [blame] | 14 | #include <asm/system.h> |
Simon Glass | eb41d8a | 2020-05-10 11:40:08 -0600 | [diff] [blame] | 15 | #include <linux/bug.h> |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 16 | |
Paul Burton | 8cb4817 | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 17 | DECLARE_GLOBAL_DATA_PTR; |
Paul Burton | 3722862 | 2016-05-27 14:28:05 +0100 | [diff] [blame] | 18 | |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 19 | static void probe_l2(void) |
| 20 | { |
| 21 | #ifdef CONFIG_MIPS_L2_CACHE |
| 22 | unsigned long conf2, sl; |
| 23 | bool l2c = false; |
| 24 | |
| 25 | if (!(read_c0_config1() & MIPS_CONF_M)) |
| 26 | return; |
| 27 | |
| 28 | conf2 = read_c0_config2(); |
| 29 | |
| 30 | if (__mips_isa_rev >= 6) { |
| 31 | l2c = conf2 & MIPS_CONF_M; |
| 32 | if (l2c) |
| 33 | l2c = read_c0_config3() & MIPS_CONF_M; |
| 34 | if (l2c) |
| 35 | l2c = read_c0_config4() & MIPS_CONF_M; |
| 36 | if (l2c) |
| 37 | l2c = read_c0_config5() & MIPS_CONF5_L2C; |
| 38 | } |
| 39 | |
| 40 | if (l2c && config_enabled(CONFIG_MIPS_CM)) { |
| 41 | gd->arch.l2_line_size = mips_cm_l2_line_size(); |
| 42 | } else if (l2c) { |
| 43 | /* We don't know how to retrieve L2 config on this system */ |
| 44 | BUG(); |
| 45 | } else { |
| 46 | sl = (conf2 & MIPS_CONF2_SL) >> MIPS_CONF2_SL_SHF; |
| 47 | gd->arch.l2_line_size = sl ? (2 << sl) : 0; |
| 48 | } |
| 49 | #endif |
| 50 | } |
| 51 | |
Paul Burton | 8cb4817 | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 52 | void mips_cache_probe(void) |
| 53 | { |
| 54 | #ifdef CONFIG_SYS_CACHE_SIZE_AUTO |
| 55 | unsigned long conf1, il, dl; |
Paul Burton | 3722862 | 2016-05-27 14:28:05 +0100 | [diff] [blame] | 56 | |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 57 | conf1 = read_c0_config1(); |
Paul Burton | 8cb4817 | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 58 | |
Daniel Schwierzeck | a3ab2ae | 2016-01-12 21:48:26 +0100 | [diff] [blame] | 59 | il = (conf1 & MIPS_CONF1_IL) >> MIPS_CONF1_IL_SHF; |
Paul Burton | 8cb4817 | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 60 | dl = (conf1 & MIPS_CONF1_DL) >> MIPS_CONF1_DL_SHF; |
| 61 | |
| 62 | gd->arch.l1i_line_size = il ? (2 << il) : 0; |
| 63 | gd->arch.l1d_line_size = dl ? (2 << dl) : 0; |
| 64 | #endif |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 65 | probe_l2(); |
Paul Burton | 8cb4817 | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | static inline unsigned long icache_line_size(void) |
| 69 | { |
| 70 | #ifdef CONFIG_SYS_CACHE_SIZE_AUTO |
| 71 | return gd->arch.l1i_line_size; |
| 72 | #else |
| 73 | return CONFIG_SYS_ICACHE_LINE_SIZE; |
| 74 | #endif |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | static inline unsigned long dcache_line_size(void) |
| 78 | { |
Paul Burton | 8cb4817 | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 79 | #ifdef CONFIG_SYS_CACHE_SIZE_AUTO |
| 80 | return gd->arch.l1d_line_size; |
| 81 | #else |
| 82 | return CONFIG_SYS_DCACHE_LINE_SIZE; |
| 83 | #endif |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 86 | static inline unsigned long scache_line_size(void) |
| 87 | { |
| 88 | #ifdef CONFIG_MIPS_L2_CACHE |
| 89 | return gd->arch.l2_line_size; |
| 90 | #else |
Ramon Fried | 22247c6 | 2019-06-10 21:05:26 +0300 | [diff] [blame] | 91 | return CONFIG_SYS_SCACHE_LINE_SIZE; |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 92 | #endif |
| 93 | } |
| 94 | |
Paul Burton | fb64cda | 2016-05-27 14:28:06 +0100 | [diff] [blame] | 95 | #define cache_loop(start, end, lsize, ops...) do { \ |
| 96 | const void *addr = (const void *)(start & ~(lsize - 1)); \ |
| 97 | const void *aend = (const void *)((end - 1) & ~(lsize - 1)); \ |
| 98 | const unsigned int cache_ops[] = { ops }; \ |
| 99 | unsigned int i; \ |
| 100 | \ |
Paul Burton | cc4f364 | 2017-11-21 11:18:39 -0800 | [diff] [blame] | 101 | if (!lsize) \ |
| 102 | break; \ |
| 103 | \ |
Paul Burton | fb64cda | 2016-05-27 14:28:06 +0100 | [diff] [blame] | 104 | for (; addr <= aend; addr += lsize) { \ |
| 105 | for (i = 0; i < ARRAY_SIZE(cache_ops); i++) \ |
| 106 | mips_cache(cache_ops[i], addr); \ |
| 107 | } \ |
| 108 | } while (0) |
| 109 | |
Stefan Roese | 1d4ba15 | 2020-05-14 11:59:04 +0200 | [diff] [blame] | 110 | void __weak flush_cache(ulong start_addr, ulong size) |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 111 | { |
| 112 | unsigned long ilsize = icache_line_size(); |
| 113 | unsigned long dlsize = dcache_line_size(); |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 114 | unsigned long slsize = scache_line_size(); |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 115 | |
| 116 | /* aend will be miscalculated when size is zero, so we return here */ |
| 117 | if (size == 0) |
| 118 | return; |
| 119 | |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 120 | if ((ilsize == dlsize) && !slsize) { |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 121 | /* flush I-cache & D-cache simultaneously */ |
Paul Burton | fb64cda | 2016-05-27 14:28:06 +0100 | [diff] [blame] | 122 | cache_loop(start_addr, start_addr + size, ilsize, |
| 123 | HIT_WRITEBACK_INV_D, HIT_INVALIDATE_I); |
Paul Burton | 219c2db | 2017-11-21 11:18:37 -0800 | [diff] [blame] | 124 | goto ops_done; |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | /* flush D-cache */ |
Paul Burton | fb64cda | 2016-05-27 14:28:06 +0100 | [diff] [blame] | 128 | cache_loop(start_addr, start_addr + size, dlsize, HIT_WRITEBACK_INV_D); |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 129 | |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 130 | /* flush L2 cache */ |
Paul Burton | cc4f364 | 2017-11-21 11:18:39 -0800 | [diff] [blame] | 131 | cache_loop(start_addr, start_addr + size, slsize, HIT_WRITEBACK_INV_SD); |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 132 | |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 133 | /* flush I-cache */ |
Paul Burton | fb64cda | 2016-05-27 14:28:06 +0100 | [diff] [blame] | 134 | cache_loop(start_addr, start_addr + size, ilsize, HIT_INVALIDATE_I); |
Paul Burton | 219c2db | 2017-11-21 11:18:37 -0800 | [diff] [blame] | 135 | |
| 136 | ops_done: |
| 137 | /* ensure cache ops complete before any further memory accesses */ |
| 138 | sync(); |
Paul Burton | d8b3269 | 2017-11-21 11:18:38 -0800 | [diff] [blame] | 139 | |
| 140 | /* ensure the pipeline doesn't contain now-invalid instructions */ |
| 141 | instruction_hazard_barrier(); |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 142 | } |
| 143 | |
Alex Nemirovsky | ebdc278 | 2019-12-23 20:19:20 +0000 | [diff] [blame] | 144 | void __weak flush_dcache_range(ulong start_addr, ulong stop) |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 145 | { |
| 146 | unsigned long lsize = dcache_line_size(); |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 147 | unsigned long slsize = scache_line_size(); |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 148 | |
Marek Vasut | fbb0de0 | 2016-01-27 03:13:59 +0100 | [diff] [blame] | 149 | /* aend will be miscalculated when size is zero, so we return here */ |
| 150 | if (start_addr == stop) |
| 151 | return; |
| 152 | |
Paul Burton | fb64cda | 2016-05-27 14:28:06 +0100 | [diff] [blame] | 153 | cache_loop(start_addr, stop, lsize, HIT_WRITEBACK_INV_D); |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 154 | |
| 155 | /* flush L2 cache */ |
Paul Burton | cc4f364 | 2017-11-21 11:18:39 -0800 | [diff] [blame] | 156 | cache_loop(start_addr, stop, slsize, HIT_WRITEBACK_INV_SD); |
Paul Burton | 219c2db | 2017-11-21 11:18:37 -0800 | [diff] [blame] | 157 | |
| 158 | /* ensure cache ops complete before any further memory accesses */ |
| 159 | sync(); |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Stefan Roese | 60a0559 | 2020-06-30 12:33:19 +0200 | [diff] [blame] | 162 | void __weak invalidate_dcache_range(ulong start_addr, ulong stop) |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 163 | { |
| 164 | unsigned long lsize = dcache_line_size(); |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 165 | unsigned long slsize = scache_line_size(); |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 166 | |
Marek Vasut | fbb0de0 | 2016-01-27 03:13:59 +0100 | [diff] [blame] | 167 | /* aend will be miscalculated when size is zero, so we return here */ |
| 168 | if (start_addr == stop) |
| 169 | return; |
| 170 | |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 171 | /* invalidate L2 cache */ |
Paul Burton | cc4f364 | 2017-11-21 11:18:39 -0800 | [diff] [blame] | 172 | cache_loop(start_addr, stop, slsize, HIT_INVALIDATE_SD); |
Paul Burton | 4baa0ab | 2016-09-21 11:18:54 +0100 | [diff] [blame] | 173 | |
Paul Burton | a95800e | 2016-06-09 13:09:51 +0100 | [diff] [blame] | 174 | cache_loop(start_addr, stop, lsize, HIT_INVALIDATE_D); |
Paul Burton | 219c2db | 2017-11-21 11:18:37 -0800 | [diff] [blame] | 175 | |
| 176 | /* ensure cache ops complete before any further memory accesses */ |
| 177 | sync(); |
Paul Burton | 30374f9 | 2015-01-29 01:27:57 +0000 | [diff] [blame] | 178 | } |
Daniel Schwierzeck | 2f85c2b | 2018-09-07 19:02:03 +0200 | [diff] [blame] | 179 | |
| 180 | int dcache_status(void) |
| 181 | { |
| 182 | unsigned int cca = read_c0_config() & CONF_CM_CMASK; |
| 183 | return cca != CONF_CM_UNCACHED; |
| 184 | } |
| 185 | |
| 186 | void dcache_enable(void) |
| 187 | { |
| 188 | puts("Not supported!\n"); |
| 189 | } |
| 190 | |
| 191 | void dcache_disable(void) |
| 192 | { |
| 193 | /* change CCA to uncached */ |
| 194 | change_c0_config(CONF_CM_CMASK, CONF_CM_UNCACHED); |
| 195 | |
| 196 | /* ensure the pipeline doesn't contain now-invalid instructions */ |
| 197 | instruction_hazard_barrier(); |
| 198 | } |