Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <config.h> |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 8 | #include <common.h> |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 9 | #include <linux/compiler.h> |
| 10 | #include <linux/kernel.h> |
Alexey Brodkin | 982f6bf | 2017-06-26 11:46:47 +0300 | [diff] [blame] | 11 | #include <linux/log2.h> |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 12 | #include <asm/arcregs.h> |
Alexey Brodkin | 6b95cca | 2015-02-03 13:58:13 +0300 | [diff] [blame] | 13 | #include <asm/cache.h> |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 14 | |
| 15 | /* Bit values in IC_CTRL */ |
| 16 | #define IC_CTRL_CACHE_DISABLE (1 << 0) |
| 17 | |
| 18 | /* Bit values in DC_CTRL */ |
| 19 | #define DC_CTRL_CACHE_DISABLE (1 << 0) |
| 20 | #define DC_CTRL_INV_MODE_FLUSH (1 << 6) |
| 21 | #define DC_CTRL_FLUSH_STATUS (1 << 8) |
Igor Guryanov | bd889f9 | 2014-12-24 16:07:07 +0300 | [diff] [blame] | 22 | #define CACHE_VER_NUM_MASK 0xF |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 23 | #define SLC_CTRL_SB (1 << 2) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 24 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 25 | #define OP_INV 0x1 |
| 26 | #define OP_FLUSH 0x2 |
| 27 | #define OP_INV_IC 0x3 |
| 28 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 29 | /* |
| 30 | * By default that variable will fall into .bss section. |
| 31 | * But .bss section is not relocated and so it will be initilized before |
| 32 | * relocation but will be used after being zeroed. |
| 33 | */ |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 34 | int l1_line_sz __section(".data"); |
| 35 | int dcache_exists __section(".data"); |
| 36 | int icache_exists __section(".data"); |
| 37 | |
| 38 | #define CACHE_LINE_MASK (~(l1_line_sz - 1)) |
| 39 | |
| 40 | #ifdef CONFIG_ISA_ARCV2 |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 41 | int slc_line_sz __section(".data"); |
| 42 | int slc_exists __section(".data"); |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 43 | int ioc_exists __section(".data"); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 44 | |
| 45 | static unsigned int __before_slc_op(const int op) |
| 46 | { |
| 47 | unsigned int reg = reg; |
| 48 | |
| 49 | if (op == OP_INV) { |
| 50 | /* |
| 51 | * IM is set by default and implies Flush-n-inv |
| 52 | * Clear it here for vanilla inv |
| 53 | */ |
| 54 | reg = read_aux_reg(ARC_AUX_SLC_CTRL); |
| 55 | write_aux_reg(ARC_AUX_SLC_CTRL, reg & ~DC_CTRL_INV_MODE_FLUSH); |
| 56 | } |
| 57 | |
| 58 | return reg; |
| 59 | } |
| 60 | |
| 61 | static void __after_slc_op(const int op, unsigned int reg) |
| 62 | { |
Alexey Brodkin | 7ebca7e | 2017-04-05 17:50:09 +0300 | [diff] [blame] | 63 | if (op & OP_FLUSH) { /* flush / flush-n-inv both wait */ |
| 64 | /* |
| 65 | * Make sure "busy" bit reports correct status, |
| 66 | * see STAR 9001165532 |
| 67 | */ |
| 68 | read_aux_reg(ARC_AUX_SLC_CTRL); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 69 | while (read_aux_reg(ARC_AUX_SLC_CTRL) & |
| 70 | DC_CTRL_FLUSH_STATUS) |
| 71 | ; |
Alexey Brodkin | 7ebca7e | 2017-04-05 17:50:09 +0300 | [diff] [blame] | 72 | } |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 73 | |
| 74 | /* Switch back to default Invalidate mode */ |
| 75 | if (op == OP_INV) |
| 76 | write_aux_reg(ARC_AUX_SLC_CTRL, reg | DC_CTRL_INV_MODE_FLUSH); |
| 77 | } |
| 78 | |
| 79 | static inline void __slc_line_loop(unsigned long paddr, unsigned long sz, |
| 80 | const int op) |
| 81 | { |
| 82 | unsigned int aux_cmd; |
| 83 | int num_lines; |
| 84 | |
| 85 | #define SLC_LINE_MASK (~(slc_line_sz - 1)) |
| 86 | |
| 87 | aux_cmd = op & OP_INV ? ARC_AUX_SLC_IVDL : ARC_AUX_SLC_FLDL; |
| 88 | |
| 89 | sz += paddr & ~SLC_LINE_MASK; |
| 90 | paddr &= SLC_LINE_MASK; |
| 91 | |
| 92 | num_lines = DIV_ROUND_UP(sz, slc_line_sz); |
| 93 | |
| 94 | while (num_lines-- > 0) { |
| 95 | write_aux_reg(aux_cmd, paddr); |
| 96 | paddr += slc_line_sz; |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | static inline void __slc_entire_op(const int cacheop) |
| 101 | { |
| 102 | int aux; |
| 103 | unsigned int ctrl_reg = __before_slc_op(cacheop); |
| 104 | |
| 105 | if (cacheop & OP_INV) /* Inv or flush-n-inv use same cmd reg */ |
| 106 | aux = ARC_AUX_SLC_INVALIDATE; |
| 107 | else |
| 108 | aux = ARC_AUX_SLC_FLUSH; |
| 109 | |
| 110 | write_aux_reg(aux, 0x1); |
| 111 | |
| 112 | __after_slc_op(cacheop, ctrl_reg); |
| 113 | } |
| 114 | |
| 115 | static inline void __slc_line_op(unsigned long paddr, unsigned long sz, |
| 116 | const int cacheop) |
| 117 | { |
| 118 | unsigned int ctrl_reg = __before_slc_op(cacheop); |
| 119 | __slc_line_loop(paddr, sz, cacheop); |
| 120 | __after_slc_op(cacheop, ctrl_reg); |
| 121 | } |
| 122 | #else |
| 123 | #define __slc_entire_op(cacheop) |
| 124 | #define __slc_line_op(paddr, sz, cacheop) |
| 125 | #endif |
| 126 | |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 127 | #ifdef CONFIG_ISA_ARCV2 |
| 128 | static void read_decode_cache_bcr_arcv2(void) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 129 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 130 | union { |
| 131 | struct { |
| 132 | #ifdef CONFIG_CPU_BIG_ENDIAN |
| 133 | unsigned int pad:24, way:2, lsz:2, sz:4; |
| 134 | #else |
| 135 | unsigned int sz:4, lsz:2, way:2, pad:24; |
| 136 | #endif |
| 137 | } fields; |
| 138 | unsigned int word; |
| 139 | } slc_cfg; |
| 140 | |
| 141 | union { |
| 142 | struct { |
| 143 | #ifdef CONFIG_CPU_BIG_ENDIAN |
| 144 | unsigned int pad:24, ver:8; |
| 145 | #else |
| 146 | unsigned int ver:8, pad:24; |
| 147 | #endif |
| 148 | } fields; |
| 149 | unsigned int word; |
| 150 | } sbcr; |
| 151 | |
| 152 | sbcr.word = read_aux_reg(ARC_BCR_SLC); |
| 153 | if (sbcr.fields.ver) { |
| 154 | slc_cfg.word = read_aux_reg(ARC_AUX_SLC_CONFIG); |
| 155 | slc_exists = 1; |
| 156 | slc_line_sz = (slc_cfg.fields.lsz == 0) ? 128 : 64; |
| 157 | } |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 158 | |
| 159 | union { |
| 160 | struct bcr_clust_cfg { |
| 161 | #ifdef CONFIG_CPU_BIG_ENDIAN |
| 162 | unsigned int pad:7, c:1, num_entries:8, num_cores:8, ver:8; |
| 163 | #else |
| 164 | unsigned int ver:8, num_cores:8, num_entries:8, c:1, pad:7; |
| 165 | #endif |
| 166 | } fields; |
| 167 | unsigned int word; |
| 168 | } cbcr; |
| 169 | |
| 170 | cbcr.word = read_aux_reg(ARC_BCR_CLUSTER); |
| 171 | if (cbcr.fields.c) |
| 172 | ioc_exists = 1; |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 173 | } |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 174 | #endif |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 175 | |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 176 | void read_decode_cache_bcr(void) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 177 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 178 | int dc_line_sz = 0, ic_line_sz = 0; |
| 179 | |
| 180 | union { |
| 181 | struct { |
| 182 | #ifdef CONFIG_CPU_BIG_ENDIAN |
| 183 | unsigned int pad:12, line_len:4, sz:4, config:4, ver:8; |
| 184 | #else |
| 185 | unsigned int ver:8, config:4, sz:4, line_len:4, pad:12; |
| 186 | #endif |
| 187 | } fields; |
| 188 | unsigned int word; |
| 189 | } ibcr, dbcr; |
| 190 | |
| 191 | ibcr.word = read_aux_reg(ARC_BCR_IC_BUILD); |
| 192 | if (ibcr.fields.ver) { |
| 193 | icache_exists = 1; |
| 194 | l1_line_sz = ic_line_sz = 8 << ibcr.fields.line_len; |
| 195 | if (!ic_line_sz) |
| 196 | panic("Instruction exists but line length is 0\n"); |
| 197 | } |
| 198 | |
| 199 | dbcr.word = read_aux_reg(ARC_BCR_DC_BUILD); |
| 200 | if (dbcr.fields.ver){ |
| 201 | dcache_exists = 1; |
| 202 | l1_line_sz = dc_line_sz = 16 << dbcr.fields.line_len; |
| 203 | if (!dc_line_sz) |
| 204 | panic("Data cache exists but line length is 0\n"); |
| 205 | } |
| 206 | |
| 207 | if (ic_line_sz && dc_line_sz && (ic_line_sz != dc_line_sz)) |
| 208 | panic("Instruction and data cache line lengths differ\n"); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | void cache_init(void) |
| 212 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 213 | read_decode_cache_bcr(); |
| 214 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 215 | #ifdef CONFIG_ISA_ARCV2 |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 216 | read_decode_cache_bcr_arcv2(); |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 217 | |
| 218 | if (ioc_exists) { |
Alexey Brodkin | 982f6bf | 2017-06-26 11:46:47 +0300 | [diff] [blame] | 219 | /* IOC Aperture start is equal to DDR start */ |
| 220 | unsigned int ap_base = CONFIG_SYS_SDRAM_BASE; |
| 221 | /* IOC Aperture size is equal to DDR size */ |
| 222 | long ap_size = CONFIG_SYS_SDRAM_SIZE; |
| 223 | |
Alexey Brodkin | 5accfc9 | 2016-06-08 08:04:03 +0300 | [diff] [blame] | 224 | flush_dcache_all(); |
| 225 | invalidate_dcache_all(); |
| 226 | |
Alexey Brodkin | 982f6bf | 2017-06-26 11:46:47 +0300 | [diff] [blame] | 227 | if (!is_power_of_2(ap_size) || ap_size < 4096) |
| 228 | panic("IOC Aperture size must be power of 2 and bigger 4Kib"); |
| 229 | |
| 230 | /* |
| 231 | * IOC Aperture size decoded as 2 ^ (SIZE + 2) KB, |
| 232 | * so setting 0x11 implies 512M, 0x12 implies 1G... |
| 233 | */ |
| 234 | write_aux_reg(ARC_AUX_IO_COH_AP0_SIZE, |
| 235 | order_base_2(ap_size/1024) - 2); |
| 236 | |
| 237 | |
| 238 | /* IOC Aperture start must be aligned to the size of the aperture */ |
| 239 | if (ap_base % ap_size != 0) |
| 240 | panic("IOC Aperture start must be aligned to the size of the aperture"); |
| 241 | |
| 242 | write_aux_reg(ARC_AUX_IO_COH_AP0_BASE, ap_base >> 12); |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 243 | write_aux_reg(ARC_AUX_IO_COH_PARTIAL, 1); |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 244 | write_aux_reg(ARC_AUX_IO_COH_ENABLE, 1); |
Alexey Brodkin | 982f6bf | 2017-06-26 11:46:47 +0300 | [diff] [blame] | 245 | |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 246 | } |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 247 | #endif |
| 248 | } |
| 249 | |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 250 | int icache_status(void) |
| 251 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 252 | if (!icache_exists) |
Igor Guryanov | bd889f9 | 2014-12-24 16:07:07 +0300 | [diff] [blame] | 253 | return 0; |
| 254 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 255 | if (read_aux_reg(ARC_AUX_IC_CTRL) & IC_CTRL_CACHE_DISABLE) |
| 256 | return 0; |
| 257 | else |
| 258 | return 1; |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | void icache_enable(void) |
| 262 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 263 | if (icache_exists) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 264 | write_aux_reg(ARC_AUX_IC_CTRL, read_aux_reg(ARC_AUX_IC_CTRL) & |
| 265 | ~IC_CTRL_CACHE_DISABLE); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | void icache_disable(void) |
| 269 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 270 | if (icache_exists) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 271 | write_aux_reg(ARC_AUX_IC_CTRL, read_aux_reg(ARC_AUX_IC_CTRL) | |
| 272 | IC_CTRL_CACHE_DISABLE); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 273 | } |
| 274 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 275 | #ifndef CONFIG_SYS_DCACHE_OFF |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 276 | void invalidate_icache_all(void) |
| 277 | { |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 278 | /* Any write to IC_IVIC register triggers invalidation of entire I$ */ |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 279 | if (icache_status()) { |
| 280 | write_aux_reg(ARC_AUX_IC_IVIC, 1); |
| 281 | read_aux_reg(ARC_AUX_IC_CTRL); /* blocks */ |
| 282 | } |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 283 | } |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 284 | #else |
| 285 | void invalidate_icache_all(void) |
| 286 | { |
| 287 | } |
| 288 | #endif |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 289 | |
| 290 | int dcache_status(void) |
| 291 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 292 | if (!dcache_exists) |
Igor Guryanov | bd889f9 | 2014-12-24 16:07:07 +0300 | [diff] [blame] | 293 | return 0; |
| 294 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 295 | if (read_aux_reg(ARC_AUX_DC_CTRL) & DC_CTRL_CACHE_DISABLE) |
| 296 | return 0; |
| 297 | else |
| 298 | return 1; |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | void dcache_enable(void) |
| 302 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 303 | if (!dcache_exists) |
Igor Guryanov | bd889f9 | 2014-12-24 16:07:07 +0300 | [diff] [blame] | 304 | return; |
| 305 | |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 306 | write_aux_reg(ARC_AUX_DC_CTRL, read_aux_reg(ARC_AUX_DC_CTRL) & |
| 307 | ~(DC_CTRL_INV_MODE_FLUSH | DC_CTRL_CACHE_DISABLE)); |
| 308 | } |
| 309 | |
| 310 | void dcache_disable(void) |
| 311 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 312 | if (!dcache_exists) |
Igor Guryanov | bd889f9 | 2014-12-24 16:07:07 +0300 | [diff] [blame] | 313 | return; |
| 314 | |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 315 | write_aux_reg(ARC_AUX_DC_CTRL, read_aux_reg(ARC_AUX_DC_CTRL) | |
| 316 | DC_CTRL_CACHE_DISABLE); |
| 317 | } |
| 318 | |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 319 | #ifndef CONFIG_SYS_DCACHE_OFF |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 320 | /* |
| 321 | * Common Helper for Line Operations on {I,D}-Cache |
| 322 | */ |
| 323 | static inline void __cache_line_loop(unsigned long paddr, unsigned long sz, |
| 324 | const int cacheop) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 325 | { |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 326 | unsigned int aux_cmd; |
| 327 | #if (CONFIG_ARC_MMU_VER == 3) |
| 328 | unsigned int aux_tag; |
| 329 | #endif |
| 330 | int num_lines; |
| 331 | |
| 332 | if (cacheop == OP_INV_IC) { |
| 333 | aux_cmd = ARC_AUX_IC_IVIL; |
Alexey Brodkin | 6da8cfc | 2015-02-03 13:58:12 +0300 | [diff] [blame] | 334 | #if (CONFIG_ARC_MMU_VER == 3) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 335 | aux_tag = ARC_AUX_IC_PTAG; |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 336 | #endif |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 337 | } else { |
| 338 | /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */ |
| 339 | aux_cmd = cacheop & OP_INV ? ARC_AUX_DC_IVDL : ARC_AUX_DC_FLDL; |
| 340 | #if (CONFIG_ARC_MMU_VER == 3) |
| 341 | aux_tag = ARC_AUX_DC_PTAG; |
| 342 | #endif |
| 343 | } |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 344 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 345 | sz += paddr & ~CACHE_LINE_MASK; |
| 346 | paddr &= CACHE_LINE_MASK; |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 347 | |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 348 | num_lines = DIV_ROUND_UP(sz, l1_line_sz); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 349 | |
| 350 | while (num_lines-- > 0) { |
Alexey Brodkin | 6da8cfc | 2015-02-03 13:58:12 +0300 | [diff] [blame] | 351 | #if (CONFIG_ARC_MMU_VER == 3) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 352 | write_aux_reg(aux_tag, paddr); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 353 | #endif |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 354 | write_aux_reg(aux_cmd, paddr); |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 355 | paddr += l1_line_sz; |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 356 | } |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 357 | } |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 358 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 359 | static unsigned int __before_dc_op(const int op) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 360 | { |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 361 | unsigned int reg; |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 362 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 363 | if (op == OP_INV) { |
| 364 | /* |
| 365 | * IM is set by default and implies Flush-n-inv |
| 366 | * Clear it here for vanilla inv |
| 367 | */ |
| 368 | reg = read_aux_reg(ARC_AUX_DC_CTRL); |
| 369 | write_aux_reg(ARC_AUX_DC_CTRL, reg & ~DC_CTRL_INV_MODE_FLUSH); |
| 370 | } |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 371 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 372 | return reg; |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 373 | } |
| 374 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 375 | static void __after_dc_op(const int op, unsigned int reg) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 376 | { |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 377 | if (op & OP_FLUSH) /* flush / flush-n-inv both wait */ |
| 378 | while (read_aux_reg(ARC_AUX_DC_CTRL) & DC_CTRL_FLUSH_STATUS) |
| 379 | ; |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 380 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 381 | /* Switch back to default Invalidate mode */ |
| 382 | if (op == OP_INV) |
| 383 | write_aux_reg(ARC_AUX_DC_CTRL, reg | DC_CTRL_INV_MODE_FLUSH); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 384 | } |
| 385 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 386 | static inline void __dc_entire_op(const int cacheop) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 387 | { |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 388 | int aux; |
| 389 | unsigned int ctrl_reg = __before_dc_op(cacheop); |
| 390 | |
| 391 | if (cacheop & OP_INV) /* Inv or flush-n-inv use same cmd reg */ |
| 392 | aux = ARC_AUX_DC_IVDC; |
| 393 | else |
| 394 | aux = ARC_AUX_DC_FLSH; |
Alexey Brodkin | 35221a6 | 2015-03-27 12:47:29 +0300 | [diff] [blame] | 395 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 396 | write_aux_reg(aux, 0x1); |
| 397 | |
| 398 | __after_dc_op(cacheop, ctrl_reg); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 399 | } |
| 400 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 401 | static inline void __dc_line_op(unsigned long paddr, unsigned long sz, |
| 402 | const int cacheop) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 403 | { |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 404 | unsigned int ctrl_reg = __before_dc_op(cacheop); |
| 405 | __cache_line_loop(paddr, sz, cacheop); |
| 406 | __after_dc_op(cacheop, ctrl_reg); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 407 | } |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 408 | #else |
| 409 | #define __dc_entire_op(cacheop) |
| 410 | #define __dc_line_op(paddr, sz, cacheop) |
| 411 | #endif /* !CONFIG_SYS_DCACHE_OFF */ |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 412 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 413 | void invalidate_dcache_range(unsigned long start, unsigned long end) |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 414 | { |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 415 | #ifdef CONFIG_ISA_ARCV2 |
| 416 | if (!ioc_exists) |
| 417 | #endif |
| 418 | __dc_line_op(start, end - start, OP_INV); |
| 419 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 420 | #ifdef CONFIG_ISA_ARCV2 |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 421 | if (slc_exists && !ioc_exists) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 422 | __slc_line_op(start, end - start, OP_INV); |
| 423 | #endif |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 424 | } |
| 425 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 426 | void flush_dcache_range(unsigned long start, unsigned long end) |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 427 | { |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 428 | #ifdef CONFIG_ISA_ARCV2 |
| 429 | if (!ioc_exists) |
| 430 | #endif |
| 431 | __dc_line_op(start, end - start, OP_FLUSH); |
| 432 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 433 | #ifdef CONFIG_ISA_ARCV2 |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 434 | if (slc_exists && !ioc_exists) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 435 | __slc_line_op(start, end - start, OP_FLUSH); |
| 436 | #endif |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 437 | } |
| 438 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 439 | void flush_cache(unsigned long start, unsigned long size) |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 440 | { |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 441 | flush_dcache_range(start, start + size); |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 442 | } |
| 443 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 444 | void invalidate_dcache_all(void) |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 445 | { |
Alexey Brodkin | e344c1f | 2016-06-08 07:57:19 +0300 | [diff] [blame] | 446 | __dc_entire_op(OP_INV); |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 447 | |
| 448 | #ifdef CONFIG_ISA_ARCV2 |
Alexey Brodkin | e344c1f | 2016-06-08 07:57:19 +0300 | [diff] [blame] | 449 | if (slc_exists) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 450 | __slc_entire_op(OP_INV); |
| 451 | #endif |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 452 | } |
| 453 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 454 | void flush_dcache_all(void) |
| 455 | { |
Alexey Brodkin | 5f54169 | 2016-04-16 15:28:30 +0300 | [diff] [blame] | 456 | __dc_entire_op(OP_FLUSH); |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 457 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 458 | #ifdef CONFIG_ISA_ARCV2 |
Alexey Brodkin | 5f54169 | 2016-04-16 15:28:30 +0300 | [diff] [blame] | 459 | if (slc_exists) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 460 | __slc_entire_op(OP_FLUSH); |
| 461 | #endif |
| 462 | } |