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> |
Eugeniy Paltsev | 589ac75 | 2018-03-21 15:58:52 +0300 | [diff] [blame] | 13 | #include <asm/arc-bcr.h> |
Alexey Brodkin | 6b95cca | 2015-02-03 13:58:13 +0300 | [diff] [blame] | 14 | #include <asm/cache.h> |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 15 | |
Eugeniy Paltsev | bcedf4d | 2018-03-21 15:58:50 +0300 | [diff] [blame] | 16 | /* |
| 17 | * [ NOTE 1 ]: |
| 18 | * Data cache (L1 D$ or SL$) entire invalidate operation or data cache disable |
| 19 | * operation may result in unexpected behavior and data loss even if we flush |
| 20 | * data cache right before invalidation. That may happens if we store any context |
| 21 | * on stack (like we store BLINK register on stack before function call). |
| 22 | * BLINK register is the register where return address is automatically saved |
| 23 | * when we do function call with instructions like 'bl'. |
| 24 | * |
| 25 | * There is the real example: |
| 26 | * We may hang in the next code as we store any BLINK register on stack in |
| 27 | * invalidate_dcache_all() function. |
| 28 | * |
| 29 | * void flush_dcache_all() { |
| 30 | * __dc_entire_op(OP_FLUSH); |
| 31 | * // Other code // |
| 32 | * } |
| 33 | * |
| 34 | * void invalidate_dcache_all() { |
| 35 | * __dc_entire_op(OP_INV); |
| 36 | * // Other code // |
| 37 | * } |
| 38 | * |
| 39 | * void foo(void) { |
| 40 | * flush_dcache_all(); |
| 41 | * invalidate_dcache_all(); |
| 42 | * } |
| 43 | * |
| 44 | * Now let's see what really happens during that code execution: |
| 45 | * |
| 46 | * foo() |
| 47 | * |->> call flush_dcache_all |
| 48 | * [return address is saved to BLINK register] |
| 49 | * [push BLINK] (save to stack) ![point 1] |
| 50 | * |->> call __dc_entire_op(OP_FLUSH) |
| 51 | * [return address is saved to BLINK register] |
| 52 | * [flush L1 D$] |
| 53 | * return [jump to BLINK] |
| 54 | * <<------ |
| 55 | * [other flush_dcache_all code] |
| 56 | * [pop BLINK] (get from stack) |
| 57 | * return [jump to BLINK] |
| 58 | * <<------ |
| 59 | * |->> call invalidate_dcache_all |
| 60 | * [return address is saved to BLINK register] |
| 61 | * [push BLINK] (save to stack) ![point 2] |
| 62 | * |->> call __dc_entire_op(OP_FLUSH) |
| 63 | * [return address is saved to BLINK register] |
| 64 | * [invalidate L1 D$] ![point 3] |
| 65 | * // Oops!!! |
| 66 | * // We lose return address from invalidate_dcache_all function: |
| 67 | * // we save it to stack and invalidate L1 D$ after that! |
| 68 | * return [jump to BLINK] |
| 69 | * <<------ |
| 70 | * [other invalidate_dcache_all code] |
| 71 | * [pop BLINK] (get from stack) |
| 72 | * // we don't have this data in L1 dcache as we invalidated it in [point 3] |
| 73 | * // so we get it from next memory level (for example DDR memory) |
| 74 | * // but in the memory we have value which we save in [point 1], which |
| 75 | * // is return address from flush_dcache_all function (instead of |
| 76 | * // address from current invalidate_dcache_all function which we |
| 77 | * // saved in [point 2] !) |
| 78 | * return [jump to BLINK] |
| 79 | * <<------ |
| 80 | * // As BLINK points to invalidate_dcache_all, we call it again and |
| 81 | * // loop forever. |
| 82 | * |
| 83 | * Fortunately we may fix that by using flush & invalidation of D$ with a single |
| 84 | * one instruction (instead of flush and invalidation instructions pair) and |
| 85 | * enabling force function inline with '__attribute__((always_inline))' gcc |
| 86 | * attribute to avoid any function call (and BLINK store) between cache flush |
| 87 | * and disable. |
Eugeniy Paltsev | a22fcc4 | 2018-03-21 15:59:03 +0300 | [diff] [blame] | 88 | * |
| 89 | * |
| 90 | * [ NOTE 2 ]: |
| 91 | * As of today we only support the following cache configurations on ARC. |
| 92 | * Other configurations may exist in HW (for example, since version 3.0 HS |
| 93 | * supports SL$ (L2 system level cache) disable) but we don't support it in SW. |
| 94 | * Configuration 1: |
| 95 | * ______________________ |
| 96 | * | | |
| 97 | * | ARC CPU | |
| 98 | * |______________________| |
| 99 | * ___|___ ___|___ |
| 100 | * | | | | |
| 101 | * | L1 I$ | | L1 D$ | |
| 102 | * |_______| |_______| |
| 103 | * on/off on/off |
| 104 | * ___|______________|____ |
| 105 | * | | |
| 106 | * | main memory | |
| 107 | * |______________________| |
| 108 | * |
| 109 | * Configuration 2: |
| 110 | * ______________________ |
| 111 | * | | |
| 112 | * | ARC CPU | |
| 113 | * |______________________| |
| 114 | * ___|___ ___|___ |
| 115 | * | | | | |
| 116 | * | L1 I$ | | L1 D$ | |
| 117 | * |_______| |_______| |
| 118 | * on/off on/off |
| 119 | * ___|______________|____ |
| 120 | * | | |
| 121 | * | L2 (SL$) | |
| 122 | * |______________________| |
| 123 | * always must be on |
| 124 | * ___|______________|____ |
| 125 | * | | |
| 126 | * | main memory | |
| 127 | * |______________________| |
| 128 | * |
| 129 | * Configuration 3: |
| 130 | * ______________________ |
| 131 | * | | |
| 132 | * | ARC CPU | |
| 133 | * |______________________| |
| 134 | * ___|___ ___|___ |
| 135 | * | | | | |
| 136 | * | L1 I$ | | L1 D$ | |
| 137 | * |_______| |_______| |
| 138 | * on/off must be on |
| 139 | * ___|______________|____ _______ |
| 140 | * | | | | |
| 141 | * | L2 (SL$) |-----| IOC | |
| 142 | * |______________________| |_______| |
| 143 | * always must be on on/off |
| 144 | * ___|______________|____ |
| 145 | * | | |
| 146 | * | main memory | |
| 147 | * |______________________| |
Eugeniy Paltsev | bcedf4d | 2018-03-21 15:58:50 +0300 | [diff] [blame] | 148 | */ |
| 149 | |
Eugeniy Paltsev | f3de8d6 | 2018-03-21 15:58:57 +0300 | [diff] [blame] | 150 | DECLARE_GLOBAL_DATA_PTR; |
| 151 | |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 152 | /* Bit values in IC_CTRL */ |
Eugeniy Paltsev | 6e626f0 | 2018-01-16 19:20:29 +0300 | [diff] [blame] | 153 | #define IC_CTRL_CACHE_DISABLE BIT(0) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 154 | |
| 155 | /* Bit values in DC_CTRL */ |
Eugeniy Paltsev | 6e626f0 | 2018-01-16 19:20:29 +0300 | [diff] [blame] | 156 | #define DC_CTRL_CACHE_DISABLE BIT(0) |
| 157 | #define DC_CTRL_INV_MODE_FLUSH BIT(6) |
| 158 | #define DC_CTRL_FLUSH_STATUS BIT(8) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 159 | |
Eugeniy Paltsev | e256cb0 | 2018-03-21 15:58:48 +0300 | [diff] [blame] | 160 | #define OP_INV BIT(0) |
| 161 | #define OP_FLUSH BIT(1) |
| 162 | #define OP_FLUSH_N_INV (OP_FLUSH | OP_INV) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 163 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 164 | /* Bit val in SLC_CONTROL */ |
| 165 | #define SLC_CTRL_DIS 0x001 |
| 166 | #define SLC_CTRL_IM 0x040 |
| 167 | #define SLC_CTRL_BUSY 0x100 |
| 168 | #define SLC_CTRL_RGN_OP_INV 0x200 |
| 169 | |
Eugeniy Paltsev | f3de8d6 | 2018-03-21 15:58:57 +0300 | [diff] [blame] | 170 | #define CACHE_LINE_MASK (~(gd->arch.l1_line_sz - 1)) |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 171 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 172 | /* |
| 173 | * We don't want to use '__always_inline' macro here as it can be redefined |
| 174 | * to simple 'inline' in some cases which breaks stuff. See [ NOTE 1 ] for more |
| 175 | * details about the reasons we need to use always_inline functions. |
| 176 | */ |
| 177 | #define inlined_cachefunc inline __attribute__((always_inline)) |
| 178 | |
| 179 | static inlined_cachefunc void __ic_entire_invalidate(void); |
| 180 | static inlined_cachefunc void __dc_entire_op(const int cacheop); |
| 181 | |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 182 | static inline bool pae_exists(void) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 183 | { |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 184 | /* TODO: should we compare mmu version from BCR and from CONFIG? */ |
| 185 | #if (CONFIG_ARC_MMU_VER >= 4) |
Eugeniy Paltsev | 589ac75 | 2018-03-21 15:58:52 +0300 | [diff] [blame] | 186 | union bcr_mmu_4 mmu4; |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 187 | |
Eugeniy Paltsev | 589ac75 | 2018-03-21 15:58:52 +0300 | [diff] [blame] | 188 | mmu4.word = read_aux_reg(ARC_AUX_MMU_BCR); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 189 | |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 190 | if (mmu4.fields.pae) |
| 191 | return true; |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 192 | #endif /* (CONFIG_ARC_MMU_VER >= 4) */ |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 193 | |
| 194 | return false; |
| 195 | } |
| 196 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 197 | static inlined_cachefunc bool icache_exists(void) |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 198 | { |
| 199 | union bcr_di_cache ibcr; |
| 200 | |
| 201 | ibcr.word = read_aux_reg(ARC_BCR_IC_BUILD); |
| 202 | return !!ibcr.fields.ver; |
| 203 | } |
| 204 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 205 | static inlined_cachefunc bool icache_enabled(void) |
Eugeniy Paltsev | 0dec96c | 2018-03-21 15:59:00 +0300 | [diff] [blame] | 206 | { |
| 207 | if (!icache_exists()) |
| 208 | return false; |
| 209 | |
| 210 | return !(read_aux_reg(ARC_AUX_IC_CTRL) & IC_CTRL_CACHE_DISABLE); |
| 211 | } |
| 212 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 213 | static inlined_cachefunc bool dcache_exists(void) |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 214 | { |
| 215 | union bcr_di_cache dbcr; |
| 216 | |
| 217 | dbcr.word = read_aux_reg(ARC_BCR_DC_BUILD); |
| 218 | return !!dbcr.fields.ver; |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 219 | } |
| 220 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 221 | static inlined_cachefunc bool dcache_enabled(void) |
Eugeniy Paltsev | 0dec96c | 2018-03-21 15:59:00 +0300 | [diff] [blame] | 222 | { |
| 223 | if (!dcache_exists()) |
| 224 | return false; |
| 225 | |
| 226 | return !(read_aux_reg(ARC_AUX_DC_CTRL) & DC_CTRL_CACHE_DISABLE); |
| 227 | } |
| 228 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 229 | static inlined_cachefunc bool slc_exists(void) |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 230 | { |
| 231 | if (is_isa_arcv2()) { |
| 232 | union bcr_generic sbcr; |
| 233 | |
| 234 | sbcr.word = read_aux_reg(ARC_BCR_SLC); |
| 235 | return !!sbcr.fields.ver; |
| 236 | } |
| 237 | |
| 238 | return false; |
| 239 | } |
| 240 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 241 | static inlined_cachefunc bool slc_data_bypass(void) |
Eugeniy Paltsev | 767675f | 2018-03-21 15:59:01 +0300 | [diff] [blame] | 242 | { |
| 243 | /* |
| 244 | * If L1 data cache is disabled SL$ is bypassed and all load/store |
| 245 | * requests are sent directly to main memory. |
| 246 | */ |
| 247 | return !dcache_enabled(); |
| 248 | } |
| 249 | |
Eugeniy Paltsev | 04011ab | 2018-03-21 15:58:59 +0300 | [diff] [blame] | 250 | static inline bool ioc_exists(void) |
| 251 | { |
| 252 | if (is_isa_arcv2()) { |
| 253 | union bcr_clust_cfg cbcr; |
| 254 | |
| 255 | cbcr.word = read_aux_reg(ARC_BCR_CLUSTER); |
| 256 | return cbcr.fields.c; |
| 257 | } |
| 258 | |
| 259 | return false; |
| 260 | } |
| 261 | |
| 262 | static inline bool ioc_enabled(void) |
| 263 | { |
| 264 | /* |
| 265 | * We check only CONFIG option instead of IOC HW state check as IOC |
| 266 | * must be disabled by default. |
| 267 | */ |
| 268 | if (is_ioc_enabled()) |
| 269 | return ioc_exists(); |
| 270 | |
| 271 | return false; |
| 272 | } |
| 273 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 274 | static inlined_cachefunc void __slc_entire_op(const int op) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 275 | { |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 276 | unsigned int ctrl; |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 277 | |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 278 | if (!slc_exists()) |
Eugeniy Paltsev | bb8155a | 2018-03-21 15:58:55 +0300 | [diff] [blame] | 279 | return; |
| 280 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 281 | ctrl = read_aux_reg(ARC_AUX_SLC_CTRL); |
| 282 | |
| 283 | if (!(op & OP_FLUSH)) /* i.e. OP_INV */ |
| 284 | ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */ |
| 285 | else |
| 286 | ctrl |= SLC_CTRL_IM; |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 287 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 288 | write_aux_reg(ARC_AUX_SLC_CTRL, ctrl); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 289 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 290 | if (op & OP_INV) /* Inv or flush-n-inv use same cmd reg */ |
| 291 | write_aux_reg(ARC_AUX_SLC_INVALIDATE, 0x1); |
| 292 | else |
| 293 | write_aux_reg(ARC_AUX_SLC_FLUSH, 0x1); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 294 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 295 | /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */ |
| 296 | read_aux_reg(ARC_AUX_SLC_CTRL); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 297 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 298 | /* Important to wait for flush to complete */ |
| 299 | while (read_aux_reg(ARC_AUX_SLC_CTRL) & SLC_CTRL_BUSY); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 300 | } |
| 301 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 302 | static void slc_upper_region_init(void) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 303 | { |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 304 | /* |
Eugeniy Paltsev | 0627b3a | 2018-03-21 15:58:58 +0300 | [diff] [blame] | 305 | * ARC_AUX_SLC_RGN_START1 and ARC_AUX_SLC_RGN_END1 register exist |
| 306 | * only if PAE exists in current HW. So we had to check pae_exist |
| 307 | * before using them. |
| 308 | */ |
| 309 | if (!pae_exists()) |
| 310 | return; |
| 311 | |
| 312 | /* |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 313 | * ARC_AUX_SLC_RGN_END1 and ARC_AUX_SLC_RGN_START1 are always == 0 |
| 314 | * as we don't use PAE40. |
| 315 | */ |
| 316 | write_aux_reg(ARC_AUX_SLC_RGN_END1, 0); |
| 317 | write_aux_reg(ARC_AUX_SLC_RGN_START1, 0); |
| 318 | } |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 319 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 320 | static void __slc_rgn_op(unsigned long paddr, unsigned long sz, const int op) |
| 321 | { |
Eugeniy Paltsev | 76caa80 | 2018-03-21 15:58:54 +0300 | [diff] [blame] | 322 | #ifdef CONFIG_ISA_ARCV2 |
| 323 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 324 | unsigned int ctrl; |
| 325 | unsigned long end; |
| 326 | |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 327 | if (!slc_exists()) |
Eugeniy Paltsev | bb8155a | 2018-03-21 15:58:55 +0300 | [diff] [blame] | 328 | return; |
| 329 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 330 | /* |
| 331 | * The Region Flush operation is specified by CTRL.RGN_OP[11..9] |
| 332 | * - b'000 (default) is Flush, |
| 333 | * - b'001 is Invalidate if CTRL.IM == 0 |
| 334 | * - b'001 is Flush-n-Invalidate if CTRL.IM == 1 |
| 335 | */ |
| 336 | ctrl = read_aux_reg(ARC_AUX_SLC_CTRL); |
| 337 | |
| 338 | /* Don't rely on default value of IM bit */ |
| 339 | if (!(op & OP_FLUSH)) /* i.e. OP_INV */ |
| 340 | ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */ |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 341 | else |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 342 | ctrl |= SLC_CTRL_IM; |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 343 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 344 | if (op & OP_INV) |
| 345 | ctrl |= SLC_CTRL_RGN_OP_INV; /* Inv or flush-n-inv */ |
| 346 | else |
| 347 | ctrl &= ~SLC_CTRL_RGN_OP_INV; |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 348 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 349 | write_aux_reg(ARC_AUX_SLC_CTRL, ctrl); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 350 | |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 351 | /* |
| 352 | * Lower bits are ignored, no need to clip |
| 353 | * END needs to be setup before START (latter triggers the operation) |
| 354 | * END can't be same as START, so add (l2_line_sz - 1) to sz |
| 355 | */ |
Eugeniy Paltsev | f3de8d6 | 2018-03-21 15:58:57 +0300 | [diff] [blame] | 356 | end = paddr + sz + gd->arch.slc_line_sz - 1; |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 357 | |
| 358 | /* |
| 359 | * Upper addresses (ARC_AUX_SLC_RGN_END1 and ARC_AUX_SLC_RGN_START1) |
| 360 | * are always == 0 as we don't use PAE40, so we only setup lower ones |
| 361 | * (ARC_AUX_SLC_RGN_END and ARC_AUX_SLC_RGN_START) |
| 362 | */ |
| 363 | write_aux_reg(ARC_AUX_SLC_RGN_END, end); |
| 364 | write_aux_reg(ARC_AUX_SLC_RGN_START, paddr); |
| 365 | |
| 366 | /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */ |
| 367 | read_aux_reg(ARC_AUX_SLC_CTRL); |
| 368 | |
| 369 | while (read_aux_reg(ARC_AUX_SLC_CTRL) & SLC_CTRL_BUSY); |
Eugeniy Paltsev | 76caa80 | 2018-03-21 15:58:54 +0300 | [diff] [blame] | 370 | |
| 371 | #endif /* CONFIG_ISA_ARCV2 */ |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 372 | } |
Eugeniy Paltsev | d4c5b2a | 2018-03-21 15:58:51 +0300 | [diff] [blame] | 373 | |
| 374 | static void arc_ioc_setup(void) |
| 375 | { |
| 376 | /* IOC Aperture start is equal to DDR start */ |
| 377 | unsigned int ap_base = CONFIG_SYS_SDRAM_BASE; |
| 378 | /* IOC Aperture size is equal to DDR size */ |
| 379 | long ap_size = CONFIG_SYS_SDRAM_SIZE; |
| 380 | |
Eugeniy Paltsev | a22fcc4 | 2018-03-21 15:59:03 +0300 | [diff] [blame] | 381 | /* Unsupported configuration. See [ NOTE 2 ] for more details. */ |
| 382 | if (!slc_exists()) |
| 383 | panic("Try to enable IOC but SLC is not present"); |
| 384 | |
| 385 | /* Unsupported configuration. See [ NOTE 2 ] for more details. */ |
| 386 | if (!dcache_enabled()) |
| 387 | panic("Try to enable IOC but L1 D$ is disabled"); |
| 388 | |
Eugeniy Paltsev | d4c5b2a | 2018-03-21 15:58:51 +0300 | [diff] [blame] | 389 | flush_n_invalidate_dcache_all(); |
| 390 | |
| 391 | if (!is_power_of_2(ap_size) || ap_size < 4096) |
| 392 | panic("IOC Aperture size must be power of 2 and bigger 4Kib"); |
| 393 | |
| 394 | /* |
| 395 | * IOC Aperture size decoded as 2 ^ (SIZE + 2) KB, |
| 396 | * so setting 0x11 implies 512M, 0x12 implies 1G... |
| 397 | */ |
| 398 | write_aux_reg(ARC_AUX_IO_COH_AP0_SIZE, |
| 399 | order_base_2(ap_size / 1024) - 2); |
| 400 | |
| 401 | /* IOC Aperture start must be aligned to the size of the aperture */ |
| 402 | if (ap_base % ap_size != 0) |
| 403 | panic("IOC Aperture start must be aligned to the size of the aperture"); |
| 404 | |
| 405 | write_aux_reg(ARC_AUX_IO_COH_AP0_BASE, ap_base >> 12); |
| 406 | write_aux_reg(ARC_AUX_IO_COH_PARTIAL, 1); |
| 407 | write_aux_reg(ARC_AUX_IO_COH_ENABLE, 1); |
| 408 | } |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 409 | |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 410 | static void read_decode_cache_bcr_arcv2(void) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 411 | { |
Eugeniy Paltsev | 76caa80 | 2018-03-21 15:58:54 +0300 | [diff] [blame] | 412 | #ifdef CONFIG_ISA_ARCV2 |
| 413 | |
Eugeniy Paltsev | 589ac75 | 2018-03-21 15:58:52 +0300 | [diff] [blame] | 414 | union bcr_slc_cfg slc_cfg; |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 415 | |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 416 | if (slc_exists()) { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 417 | slc_cfg.word = read_aux_reg(ARC_AUX_SLC_CONFIG); |
Eugeniy Paltsev | f3de8d6 | 2018-03-21 15:58:57 +0300 | [diff] [blame] | 418 | gd->arch.slc_line_sz = (slc_cfg.fields.lsz == 0) ? 128 : 64; |
Eugeniy Paltsev | a22fcc4 | 2018-03-21 15:59:03 +0300 | [diff] [blame] | 419 | |
| 420 | /* |
| 421 | * We don't support configuration where L1 I$ or L1 D$ is |
| 422 | * absent but SL$ exists. See [ NOTE 2 ] for more details. |
| 423 | */ |
| 424 | if (!icache_exists() || !dcache_exists()) |
| 425 | panic("Unsupported cache configuration: SLC exists but one of L1 caches is absent"); |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 426 | } |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 427 | |
Eugeniy Paltsev | 76caa80 | 2018-03-21 15:58:54 +0300 | [diff] [blame] | 428 | #endif /* CONFIG_ISA_ARCV2 */ |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 429 | } |
| 430 | |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 431 | void read_decode_cache_bcr(void) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 432 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 433 | int dc_line_sz = 0, ic_line_sz = 0; |
Eugeniy Paltsev | 589ac75 | 2018-03-21 15:58:52 +0300 | [diff] [blame] | 434 | union bcr_di_cache ibcr, dbcr; |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 435 | |
| 436 | ibcr.word = read_aux_reg(ARC_BCR_IC_BUILD); |
| 437 | if (ibcr.fields.ver) { |
Eugeniy Paltsev | f3de8d6 | 2018-03-21 15:58:57 +0300 | [diff] [blame] | 438 | gd->arch.l1_line_sz = ic_line_sz = 8 << ibcr.fields.line_len; |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 439 | if (!ic_line_sz) |
| 440 | panic("Instruction exists but line length is 0\n"); |
| 441 | } |
| 442 | |
| 443 | dbcr.word = read_aux_reg(ARC_BCR_DC_BUILD); |
Eugeniy Paltsev | 6e626f0 | 2018-01-16 19:20:29 +0300 | [diff] [blame] | 444 | if (dbcr.fields.ver) { |
Eugeniy Paltsev | f3de8d6 | 2018-03-21 15:58:57 +0300 | [diff] [blame] | 445 | gd->arch.l1_line_sz = dc_line_sz = 16 << dbcr.fields.line_len; |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 446 | if (!dc_line_sz) |
| 447 | panic("Data cache exists but line length is 0\n"); |
| 448 | } |
| 449 | |
| 450 | if (ic_line_sz && dc_line_sz && (ic_line_sz != dc_line_sz)) |
| 451 | panic("Instruction and data cache line lengths differ\n"); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | void cache_init(void) |
| 455 | { |
Alexey Brodkin | dff5df2 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 456 | read_decode_cache_bcr(); |
| 457 | |
Eugeniy Paltsev | 76caa80 | 2018-03-21 15:58:54 +0300 | [diff] [blame] | 458 | if (is_isa_arcv2()) |
| 459 | read_decode_cache_bcr_arcv2(); |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 460 | |
Eugeniy Paltsev | 04011ab | 2018-03-21 15:58:59 +0300 | [diff] [blame] | 461 | if (is_isa_arcv2() && ioc_enabled()) |
Eugeniy Paltsev | d4c5b2a | 2018-03-21 15:58:51 +0300 | [diff] [blame] | 462 | arc_ioc_setup(); |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 463 | |
Eugeniy Paltsev | 0627b3a | 2018-03-21 15:58:58 +0300 | [diff] [blame] | 464 | if (is_isa_arcv2() && slc_exists()) |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 465 | slc_upper_region_init(); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 466 | } |
| 467 | |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 468 | int icache_status(void) |
| 469 | { |
Eugeniy Paltsev | 0dec96c | 2018-03-21 15:59:00 +0300 | [diff] [blame] | 470 | return icache_enabled(); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 471 | } |
| 472 | |
| 473 | void icache_enable(void) |
| 474 | { |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 475 | if (icache_exists()) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 476 | write_aux_reg(ARC_AUX_IC_CTRL, read_aux_reg(ARC_AUX_IC_CTRL) & |
| 477 | ~IC_CTRL_CACHE_DISABLE); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | void icache_disable(void) |
| 481 | { |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 482 | if (!icache_exists()) |
| 483 | return; |
| 484 | |
| 485 | __ic_entire_invalidate(); |
| 486 | |
| 487 | write_aux_reg(ARC_AUX_IC_CTRL, read_aux_reg(ARC_AUX_IC_CTRL) | |
| 488 | IC_CTRL_CACHE_DISABLE); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 489 | } |
| 490 | |
Eugeniy Paltsev | ad8aef3 | 2018-03-21 15:58:46 +0300 | [diff] [blame] | 491 | /* IC supports only invalidation */ |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 492 | static inlined_cachefunc void __ic_entire_invalidate(void) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 493 | { |
Eugeniy Paltsev | 0dec96c | 2018-03-21 15:59:00 +0300 | [diff] [blame] | 494 | if (!icache_enabled()) |
Eugeniy Paltsev | ad8aef3 | 2018-03-21 15:58:46 +0300 | [diff] [blame] | 495 | return; |
| 496 | |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 497 | /* Any write to IC_IVIC register triggers invalidation of entire I$ */ |
Eugeniy Paltsev | ad8aef3 | 2018-03-21 15:58:46 +0300 | [diff] [blame] | 498 | write_aux_reg(ARC_AUX_IC_IVIC, 1); |
| 499 | /* |
| 500 | * As per ARC HS databook (see chapter 5.3.3.2) |
| 501 | * it is required to add 3 NOPs after each write to IC_IVIC. |
| 502 | */ |
| 503 | __builtin_arc_nop(); |
| 504 | __builtin_arc_nop(); |
| 505 | __builtin_arc_nop(); |
| 506 | read_aux_reg(ARC_AUX_IC_CTRL); /* blocks */ |
| 507 | } |
| 508 | |
| 509 | void invalidate_icache_all(void) |
| 510 | { |
| 511 | __ic_entire_invalidate(); |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 512 | |
Eugeniy Paltsev | 767675f | 2018-03-21 15:59:01 +0300 | [diff] [blame] | 513 | /* |
| 514 | * If SL$ is bypassed for data it is used only for instructions, |
| 515 | * so we need to invalidate it too. |
| 516 | * TODO: HS 3.0 supports SLC disable so we need to check slc |
| 517 | * enable/disable status here. |
| 518 | */ |
| 519 | if (is_isa_arcv2() && slc_data_bypass()) |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 520 | __slc_entire_op(OP_INV); |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 521 | } |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 522 | |
| 523 | int dcache_status(void) |
| 524 | { |
Eugeniy Paltsev | 0dec96c | 2018-03-21 15:59:00 +0300 | [diff] [blame] | 525 | return dcache_enabled(); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | void dcache_enable(void) |
| 529 | { |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 530 | if (!dcache_exists()) |
Igor Guryanov | bd889f9 | 2014-12-24 16:07:07 +0300 | [diff] [blame] | 531 | return; |
| 532 | |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 533 | write_aux_reg(ARC_AUX_DC_CTRL, read_aux_reg(ARC_AUX_DC_CTRL) & |
| 534 | ~(DC_CTRL_INV_MODE_FLUSH | DC_CTRL_CACHE_DISABLE)); |
| 535 | } |
| 536 | |
| 537 | void dcache_disable(void) |
| 538 | { |
Eugeniy Paltsev | 6d5147b | 2018-03-21 15:58:56 +0300 | [diff] [blame] | 539 | if (!dcache_exists()) |
Igor Guryanov | bd889f9 | 2014-12-24 16:07:07 +0300 | [diff] [blame] | 540 | return; |
| 541 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 542 | __dc_entire_op(OP_FLUSH_N_INV); |
| 543 | |
| 544 | /* |
| 545 | * As SLC will be bypassed for data after L1 D$ disable we need to |
| 546 | * flush it first before L1 D$ disable. Also we invalidate SLC to |
| 547 | * avoid any inconsistent data problems after enabling L1 D$ again with |
| 548 | * dcache_enable function. |
| 549 | */ |
| 550 | if (is_isa_arcv2()) |
| 551 | __slc_entire_op(OP_FLUSH_N_INV); |
| 552 | |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 553 | write_aux_reg(ARC_AUX_DC_CTRL, read_aux_reg(ARC_AUX_DC_CTRL) | |
| 554 | DC_CTRL_CACHE_DISABLE); |
| 555 | } |
| 556 | |
Eugeniy Paltsev | 988152c | 2018-03-21 15:58:47 +0300 | [diff] [blame] | 557 | /* Common Helper for Line Operations on D-cache */ |
| 558 | static inline void __dcache_line_loop(unsigned long paddr, unsigned long sz, |
| 559 | const int cacheop) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 560 | { |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 561 | unsigned int aux_cmd; |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 562 | int num_lines; |
| 563 | |
Eugeniy Paltsev | 988152c | 2018-03-21 15:58:47 +0300 | [diff] [blame] | 564 | /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */ |
| 565 | aux_cmd = cacheop & OP_INV ? ARC_AUX_DC_IVDL : ARC_AUX_DC_FLDL; |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 566 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 567 | sz += paddr & ~CACHE_LINE_MASK; |
| 568 | paddr &= CACHE_LINE_MASK; |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 569 | |
Eugeniy Paltsev | f3de8d6 | 2018-03-21 15:58:57 +0300 | [diff] [blame] | 570 | num_lines = DIV_ROUND_UP(sz, gd->arch.l1_line_sz); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 571 | |
| 572 | while (num_lines-- > 0) { |
Alexey Brodkin | 6da8cfc | 2015-02-03 13:58:12 +0300 | [diff] [blame] | 573 | #if (CONFIG_ARC_MMU_VER == 3) |
Eugeniy Paltsev | 988152c | 2018-03-21 15:58:47 +0300 | [diff] [blame] | 574 | write_aux_reg(ARC_AUX_DC_PTAG, paddr); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 575 | #endif |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 576 | write_aux_reg(aux_cmd, paddr); |
Eugeniy Paltsev | f3de8d6 | 2018-03-21 15:58:57 +0300 | [diff] [blame] | 577 | paddr += gd->arch.l1_line_sz; |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 578 | } |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 579 | } |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 580 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 581 | static inlined_cachefunc void __before_dc_op(const int op) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 582 | { |
Eugeniy Paltsev | e256cb0 | 2018-03-21 15:58:48 +0300 | [diff] [blame] | 583 | unsigned int ctrl; |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 584 | |
Eugeniy Paltsev | e256cb0 | 2018-03-21 15:58:48 +0300 | [diff] [blame] | 585 | ctrl = read_aux_reg(ARC_AUX_DC_CTRL); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 586 | |
Eugeniy Paltsev | e256cb0 | 2018-03-21 15:58:48 +0300 | [diff] [blame] | 587 | /* IM bit implies flush-n-inv, instead of vanilla inv */ |
| 588 | if (op == OP_INV) |
| 589 | ctrl &= ~DC_CTRL_INV_MODE_FLUSH; |
| 590 | else |
| 591 | ctrl |= DC_CTRL_INV_MODE_FLUSH; |
| 592 | |
| 593 | write_aux_reg(ARC_AUX_DC_CTRL, ctrl); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 594 | } |
| 595 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 596 | static inlined_cachefunc void __after_dc_op(const int op) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 597 | { |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 598 | if (op & OP_FLUSH) /* flush / flush-n-inv both wait */ |
Eugeniy Paltsev | 6e626f0 | 2018-01-16 19:20:29 +0300 | [diff] [blame] | 599 | while (read_aux_reg(ARC_AUX_DC_CTRL) & DC_CTRL_FLUSH_STATUS); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 600 | } |
| 601 | |
Eugeniy Paltsev | dddc886 | 2018-03-21 15:59:04 +0300 | [diff] [blame^] | 602 | static inlined_cachefunc void __dc_entire_op(const int cacheop) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 603 | { |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 604 | int aux; |
Eugeniy Paltsev | e256cb0 | 2018-03-21 15:58:48 +0300 | [diff] [blame] | 605 | |
Eugeniy Paltsev | 0dec96c | 2018-03-21 15:59:00 +0300 | [diff] [blame] | 606 | if (!dcache_enabled()) |
Eugeniy Paltsev | 7fd7e0a | 2018-03-21 15:58:53 +0300 | [diff] [blame] | 607 | return; |
| 608 | |
Eugeniy Paltsev | e256cb0 | 2018-03-21 15:58:48 +0300 | [diff] [blame] | 609 | __before_dc_op(cacheop); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 610 | |
| 611 | if (cacheop & OP_INV) /* Inv or flush-n-inv use same cmd reg */ |
| 612 | aux = ARC_AUX_DC_IVDC; |
| 613 | else |
| 614 | aux = ARC_AUX_DC_FLSH; |
Alexey Brodkin | 35221a6 | 2015-03-27 12:47:29 +0300 | [diff] [blame] | 615 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 616 | write_aux_reg(aux, 0x1); |
| 617 | |
Eugeniy Paltsev | e256cb0 | 2018-03-21 15:58:48 +0300 | [diff] [blame] | 618 | __after_dc_op(cacheop); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 619 | } |
| 620 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 621 | static inline void __dc_line_op(unsigned long paddr, unsigned long sz, |
| 622 | const int cacheop) |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 623 | { |
Eugeniy Paltsev | 0dec96c | 2018-03-21 15:59:00 +0300 | [diff] [blame] | 624 | if (!dcache_enabled()) |
Eugeniy Paltsev | 7fd7e0a | 2018-03-21 15:58:53 +0300 | [diff] [blame] | 625 | return; |
| 626 | |
Eugeniy Paltsev | e256cb0 | 2018-03-21 15:58:48 +0300 | [diff] [blame] | 627 | __before_dc_op(cacheop); |
Eugeniy Paltsev | 988152c | 2018-03-21 15:58:47 +0300 | [diff] [blame] | 628 | __dcache_line_loop(paddr, sz, cacheop); |
Eugeniy Paltsev | e256cb0 | 2018-03-21 15:58:48 +0300 | [diff] [blame] | 629 | __after_dc_op(cacheop); |
Alexey Brodkin | 3a59d91 | 2014-02-04 12:56:14 +0400 | [diff] [blame] | 630 | } |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 631 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 632 | void invalidate_dcache_range(unsigned long start, unsigned long end) |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 633 | { |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 634 | if (start >= end) |
| 635 | return; |
| 636 | |
Eugeniy Paltsev | 76caa80 | 2018-03-21 15:58:54 +0300 | [diff] [blame] | 637 | /* |
Eugeniy Paltsev | 767675f | 2018-03-21 15:59:01 +0300 | [diff] [blame] | 638 | * ARCv1 -> call __dc_line_op |
| 639 | * ARCv2 && L1 D$ disabled -> nothing |
| 640 | * ARCv2 && L1 D$ enabled && IOC enabled -> nothing |
| 641 | * ARCv2 && L1 D$ enabled && no IOC -> call __dc_line_op; call __slc_rgn_op |
Eugeniy Paltsev | 76caa80 | 2018-03-21 15:58:54 +0300 | [diff] [blame] | 642 | */ |
Eugeniy Paltsev | 04011ab | 2018-03-21 15:58:59 +0300 | [diff] [blame] | 643 | if (!is_isa_arcv2() || !ioc_enabled()) |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 644 | __dc_line_op(start, end - start, OP_INV); |
| 645 | |
Eugeniy Paltsev | 767675f | 2018-03-21 15:59:01 +0300 | [diff] [blame] | 646 | if (is_isa_arcv2() && !ioc_enabled() && !slc_data_bypass()) |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 647 | __slc_rgn_op(start, end - start, OP_INV); |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 648 | } |
| 649 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 650 | void flush_dcache_range(unsigned long start, unsigned long end) |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 651 | { |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 652 | if (start >= end) |
| 653 | return; |
| 654 | |
Eugeniy Paltsev | 76caa80 | 2018-03-21 15:58:54 +0300 | [diff] [blame] | 655 | /* |
Eugeniy Paltsev | 767675f | 2018-03-21 15:59:01 +0300 | [diff] [blame] | 656 | * ARCv1 -> call __dc_line_op |
| 657 | * ARCv2 && L1 D$ disabled -> nothing |
| 658 | * ARCv2 && L1 D$ enabled && IOC enabled -> nothing |
| 659 | * ARCv2 && L1 D$ enabled && no IOC -> call __dc_line_op; call __slc_rgn_op |
Eugeniy Paltsev | 76caa80 | 2018-03-21 15:58:54 +0300 | [diff] [blame] | 660 | */ |
Eugeniy Paltsev | 04011ab | 2018-03-21 15:58:59 +0300 | [diff] [blame] | 661 | if (!is_isa_arcv2() || !ioc_enabled()) |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 662 | __dc_line_op(start, end - start, OP_FLUSH); |
| 663 | |
Eugeniy Paltsev | 767675f | 2018-03-21 15:59:01 +0300 | [diff] [blame] | 664 | if (is_isa_arcv2() && !ioc_enabled() && !slc_data_bypass()) |
Eugeniy Paltsev | 1d0578e | 2018-01-16 19:20:26 +0300 | [diff] [blame] | 665 | __slc_rgn_op(start, end - start, OP_FLUSH); |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 666 | } |
| 667 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 668 | void flush_cache(unsigned long start, unsigned long size) |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 669 | { |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 670 | flush_dcache_range(start, start + size); |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 671 | } |
| 672 | |
Eugeniy Paltsev | bcedf4d | 2018-03-21 15:58:50 +0300 | [diff] [blame] | 673 | /* |
| 674 | * As invalidate_dcache_all() is not used in generic U-Boot code and as we |
| 675 | * don't need it in arch/arc code alone (invalidate without flush) we implement |
| 676 | * flush_n_invalidate_dcache_all (flush and invalidate in 1 operation) because |
| 677 | * it's much safer. See [ NOTE 1 ] for more details. |
| 678 | */ |
| 679 | void flush_n_invalidate_dcache_all(void) |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 680 | { |
Eugeniy Paltsev | bcedf4d | 2018-03-21 15:58:50 +0300 | [diff] [blame] | 681 | __dc_entire_op(OP_FLUSH_N_INV); |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 682 | |
Eugeniy Paltsev | 767675f | 2018-03-21 15:59:01 +0300 | [diff] [blame] | 683 | if (is_isa_arcv2() && !slc_data_bypass()) |
Eugeniy Paltsev | bcedf4d | 2018-03-21 15:58:50 +0300 | [diff] [blame] | 684 | __slc_entire_op(OP_FLUSH_N_INV); |
Alexey Brodkin | 275583e | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 685 | } |
| 686 | |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 687 | void flush_dcache_all(void) |
| 688 | { |
Alexey Brodkin | 5f54169 | 2016-04-16 15:28:30 +0300 | [diff] [blame] | 689 | __dc_entire_op(OP_FLUSH); |
Alexey Brodkin | 4764d26 | 2015-12-14 17:15:13 +0300 | [diff] [blame] | 690 | |
Eugeniy Paltsev | 767675f | 2018-03-21 15:59:01 +0300 | [diff] [blame] | 691 | if (is_isa_arcv2() && !slc_data_bypass()) |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 692 | __slc_entire_op(OP_FLUSH); |
Alexey Brodkin | 9f916ee | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 693 | } |
Eugeniy Paltsev | 67fd56a | 2018-03-21 15:59:02 +0300 | [diff] [blame] | 694 | |
| 695 | /* |
| 696 | * This is function to cleanup all caches (and therefore sync I/D caches) which |
| 697 | * can be used for cleanup before linux launch or to sync caches during |
| 698 | * relocation. |
| 699 | */ |
| 700 | void sync_n_cleanup_cache_all(void) |
| 701 | { |
| 702 | __dc_entire_op(OP_FLUSH_N_INV); |
| 703 | |
| 704 | /* |
| 705 | * If SL$ is bypassed for data it is used only for instructions, |
| 706 | * and we shouldn't flush it. So invalidate it instead of flush_n_inv. |
| 707 | */ |
| 708 | if (is_isa_arcv2()) { |
| 709 | if (slc_data_bypass()) |
| 710 | __slc_entire_op(OP_INV); |
| 711 | else |
| 712 | __slc_entire_op(OP_FLUSH_N_INV); |
| 713 | } |
| 714 | |
| 715 | __ic_entire_invalidate(); |
| 716 | } |