blob: f147674ae84e74c843c4c1679eceb48839791d47 [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)
Igor Guryanovf8cf3d12014-12-24 16:07:07 +030097#define CACHE_VER_NUM_MASK 0xF
Alexey Brodkin2f16ac92014-02-04 12:56:14 +040098
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +030099#define OP_INV BIT(0)
100#define OP_FLUSH BIT(1)
101#define OP_FLUSH_N_INV (OP_FLUSH | OP_INV)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300102
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300103/* Bit val in SLC_CONTROL */
104#define SLC_CTRL_DIS 0x001
105#define SLC_CTRL_IM 0x040
106#define SLC_CTRL_BUSY 0x100
107#define SLC_CTRL_RGN_OP_INV 0x200
108
Alexey Brodkinef639e62015-05-18 16:56:26 +0300109/*
110 * By default that variable will fall into .bss section.
111 * But .bss section is not relocated and so it will be initilized before
112 * relocation but will be used after being zeroed.
113 */
Alexey Brodkin379b3282015-12-14 17:14:46 +0300114int l1_line_sz __section(".data");
Eugeniy Paltsev3cf23932017-11-30 17:41:32 +0300115bool dcache_exists __section(".data") = false;
116bool icache_exists __section(".data") = false;
Alexey Brodkin379b3282015-12-14 17:14:46 +0300117
118#define CACHE_LINE_MASK (~(l1_line_sz - 1))
119
Alexey Brodkinef639e62015-05-18 16:56:26 +0300120int slc_line_sz __section(".data");
Eugeniy Paltsev3cf23932017-11-30 17:41:32 +0300121bool slc_exists __section(".data") = false;
122bool ioc_exists __section(".data") = false;
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300123bool pae_exists __section(".data") = false;
Alexey Brodkinef639e62015-05-18 16:56:26 +0300124
Eugeniy Paltsevb0146f92018-01-16 19:20:28 +0300125/* To force enable IOC set ioc_enable to 'true' */
126bool ioc_enable __section(".data") = false;
127
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300128void read_decode_mmu_bcr(void)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300129{
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300130 /* TODO: should we compare mmu version from BCR and from CONFIG? */
131#if (CONFIG_ARC_MMU_VER >= 4)
Eugeniy Paltsev88ae27e2018-03-21 15:58:52 +0300132 union bcr_mmu_4 mmu4;
Alexey Brodkinef639e62015-05-18 16:56:26 +0300133
Eugeniy Paltsev88ae27e2018-03-21 15:58:52 +0300134 mmu4.word = read_aux_reg(ARC_AUX_MMU_BCR);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300135
Eugeniy Paltsev88ae27e2018-03-21 15:58:52 +0300136 pae_exists = !!mmu4.fields.pae;
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300137#endif /* (CONFIG_ARC_MMU_VER >= 4) */
138}
139
140static void __slc_entire_op(const int op)
141{
142 unsigned int ctrl;
143
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300144 if (!slc_exists)
145 return;
146
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300147 ctrl = read_aux_reg(ARC_AUX_SLC_CTRL);
148
149 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
150 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
151 else
152 ctrl |= SLC_CTRL_IM;
153
154 write_aux_reg(ARC_AUX_SLC_CTRL, ctrl);
155
156 if (op & OP_INV) /* Inv or flush-n-inv use same cmd reg */
157 write_aux_reg(ARC_AUX_SLC_INVALIDATE, 0x1);
158 else
159 write_aux_reg(ARC_AUX_SLC_FLUSH, 0x1);
160
161 /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */
162 read_aux_reg(ARC_AUX_SLC_CTRL);
163
164 /* Important to wait for flush to complete */
165 while (read_aux_reg(ARC_AUX_SLC_CTRL) & SLC_CTRL_BUSY);
166}
167
168static void slc_upper_region_init(void)
169{
170 /*
171 * ARC_AUX_SLC_RGN_END1 and ARC_AUX_SLC_RGN_START1 are always == 0
172 * as we don't use PAE40.
173 */
174 write_aux_reg(ARC_AUX_SLC_RGN_END1, 0);
175 write_aux_reg(ARC_AUX_SLC_RGN_START1, 0);
176}
177
178static void __slc_rgn_op(unsigned long paddr, unsigned long sz, const int op)
179{
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300180#ifdef CONFIG_ISA_ARCV2
181
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300182 unsigned int ctrl;
183 unsigned long end;
184
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300185 if (!slc_exists)
186 return;
187
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300188 /*
189 * The Region Flush operation is specified by CTRL.RGN_OP[11..9]
190 * - b'000 (default) is Flush,
191 * - b'001 is Invalidate if CTRL.IM == 0
192 * - b'001 is Flush-n-Invalidate if CTRL.IM == 1
193 */
194 ctrl = read_aux_reg(ARC_AUX_SLC_CTRL);
195
196 /* Don't rely on default value of IM bit */
197 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
198 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
199 else
200 ctrl |= SLC_CTRL_IM;
201
202 if (op & OP_INV)
203 ctrl |= SLC_CTRL_RGN_OP_INV; /* Inv or flush-n-inv */
204 else
205 ctrl &= ~SLC_CTRL_RGN_OP_INV;
206
207 write_aux_reg(ARC_AUX_SLC_CTRL, ctrl);
208
209 /*
210 * Lower bits are ignored, no need to clip
211 * END needs to be setup before START (latter triggers the operation)
212 * END can't be same as START, so add (l2_line_sz - 1) to sz
213 */
214 end = paddr + sz + slc_line_sz - 1;
215
216 /*
217 * Upper addresses (ARC_AUX_SLC_RGN_END1 and ARC_AUX_SLC_RGN_START1)
218 * are always == 0 as we don't use PAE40, so we only setup lower ones
219 * (ARC_AUX_SLC_RGN_END and ARC_AUX_SLC_RGN_START)
220 */
221 write_aux_reg(ARC_AUX_SLC_RGN_END, end);
222 write_aux_reg(ARC_AUX_SLC_RGN_START, paddr);
223
224 /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */
225 read_aux_reg(ARC_AUX_SLC_CTRL);
226
227 while (read_aux_reg(ARC_AUX_SLC_CTRL) & SLC_CTRL_BUSY);
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300228
229#endif /* CONFIG_ISA_ARCV2 */
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300230}
Eugeniy Paltseva6f557c2018-03-21 15:58:51 +0300231
232static void arc_ioc_setup(void)
233{
234 /* IOC Aperture start is equal to DDR start */
235 unsigned int ap_base = CONFIG_SYS_SDRAM_BASE;
236 /* IOC Aperture size is equal to DDR size */
237 long ap_size = CONFIG_SYS_SDRAM_SIZE;
238
239 flush_n_invalidate_dcache_all();
240
241 if (!is_power_of_2(ap_size) || ap_size < 4096)
242 panic("IOC Aperture size must be power of 2 and bigger 4Kib");
243
244 /*
245 * IOC Aperture size decoded as 2 ^ (SIZE + 2) KB,
246 * so setting 0x11 implies 512M, 0x12 implies 1G...
247 */
248 write_aux_reg(ARC_AUX_IO_COH_AP0_SIZE,
249 order_base_2(ap_size / 1024) - 2);
250
251 /* IOC Aperture start must be aligned to the size of the aperture */
252 if (ap_base % ap_size != 0)
253 panic("IOC Aperture start must be aligned to the size of the aperture");
254
255 write_aux_reg(ARC_AUX_IO_COH_AP0_BASE, ap_base >> 12);
256 write_aux_reg(ARC_AUX_IO_COH_PARTIAL, 1);
257 write_aux_reg(ARC_AUX_IO_COH_ENABLE, 1);
258}
Alexey Brodkinef639e62015-05-18 16:56:26 +0300259
Alexey Brodkin379b3282015-12-14 17:14:46 +0300260static void read_decode_cache_bcr_arcv2(void)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300261{
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300262#ifdef CONFIG_ISA_ARCV2
263
Eugeniy Paltsev88ae27e2018-03-21 15:58:52 +0300264 union bcr_slc_cfg slc_cfg;
265 union bcr_clust_cfg cbcr;
266 union bcr_generic sbcr;
Alexey Brodkin379b3282015-12-14 17:14:46 +0300267
268 sbcr.word = read_aux_reg(ARC_BCR_SLC);
269 if (sbcr.fields.ver) {
270 slc_cfg.word = read_aux_reg(ARC_AUX_SLC_CONFIG);
Eugeniy Paltsev3cf23932017-11-30 17:41:32 +0300271 slc_exists = true;
Alexey Brodkin379b3282015-12-14 17:14:46 +0300272 slc_line_sz = (slc_cfg.fields.lsz == 0) ? 128 : 64;
273 }
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300274
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300275 cbcr.word = read_aux_reg(ARC_BCR_CLUSTER);
Eugeniy Paltsevb0146f92018-01-16 19:20:28 +0300276 if (cbcr.fields.c && ioc_enable)
Eugeniy Paltsev3cf23932017-11-30 17:41:32 +0300277 ioc_exists = true;
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300278
279#endif /* CONFIG_ISA_ARCV2 */
Alexey Brodkin379b3282015-12-14 17:14:46 +0300280}
Alexey Brodkin379b3282015-12-14 17:14:46 +0300281
282void read_decode_cache_bcr(void)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300283{
Alexey Brodkin379b3282015-12-14 17:14:46 +0300284 int dc_line_sz = 0, ic_line_sz = 0;
Eugeniy Paltsev88ae27e2018-03-21 15:58:52 +0300285 union bcr_di_cache ibcr, dbcr;
Alexey Brodkin379b3282015-12-14 17:14:46 +0300286
287 ibcr.word = read_aux_reg(ARC_BCR_IC_BUILD);
288 if (ibcr.fields.ver) {
Eugeniy Paltsev3cf23932017-11-30 17:41:32 +0300289 icache_exists = true;
Alexey Brodkin379b3282015-12-14 17:14:46 +0300290 l1_line_sz = ic_line_sz = 8 << ibcr.fields.line_len;
291 if (!ic_line_sz)
292 panic("Instruction exists but line length is 0\n");
293 }
294
295 dbcr.word = read_aux_reg(ARC_BCR_DC_BUILD);
Eugeniy Paltsev19b10a42018-01-16 19:20:29 +0300296 if (dbcr.fields.ver) {
Eugeniy Paltsev3cf23932017-11-30 17:41:32 +0300297 dcache_exists = true;
Alexey Brodkin379b3282015-12-14 17:14:46 +0300298 l1_line_sz = dc_line_sz = 16 << dbcr.fields.line_len;
299 if (!dc_line_sz)
300 panic("Data cache exists but line length is 0\n");
301 }
302
303 if (ic_line_sz && dc_line_sz && (ic_line_sz != dc_line_sz))
304 panic("Instruction and data cache line lengths differ\n");
Alexey Brodkinef639e62015-05-18 16:56:26 +0300305}
306
307void cache_init(void)
308{
Alexey Brodkin379b3282015-12-14 17:14:46 +0300309 read_decode_cache_bcr();
310
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300311 if (is_isa_arcv2())
312 read_decode_cache_bcr_arcv2();
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300313
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300314 if (is_isa_arcv2() && ioc_exists)
Eugeniy Paltseva6f557c2018-03-21 15:58:51 +0300315 arc_ioc_setup();
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300316
317 read_decode_mmu_bcr();
318
319 /*
320 * ARC_AUX_SLC_RGN_START1 and ARC_AUX_SLC_RGN_END1 register exist
321 * only if PAE exists in current HW. So we had to check pae_exist
322 * before using them.
323 */
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300324 if (is_isa_arcv2() && slc_exists && pae_exists)
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300325 slc_upper_region_init();
Alexey Brodkinef639e62015-05-18 16:56:26 +0300326}
327
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400328int icache_status(void)
329{
Alexey Brodkin379b3282015-12-14 17:14:46 +0300330 if (!icache_exists)
Igor Guryanovf8cf3d12014-12-24 16:07:07 +0300331 return 0;
332
Alexey Brodkinef639e62015-05-18 16:56:26 +0300333 if (read_aux_reg(ARC_AUX_IC_CTRL) & IC_CTRL_CACHE_DISABLE)
334 return 0;
335 else
336 return 1;
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400337}
338
339void icache_enable(void)
340{
Alexey Brodkin379b3282015-12-14 17:14:46 +0300341 if (icache_exists)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300342 write_aux_reg(ARC_AUX_IC_CTRL, read_aux_reg(ARC_AUX_IC_CTRL) &
343 ~IC_CTRL_CACHE_DISABLE);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400344}
345
346void icache_disable(void)
347{
Alexey Brodkin379b3282015-12-14 17:14:46 +0300348 if (icache_exists)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300349 write_aux_reg(ARC_AUX_IC_CTRL, read_aux_reg(ARC_AUX_IC_CTRL) |
350 IC_CTRL_CACHE_DISABLE);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400351}
352
Eugeniy Paltsev16aeee82018-03-21 15:58:46 +0300353/* IC supports only invalidation */
354static inline void __ic_entire_invalidate(void)
355{
356 if (!icache_status())
357 return;
358
359 /* Any write to IC_IVIC register triggers invalidation of entire I$ */
360 write_aux_reg(ARC_AUX_IC_IVIC, 1);
361 /*
362 * As per ARC HS databook (see chapter 5.3.3.2)
363 * it is required to add 3 NOPs after each write to IC_IVIC.
364 */
365 __builtin_arc_nop();
366 __builtin_arc_nop();
367 __builtin_arc_nop();
368 read_aux_reg(ARC_AUX_IC_CTRL); /* blocks */
369}
370
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400371void invalidate_icache_all(void)
372{
Eugeniy Paltsev16aeee82018-03-21 15:58:46 +0300373 __ic_entire_invalidate();
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300374
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300375 if (is_isa_arcv2())
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300376 __slc_entire_op(OP_INV);
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300377}
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400378
379int dcache_status(void)
380{
Alexey Brodkin379b3282015-12-14 17:14:46 +0300381 if (!dcache_exists)
Igor Guryanovf8cf3d12014-12-24 16:07:07 +0300382 return 0;
383
Alexey Brodkinef639e62015-05-18 16:56:26 +0300384 if (read_aux_reg(ARC_AUX_DC_CTRL) & DC_CTRL_CACHE_DISABLE)
385 return 0;
386 else
387 return 1;
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400388}
389
390void dcache_enable(void)
391{
Alexey Brodkin379b3282015-12-14 17:14:46 +0300392 if (!dcache_exists)
Igor Guryanovf8cf3d12014-12-24 16:07:07 +0300393 return;
394
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400395 write_aux_reg(ARC_AUX_DC_CTRL, read_aux_reg(ARC_AUX_DC_CTRL) &
396 ~(DC_CTRL_INV_MODE_FLUSH | DC_CTRL_CACHE_DISABLE));
397}
398
399void dcache_disable(void)
400{
Alexey Brodkin379b3282015-12-14 17:14:46 +0300401 if (!dcache_exists)
Igor Guryanovf8cf3d12014-12-24 16:07:07 +0300402 return;
403
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400404 write_aux_reg(ARC_AUX_DC_CTRL, read_aux_reg(ARC_AUX_DC_CTRL) |
405 DC_CTRL_CACHE_DISABLE);
406}
407
Eugeniy Paltsevc4ef14d2018-03-21 15:58:47 +0300408/* Common Helper for Line Operations on D-cache */
409static inline void __dcache_line_loop(unsigned long paddr, unsigned long sz,
410 const int cacheop)
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400411{
Alexey Brodkinef639e62015-05-18 16:56:26 +0300412 unsigned int aux_cmd;
Alexey Brodkinef639e62015-05-18 16:56:26 +0300413 int num_lines;
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400414
Eugeniy Paltsevc4ef14d2018-03-21 15:58:47 +0300415 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
416 aux_cmd = cacheop & OP_INV ? ARC_AUX_DC_IVDL : ARC_AUX_DC_FLDL;
Alexey Brodkinef639e62015-05-18 16:56:26 +0300417
418 sz += paddr & ~CACHE_LINE_MASK;
419 paddr &= CACHE_LINE_MASK;
420
Alexey Brodkin379b3282015-12-14 17:14:46 +0300421 num_lines = DIV_ROUND_UP(sz, l1_line_sz);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300422
423 while (num_lines-- > 0) {
424#if (CONFIG_ARC_MMU_VER == 3)
Eugeniy Paltsevc4ef14d2018-03-21 15:58:47 +0300425 write_aux_reg(ARC_AUX_DC_PTAG, paddr);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300426#endif
427 write_aux_reg(aux_cmd, paddr);
Alexey Brodkin379b3282015-12-14 17:14:46 +0300428 paddr += l1_line_sz;
Alexey Brodkinef639e62015-05-18 16:56:26 +0300429 }
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400430}
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400431
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300432static void __before_dc_op(const int op)
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400433{
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300434 unsigned int ctrl;
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400435
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300436 ctrl = read_aux_reg(ARC_AUX_DC_CTRL);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400437
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300438 /* IM bit implies flush-n-inv, instead of vanilla inv */
439 if (op == OP_INV)
440 ctrl &= ~DC_CTRL_INV_MODE_FLUSH;
441 else
442 ctrl |= DC_CTRL_INV_MODE_FLUSH;
443
444 write_aux_reg(ARC_AUX_DC_CTRL, ctrl);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400445}
446
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300447static void __after_dc_op(const int op)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300448{
449 if (op & OP_FLUSH) /* flush / flush-n-inv both wait */
Eugeniy Paltsev19b10a42018-01-16 19:20:29 +0300450 while (read_aux_reg(ARC_AUX_DC_CTRL) & DC_CTRL_FLUSH_STATUS);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300451}
452
453static inline void __dc_entire_op(const int cacheop)
454{
455 int aux;
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300456
Eugeniy Paltsevc877a892018-03-21 15:58:53 +0300457 if (!dcache_status())
458 return;
459
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300460 __before_dc_op(cacheop);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300461
462 if (cacheop & OP_INV) /* Inv or flush-n-inv use same cmd reg */
463 aux = ARC_AUX_DC_IVDC;
464 else
465 aux = ARC_AUX_DC_FLSH;
466
467 write_aux_reg(aux, 0x1);
468
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300469 __after_dc_op(cacheop);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300470}
471
472static inline void __dc_line_op(unsigned long paddr, unsigned long sz,
473 const int cacheop)
474{
Eugeniy Paltsevc877a892018-03-21 15:58:53 +0300475 if (!dcache_status())
476 return;
477
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300478 __before_dc_op(cacheop);
Eugeniy Paltsevc4ef14d2018-03-21 15:58:47 +0300479 __dcache_line_loop(paddr, sz, cacheop);
Eugeniy Paltsev5d7a24d2018-03-21 15:58:48 +0300480 __after_dc_op(cacheop);
Alexey Brodkinef639e62015-05-18 16:56:26 +0300481}
Alexey Brodkinef639e62015-05-18 16:56:26 +0300482
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400483void invalidate_dcache_range(unsigned long start, unsigned long end)
484{
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300485 if (start >= end)
486 return;
487
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300488 /*
489 * ARCv1 -> call __dc_line_op
490 * ARCv2 && no IOC -> call __dc_line_op; call __slc_rgn_op
491 * ARCv2 && IOC enabled -> nothing
492 */
493 if (!is_isa_arcv2() || !ioc_exists)
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300494 __dc_line_op(start, end - start, OP_INV);
495
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300496 if (is_isa_arcv2() && !ioc_exists)
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300497 __slc_rgn_op(start, end - start, OP_INV);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400498}
499
Alexey Brodkinef639e62015-05-18 16:56:26 +0300500void flush_dcache_range(unsigned long start, unsigned long end)
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400501{
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300502 if (start >= end)
503 return;
504
Eugeniy Paltsev05c6a262018-03-21 15:58:54 +0300505 /*
506 * ARCv1 -> call __dc_line_op
507 * ARCv2 && no IOC -> call __dc_line_op; call __slc_rgn_op
508 * ARCv2 && IOC enabled -> nothing
509 */
510 if (!is_isa_arcv2() || !ioc_exists)
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300511 __dc_line_op(start, end - start, OP_FLUSH);
512
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300513 if (is_isa_arcv2() && !ioc_exists)
Eugeniy Paltsev41cada42018-01-16 19:20:26 +0300514 __slc_rgn_op(start, end - start, OP_FLUSH);
Alexey Brodkin2f16ac92014-02-04 12:56:14 +0400515}
516
517void flush_cache(unsigned long start, unsigned long size)
518{
519 flush_dcache_range(start, start + size);
520}
Alexey Brodkin6eb15e52015-03-30 13:36:04 +0300521
Eugeniy Paltsevc27814b2018-03-21 15:58:50 +0300522/*
523 * As invalidate_dcache_all() is not used in generic U-Boot code and as we
524 * don't need it in arch/arc code alone (invalidate without flush) we implement
525 * flush_n_invalidate_dcache_all (flush and invalidate in 1 operation) because
526 * it's much safer. See [ NOTE 1 ] for more details.
527 */
528void flush_n_invalidate_dcache_all(void)
Alexey Brodkinef639e62015-05-18 16:56:26 +0300529{
Eugeniy Paltsevc27814b2018-03-21 15:58:50 +0300530 __dc_entire_op(OP_FLUSH_N_INV);
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300531
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300532 if (is_isa_arcv2())
Eugeniy Paltsevc27814b2018-03-21 15:58:50 +0300533 __slc_entire_op(OP_FLUSH_N_INV);
Alexey Brodkin6eb15e52015-03-30 13:36:04 +0300534}
535
Alexey Brodkinef639e62015-05-18 16:56:26 +0300536void flush_dcache_all(void)
Alexey Brodkin6eb15e52015-03-30 13:36:04 +0300537{
Alexey Brodkin2a8382c2016-04-16 15:28:30 +0300538 __dc_entire_op(OP_FLUSH);
Alexey Brodkindb6ce232015-12-14 17:15:13 +0300539
Eugeniy Paltsevea9f6f12018-03-21 15:58:55 +0300540 if (is_isa_arcv2())
Alexey Brodkinef639e62015-05-18 16:56:26 +0300541 __slc_entire_op(OP_FLUSH);
Alexey Brodkin6eb15e52015-03-30 13:36:04 +0300542}