blob: 1b74f55ab7c36a95e8e2979e11dae50808a6a6dd [file] [log] [blame]
Alexey Brodkin2f16ac92014-02-04 12:56:14 +04001/*
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 Brodkin379b3282015-12-14 17:14:46 +03008#include <common.h>
Alexey Brodkinef639e62015-05-18 16:56:26 +03009#include <linux/compiler.h>
10#include <linux/kernel.h>
Alexey Brodkin97a63142017-06-26 11:46:47 +030011#include <linux/log2.h>
Alexey Brodkin2f16ac92014-02-04 12:56:14 +040012#include <asm/arcregs.h>
Eugeniy Paltsev88ae27e2018-03-21 15:58:52 +030013#include <asm/arc-bcr.h>
Alexey Brodkin205e7a72015-02-03 13:58:13 +030014#include <asm/cache.h>
Alexey Brodkin2f16ac92014-02-04 12:56:14 +040015
Eugeniy Paltsevc27814b2018-03-21 15:58:50 +030016/*
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.
88 */
89
Alexey Brodkin2f16ac92014-02-04 12:56:14 +040090/* Bit values in IC_CTRL */
Eugeniy Paltsev19b10a42018-01-16 19:20:29 +030091#define IC_CTRL_CACHE_DISABLE BIT(0)
Alexey Brodkin2f16ac92014-02-04 12:56:14 +040092
93/* Bit values in DC_CTRL */
Eugeniy Paltsev19b10a42018-01-16 19:20:29 +030094#define DC_CTRL_CACHE_DISABLE BIT(0)
95#define DC_CTRL_INV_MODE_FLUSH BIT(6)
96#define DC_CTRL_FLUSH_STATUS BIT(8)
Alexey Brodkin2f16ac92014-02-04 12:56:14 +040097
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +030098#define OP_INV BIT(0)
99#define OP_FLUSH BIT(1)
100#define OP_FLUSH_N_INV (OP_FLUSH | OP_INV)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300101
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300102/* Bit val in SLC_CONTROL */
103#define SLC_CTRL_DIS 0x001
104#define SLC_CTRL_IM 0x040
105#define SLC_CTRL_BUSY 0x100
106#define SLC_CTRL_RGN_OP_INV 0x200
107
Alexey Brodkinef639e62015-05-18 16:56:26 +0300108/*
109 * By default that variable will fall into .bss section.
110 * But .bss section is not relocated and so it will be initilized before
111 * relocation but will be used after being zeroed.
112 */
Alexey Brodkin379b3282015-12-14 17:14:46 +0300113int l1_line_sz __section(".data");
Alexey Brodkin379b3282015-12-14 17:14:46 +0300114
115#define CACHE_LINE_MASK (~(l1_line_sz - 1))
116
Alexey Brodkinef639e62015-05-18 16:56:26 +0300117int slc_line_sz __section(".data");
Eugeniy Paltsev3cf23932017-11-30 17:41:32 +0300118bool ioc_exists __section(".data") = false;
Alexey Brodkinef639e62015-05-18 16:56:26 +0300119
Eugeniy Paltsevb0146f92018-01-16 19:20:28 +0300120/* To force enable IOC set ioc_enable to 'true' */
121bool ioc_enable __section(".data") = false;
122
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300123static inline bool pae_exists(void)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300124{
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300125 /* TODO: should we compare mmu version from BCR and from CONFIG? */
126#if (CONFIG_ARC_MMU_VER >= 4)
Eugeniy Paltsev88ae27e2018-03-21 15:58:52 +0300127 union bcr_mmu_4 mmu4;
Alexey Brodkinef639e62015-05-18 16:56:26 +0300128
Eugeniy Paltsev88ae27e2018-03-21 15:58:52 +0300129 mmu4.word = read_aux_reg(ARC_AUX_MMU_BCR);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300130
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300131 if (mmu4.fields.pae)
132 return true;
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300133#endif /* (CONFIG_ARC_MMU_VER >= 4) */
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300134
135 return false;
136}
137
138static inline bool icache_exists(void)
139{
140 union bcr_di_cache ibcr;
141
142 ibcr.word = read_aux_reg(ARC_BCR_IC_BUILD);
143 return !!ibcr.fields.ver;
144}
145
146static inline bool dcache_exists(void)
147{
148 union bcr_di_cache dbcr;
149
150 dbcr.word = read_aux_reg(ARC_BCR_DC_BUILD);
151 return !!dbcr.fields.ver;
152}
153
154static inline bool slc_exists(void)
155{
156 if (is_isa_arcv2()) {
157 union bcr_generic sbcr;
158
159 sbcr.word = read_aux_reg(ARC_BCR_SLC);
160 return !!sbcr.fields.ver;
161 }
162
163 return false;
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300164}
165
166static void __slc_entire_op(const int op)
167{
168 unsigned int ctrl;
169
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300170 if (!slc_exists())
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300171 return;
172
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300173 ctrl = read_aux_reg(ARC_AUX_SLC_CTRL);
174
175 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
176 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
177 else
178 ctrl |= SLC_CTRL_IM;
179
180 write_aux_reg(ARC_AUX_SLC_CTRL, ctrl);
181
182 if (op & OP_INV) /* Inv or flush-n-inv use same cmd reg */
183 write_aux_reg(ARC_AUX_SLC_INVALIDATE, 0x1);
184 else
185 write_aux_reg(ARC_AUX_SLC_FLUSH, 0x1);
186
187 /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */
188 read_aux_reg(ARC_AUX_SLC_CTRL);
189
190 /* Important to wait for flush to complete */
191 while (read_aux_reg(ARC_AUX_SLC_CTRL) & SLC_CTRL_BUSY);
192}
193
194static void slc_upper_region_init(void)
195{
196 /*
197 * ARC_AUX_SLC_RGN_END1 and ARC_AUX_SLC_RGN_START1 are always == 0
198 * as we don't use PAE40.
199 */
200 write_aux_reg(ARC_AUX_SLC_RGN_END1, 0);
201 write_aux_reg(ARC_AUX_SLC_RGN_START1, 0);
202}
203
204static void __slc_rgn_op(unsigned long paddr, unsigned long sz, const int op)
205{
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300206#ifdef CONFIG_ISA_ARCV2
207
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300208 unsigned int ctrl;
209 unsigned long end;
210
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300211 if (!slc_exists())
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300212 return;
213
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300214 /*
215 * The Region Flush operation is specified by CTRL.RGN_OP[11..9]
216 * - b'000 (default) is Flush,
217 * - b'001 is Invalidate if CTRL.IM == 0
218 * - b'001 is Flush-n-Invalidate if CTRL.IM == 1
219 */
220 ctrl = read_aux_reg(ARC_AUX_SLC_CTRL);
221
222 /* Don't rely on default value of IM bit */
223 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
224 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
225 else
226 ctrl |= SLC_CTRL_IM;
227
228 if (op & OP_INV)
229 ctrl |= SLC_CTRL_RGN_OP_INV; /* Inv or flush-n-inv */
230 else
231 ctrl &= ~SLC_CTRL_RGN_OP_INV;
232
233 write_aux_reg(ARC_AUX_SLC_CTRL, ctrl);
234
235 /*
236 * Lower bits are ignored, no need to clip
237 * END needs to be setup before START (latter triggers the operation)
238 * END can't be same as START, so add (l2_line_sz - 1) to sz
239 */
240 end = paddr + sz + slc_line_sz - 1;
241
242 /*
243 * Upper addresses (ARC_AUX_SLC_RGN_END1 and ARC_AUX_SLC_RGN_START1)
244 * are always == 0 as we don't use PAE40, so we only setup lower ones
245 * (ARC_AUX_SLC_RGN_END and ARC_AUX_SLC_RGN_START)
246 */
247 write_aux_reg(ARC_AUX_SLC_RGN_END, end);
248 write_aux_reg(ARC_AUX_SLC_RGN_START, paddr);
249
250 /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */
251 read_aux_reg(ARC_AUX_SLC_CTRL);
252
253 while (read_aux_reg(ARC_AUX_SLC_CTRL) & SLC_CTRL_BUSY);
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300254
255#endif /* CONFIG_ISA_ARCV2 */
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300256}
Eugeniy Paltseva6f557c2018-03-21 15:58:51 +0300257
258static void arc_ioc_setup(void)
259{
260 /* IOC Aperture start is equal to DDR start */
261 unsigned int ap_base = CONFIG_SYS_SDRAM_BASE;
262 /* IOC Aperture size is equal to DDR size */
263 long ap_size = CONFIG_SYS_SDRAM_SIZE;
264
265 flush_n_invalidate_dcache_all();
266
267 if (!is_power_of_2(ap_size) || ap_size < 4096)
268 panic("IOC Aperture size must be power of 2 and bigger 4Kib");
269
270 /*
271 * IOC Aperture size decoded as 2 ^ (SIZE + 2) KB,
272 * so setting 0x11 implies 512M, 0x12 implies 1G...
273 */
274 write_aux_reg(ARC_AUX_IO_COH_AP0_SIZE,
275 order_base_2(ap_size / 1024) - 2);
276
277 /* IOC Aperture start must be aligned to the size of the aperture */
278 if (ap_base % ap_size != 0)
279 panic("IOC Aperture start must be aligned to the size of the aperture");
280
281 write_aux_reg(ARC_AUX_IO_COH_AP0_BASE, ap_base >> 12);
282 write_aux_reg(ARC_AUX_IO_COH_PARTIAL, 1);
283 write_aux_reg(ARC_AUX_IO_COH_ENABLE, 1);
284}
Alexey Brodkinef639e62015-05-18 16:56:26 +0300285
Alexey Brodkin379b3282015-12-14 17:14:46 +0300286static void read_decode_cache_bcr_arcv2(void)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300287{
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300288#ifdef CONFIG_ISA_ARCV2
289
Eugeniy Paltsev88ae27e2018-03-21 15:58:52 +0300290 union bcr_slc_cfg slc_cfg;
291 union bcr_clust_cfg cbcr;
Alexey Brodkin379b3282015-12-14 17:14:46 +0300292
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300293 if (slc_exists()) {
Alexey Brodkin379b3282015-12-14 17:14:46 +0300294 slc_cfg.word = read_aux_reg(ARC_AUX_SLC_CONFIG);
Alexey Brodkin379b3282015-12-14 17:14:46 +0300295 slc_line_sz = (slc_cfg.fields.lsz == 0) ? 128 : 64;
296 }
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300297
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300298 cbcr.word = read_aux_reg(ARC_BCR_CLUSTER);
Eugeniy Paltsevb0146f92018-01-16 19:20:28 +0300299 if (cbcr.fields.c && ioc_enable)
Eugeniy Paltsev3cf23932017-11-30 17:41:32 +0300300 ioc_exists = true;
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300301
302#endif /* CONFIG_ISA_ARCV2 */
Alexey Brodkin379b3282015-12-14 17:14:46 +0300303}
Alexey Brodkin379b3282015-12-14 17:14:46 +0300304
305void read_decode_cache_bcr(void)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300306{
Alexey Brodkin379b3282015-12-14 17:14:46 +0300307 int dc_line_sz = 0, ic_line_sz = 0;
Eugeniy Paltsev88ae27e2018-03-21 15:58:52 +0300308 union bcr_di_cache ibcr, dbcr;
Alexey Brodkin379b3282015-12-14 17:14:46 +0300309
310 ibcr.word = read_aux_reg(ARC_BCR_IC_BUILD);
311 if (ibcr.fields.ver) {
Alexey Brodkin379b3282015-12-14 17:14:46 +0300312 l1_line_sz = ic_line_sz = 8 << ibcr.fields.line_len;
313 if (!ic_line_sz)
314 panic("Instruction exists but line length is 0\n");
315 }
316
317 dbcr.word = read_aux_reg(ARC_BCR_DC_BUILD);
Eugeniy Paltsev19b10a42018-01-16 19:20:29 +0300318 if (dbcr.fields.ver) {
Alexey Brodkin379b3282015-12-14 17:14:46 +0300319 l1_line_sz = dc_line_sz = 16 << dbcr.fields.line_len;
320 if (!dc_line_sz)
321 panic("Data cache exists but line length is 0\n");
322 }
323
324 if (ic_line_sz && dc_line_sz && (ic_line_sz != dc_line_sz))
325 panic("Instruction and data cache line lengths differ\n");
Alexey Brodkinef639e62015-05-18 16:56:26 +0300326}
327
328void cache_init(void)
329{
Alexey Brodkin379b3282015-12-14 17:14:46 +0300330 read_decode_cache_bcr();
331
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300332 if (is_isa_arcv2())
333 read_decode_cache_bcr_arcv2();
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300334
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300335 if (is_isa_arcv2() && ioc_exists)
Eugeniy Paltseva6f557c2018-03-21 15:58:51 +0300336 arc_ioc_setup();
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300337
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300338 /*
339 * ARC_AUX_SLC_RGN_START1 and ARC_AUX_SLC_RGN_END1 register exist
340 * only if PAE exists in current HW. So we had to check pae_exist
341 * before using them.
342 */
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300343 if (is_isa_arcv2() && slc_exists() && pae_exists())
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300344 slc_upper_region_init();
Alexey Brodkinef639e62015-05-18 16:56:26 +0300345}
346
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400347int icache_status(void)
348{
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300349 if (!icache_exists())
Igor Guryanovf8cf3d12014-12-24 16:07:07 +0300350 return 0;
351
Alexey Brodkinef639e62015-05-18 16:56:26 +0300352 if (read_aux_reg(ARC_AUX_IC_CTRL) & IC_CTRL_CACHE_DISABLE)
353 return 0;
354 else
355 return 1;
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400356}
357
358void icache_enable(void)
359{
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300360 if (icache_exists())
Alexey Brodkinef639e62015-05-18 16:56:26 +0300361 write_aux_reg(ARC_AUX_IC_CTRL, read_aux_reg(ARC_AUX_IC_CTRL) &
362 ~IC_CTRL_CACHE_DISABLE);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400363}
364
365void icache_disable(void)
366{
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300367 if (icache_exists())
Alexey Brodkinef639e62015-05-18 16:56:26 +0300368 write_aux_reg(ARC_AUX_IC_CTRL, read_aux_reg(ARC_AUX_IC_CTRL) |
369 IC_CTRL_CACHE_DISABLE);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400370}
371
Eugeniy Paltsev16aeee82018-03-21 15:58:46 +0300372/* IC supports only invalidation */
373static inline void __ic_entire_invalidate(void)
374{
375 if (!icache_status())
376 return;
377
378 /* Any write to IC_IVIC register triggers invalidation of entire I$ */
379 write_aux_reg(ARC_AUX_IC_IVIC, 1);
380 /*
381 * As per ARC HS databook (see chapter 5.3.3.2)
382 * it is required to add 3 NOPs after each write to IC_IVIC.
383 */
384 __builtin_arc_nop();
385 __builtin_arc_nop();
386 __builtin_arc_nop();
387 read_aux_reg(ARC_AUX_IC_CTRL); /* blocks */
388}
389
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400390void invalidate_icache_all(void)
391{
Eugeniy Paltsev16aeee82018-03-21 15:58:46 +0300392 __ic_entire_invalidate();
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300393
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300394 if (is_isa_arcv2())
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300395 __slc_entire_op(OP_INV);
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300396}
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400397
398int dcache_status(void)
399{
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300400 if (!dcache_exists())
Igor Guryanovf8cf3d12014-12-24 16:07:07 +0300401 return 0;
402
Alexey Brodkinef639e62015-05-18 16:56:26 +0300403 if (read_aux_reg(ARC_AUX_DC_CTRL) & DC_CTRL_CACHE_DISABLE)
404 return 0;
405 else
406 return 1;
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400407}
408
409void dcache_enable(void)
410{
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300411 if (!dcache_exists())
Igor Guryanovf8cf3d12014-12-24 16:07:07 +0300412 return;
413
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400414 write_aux_reg(ARC_AUX_DC_CTRL, read_aux_reg(ARC_AUX_DC_CTRL) &
415 ~(DC_CTRL_INV_MODE_FLUSH | DC_CTRL_CACHE_DISABLE));
416}
417
418void dcache_disable(void)
419{
Eugeniy Paltsev75790872018-03-21 15:58:56 +0300420 if (!dcache_exists())
Igor Guryanovf8cf3d12014-12-24 16:07:07 +0300421 return;
422
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400423 write_aux_reg(ARC_AUX_DC_CTRL, read_aux_reg(ARC_AUX_DC_CTRL) |
424 DC_CTRL_CACHE_DISABLE);
425}
426
Eugeniy Paltsevc4ef14d2018-03-21 15:58:47 +0300427/* Common Helper for Line Operations on D-cache */
428static inline void __dcache_line_loop(unsigned long paddr, unsigned long sz,
429 const int cacheop)
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400430{
Alexey Brodkinef639e62015-05-18 16:56:26 +0300431 unsigned int aux_cmd;
Alexey Brodkinef639e62015-05-18 16:56:26 +0300432 int num_lines;
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400433
Eugeniy Paltsevc4ef14d2018-03-21 15:58:47 +0300434 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
435 aux_cmd = cacheop & OP_INV ? ARC_AUX_DC_IVDL : ARC_AUX_DC_FLDL;
Alexey Brodkinef639e62015-05-18 16:56:26 +0300436
437 sz += paddr & ~CACHE_LINE_MASK;
438 paddr &= CACHE_LINE_MASK;
439
Alexey Brodkin379b3282015-12-14 17:14:46 +0300440 num_lines = DIV_ROUND_UP(sz, l1_line_sz);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300441
442 while (num_lines-- > 0) {
443#if (CONFIG_ARC_MMU_VER == 3)
Eugeniy Paltsevc4ef14d2018-03-21 15:58:47 +0300444 write_aux_reg(ARC_AUX_DC_PTAG, paddr);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300445#endif
446 write_aux_reg(aux_cmd, paddr);
Alexey Brodkin379b3282015-12-14 17:14:46 +0300447 paddr += l1_line_sz;
Alexey Brodkinef639e62015-05-18 16:56:26 +0300448 }
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400449}
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400450
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300451static void __before_dc_op(const int op)
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400452{
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300453 unsigned int ctrl;
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400454
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300455 ctrl = read_aux_reg(ARC_AUX_DC_CTRL);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400456
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300457 /* IM bit implies flush-n-inv, instead of vanilla inv */
458 if (op == OP_INV)
459 ctrl &= ~DC_CTRL_INV_MODE_FLUSH;
460 else
461 ctrl |= DC_CTRL_INV_MODE_FLUSH;
462
463 write_aux_reg(ARC_AUX_DC_CTRL, ctrl);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400464}
465
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300466static void __after_dc_op(const int op)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300467{
468 if (op & OP_FLUSH) /* flush / flush-n-inv both wait */
Eugeniy Paltsev19b10a42018-01-16 19:20:29 +0300469 while (read_aux_reg(ARC_AUX_DC_CTRL) & DC_CTRL_FLUSH_STATUS);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300470}
471
472static inline void __dc_entire_op(const int cacheop)
473{
474 int aux;
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300475
Eugeniy Paltsevc877a892018-03-21 15:58:53 +0300476 if (!dcache_status())
477 return;
478
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300479 __before_dc_op(cacheop);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300480
481 if (cacheop & OP_INV) /* Inv or flush-n-inv use same cmd reg */
482 aux = ARC_AUX_DC_IVDC;
483 else
484 aux = ARC_AUX_DC_FLSH;
485
486 write_aux_reg(aux, 0x1);
487
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300488 __after_dc_op(cacheop);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300489}
490
491static inline void __dc_line_op(unsigned long paddr, unsigned long sz,
492 const int cacheop)
493{
Eugeniy Paltsevc877a892018-03-21 15:58:53 +0300494 if (!dcache_status())
495 return;
496
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300497 __before_dc_op(cacheop);
Eugeniy Paltsevc4ef14d2018-03-21 15:58:47 +0300498 __dcache_line_loop(paddr, sz, cacheop);
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300499 __after_dc_op(cacheop);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300500}
Alexey Brodkinef639e62015-05-18 16:56:26 +0300501
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400502void invalidate_dcache_range(unsigned long start, unsigned long end)
503{
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300504 if (start >= end)
505 return;
506
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300507 /*
508 * ARCv1 -> call __dc_line_op
509 * ARCv2 && no IOC -> call __dc_line_op; call __slc_rgn_op
510 * ARCv2 && IOC enabled -> nothing
511 */
512 if (!is_isa_arcv2() || !ioc_exists)
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300513 __dc_line_op(start, end - start, OP_INV);
514
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300515 if (is_isa_arcv2() && !ioc_exists)
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300516 __slc_rgn_op(start, end - start, OP_INV);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400517}
518
Alexey Brodkinef639e62015-05-18 16:56:26 +0300519void flush_dcache_range(unsigned long start, unsigned long end)
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400520{
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300521 if (start >= end)
522 return;
523
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300524 /*
525 * ARCv1 -> call __dc_line_op
526 * ARCv2 && no IOC -> call __dc_line_op; call __slc_rgn_op
527 * ARCv2 && IOC enabled -> nothing
528 */
529 if (!is_isa_arcv2() || !ioc_exists)
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300530 __dc_line_op(start, end - start, OP_FLUSH);
531
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300532 if (is_isa_arcv2() && !ioc_exists)
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300533 __slc_rgn_op(start, end - start, OP_FLUSH);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400534}
535
536void flush_cache(unsigned long start, unsigned long size)
537{
538 flush_dcache_range(start, start + size);
539}
Alexey Brodkin6eb15e52015-03-30 13:36:04 +0300540
Eugeniy Paltsevc27814b2018-03-21 15:58:50 +0300541/*
542 * As invalidate_dcache_all() is not used in generic U-Boot code and as we
543 * don't need it in arch/arc code alone (invalidate without flush) we implement
544 * flush_n_invalidate_dcache_all (flush and invalidate in 1 operation) because
545 * it's much safer. See [ NOTE 1 ] for more details.
546 */
547void flush_n_invalidate_dcache_all(void)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300548{
Eugeniy Paltsevc27814b2018-03-21 15:58:50 +0300549 __dc_entire_op(OP_FLUSH_N_INV);
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300550
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300551 if (is_isa_arcv2())
Eugeniy Paltsevc27814b2018-03-21 15:58:50 +0300552 __slc_entire_op(OP_FLUSH_N_INV);
Alexey Brodkin6eb15e52015-03-30 13:36:04 +0300553}
554
Alexey Brodkinef639e62015-05-18 16:56:26 +0300555void flush_dcache_all(void)
Alexey Brodkin6eb15e52015-03-30 13:36:04 +0300556{
Alexey Brodkin2a8382c2016-04-16 15:28:30 +0300557 __dc_entire_op(OP_FLUSH);
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300558
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300559 if (is_isa_arcv2())
Alexey Brodkinef639e62015-05-18 16:56:26 +0300560 __slc_entire_op(OP_FLUSH);
Alexey Brodkin6eb15e52015-03-30 13:36:04 +0300561}