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