ARC: mm: Move full_page computation into cache version agnostic wrapper
[linux-2.6-block.git] / arch / arc / mm / cache.c
CommitLineData
95d6976d 1/*
8ea2ddff 2 * ARC Cache Management
95d6976d 3 *
8ea2ddff 4 * Copyright (C) 2014-15 Synopsys, Inc. (www.synopsys.com)
95d6976d
VG
5 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
95d6976d
VG
10 */
11
12#include <linux/module.h>
13#include <linux/mm.h>
14#include <linux/sched.h>
15#include <linux/cache.h>
16#include <linux/mmu_context.h>
17#include <linux/syscalls.h>
18#include <linux/uaccess.h>
4102b533 19#include <linux/pagemap.h>
95d6976d
VG
20#include <asm/cacheflush.h>
21#include <asm/cachectl.h>
22#include <asm/setup.h>
23
795f4558 24static int l2_line_sz;
cf986d47 25static int ioc_exists;
d0e73e2a 26int slc_enable = 1, ioc_enable = 1;
deaf7565 27unsigned long perip_base = ARC_UNCACHED_ADDR_SPACE; /* legacy value for boot */
26c01c49 28unsigned long perip_end = 0xFFFFFFFF; /* legacy value */
795f4558 29
28b4af72 30void (*_cache_line_loop_ic_fn)(phys_addr_t paddr, unsigned long vaddr,
7d3d162b 31 unsigned long sz, const int op, const int full_page);
bcc4d65a 32
f5db19e9
VG
33void (*__dma_cache_wback_inv)(phys_addr_t start, unsigned long sz);
34void (*__dma_cache_inv)(phys_addr_t start, unsigned long sz);
35void (*__dma_cache_wback)(phys_addr_t start, unsigned long sz);
f2b0b25a 36
c3441edd 37char *arc_cache_mumbojumbo(int c, char *buf, int len)
af617428
VG
38{
39 int n = 0;
d1f317d8 40 struct cpuinfo_arc_cache *p;
af617428 41
da40ff48 42#define PR_CACHE(p, cfg, str) \
f64915be 43 if (!(p)->line_len) \
af617428
VG
44 n += scnprintf(buf + n, len - n, str"\t\t: N/A\n"); \
45 else \
46 n += scnprintf(buf + n, len - n, \
da40ff48
VG
47 str"\t\t: %uK, %dway/set, %uB Line, %s%s%s\n", \
48 (p)->sz_k, (p)->assoc, (p)->line_len, \
49 (p)->vipt ? "VIPT" : "PIPT", \
50 (p)->alias ? " aliasing" : "", \
964cf28f 51 IS_USED_CFG(cfg));
af617428 52
da40ff48
VG
53 PR_CACHE(&cpuinfo_arc700[c].icache, CONFIG_ARC_HAS_ICACHE, "I-Cache");
54 PR_CACHE(&cpuinfo_arc700[c].dcache, CONFIG_ARC_HAS_DCACHE, "D-Cache");
af617428 55
d1f317d8 56 p = &cpuinfo_arc700[c].slc;
f64915be 57 if (p->line_len)
d1f317d8 58 n += scnprintf(buf + n, len - n,
79335a2c
VG
59 "SLC\t\t: %uK, %uB Line%s\n",
60 p->sz_k, p->line_len, IS_USED_RUN(slc_enable));
d1f317d8 61
711c1f26
VG
62 n += scnprintf(buf + n, len - n, "Peripherals\t: %#lx%s%s\n",
63 perip_base,
64 IS_AVAIL3(ioc_exists, ioc_enable, ", IO-Coherency "));
f2b0b25a 65
af617428
VG
66 return buf;
67}
68
95d6976d
VG
69/*
70 * Read the Cache Build Confuration Registers, Decode them and save into
71 * the cpuinfo structure for later use.
72 * No Validation done here, simply read/convert the BCRs
73 */
fd0881a2 74static void read_decode_cache_bcr_arcv2(int cpu)
95d6976d 75{
fd0881a2 76 struct cpuinfo_arc_cache *p_slc = &cpuinfo_arc700[cpu].slc;
d1f317d8
VG
77 struct bcr_generic sbcr;
78
79 struct bcr_slc_cfg {
80#ifdef CONFIG_CPU_BIG_ENDIAN
81 unsigned int pad:24, way:2, lsz:2, sz:4;
82#else
83 unsigned int sz:4, lsz:2, way:2, pad:24;
84#endif
85 } slc_cfg;
86
f2b0b25a
AB
87 struct bcr_clust_cfg {
88#ifdef CONFIG_CPU_BIG_ENDIAN
89 unsigned int pad:7, c:1, num_entries:8, num_cores:8, ver:8;
90#else
91 unsigned int ver:8, num_cores:8, num_entries:8, c:1, pad:7;
92#endif
93 } cbcr;
94
26c01c49
VG
95 struct bcr_volatile {
96#ifdef CONFIG_CPU_BIG_ENDIAN
97 unsigned int start:4, limit:4, pad:22, order:1, disable:1;
98#else
99 unsigned int disable:1, order:1, pad:22, limit:4, start:4;
100#endif
101 } vol;
102
103
fd0881a2
VG
104 READ_BCR(ARC_REG_SLC_BCR, sbcr);
105 if (sbcr.ver) {
106 READ_BCR(ARC_REG_SLC_CFG, slc_cfg);
fd0881a2
VG
107 p_slc->sz_k = 128 << slc_cfg.sz;
108 l2_line_sz = p_slc->line_len = (slc_cfg.lsz == 0) ? 128 : 64;
109 }
110
111 READ_BCR(ARC_REG_CLUSTER_BCR, cbcr);
cf986d47 112 if (cbcr.c)
fd0881a2 113 ioc_exists = 1;
cf986d47
VG
114 else
115 ioc_enable = 0;
deaf7565 116
26c01c49
VG
117 /* HS 2.0 didn't have AUX_VOL */
118 if (cpuinfo_arc700[cpu].core.family > 0x51) {
119 READ_BCR(AUX_VOL, vol);
120 perip_base = vol.start << 28;
121 /* HS 3.0 has limit and strict-ordering fields */
122 if (cpuinfo_arc700[cpu].core.family > 0x52)
123 perip_end = (vol.limit << 28) - 1;
124 }
fd0881a2
VG
125}
126
127void read_decode_cache_bcr(void)
128{
129 struct cpuinfo_arc_cache *p_ic, *p_dc;
130 unsigned int cpu = smp_processor_id();
131 struct bcr_cache {
132#ifdef CONFIG_CPU_BIG_ENDIAN
133 unsigned int pad:12, line_len:4, sz:4, config:4, ver:8;
134#else
135 unsigned int ver:8, config:4, sz:4, line_len:4, pad:12;
136#endif
137 } ibcr, dbcr;
138
95d6976d
VG
139 p_ic = &cpuinfo_arc700[cpu].icache;
140 READ_BCR(ARC_REG_IC_BCR, ibcr);
141
da40ff48
VG
142 if (!ibcr.ver)
143 goto dc_chk;
144
d1f317d8
VG
145 if (ibcr.ver <= 3) {
146 BUG_ON(ibcr.config != 3);
147 p_ic->assoc = 2; /* Fixed to 2w set assoc */
148 } else if (ibcr.ver >= 4) {
149 p_ic->assoc = 1 << ibcr.config; /* 1,2,4,8 */
150 }
151
95d6976d 152 p_ic->line_len = 8 << ibcr.line_len;
da40ff48 153 p_ic->sz_k = 1 << (ibcr.sz - 1);
da40ff48
VG
154 p_ic->vipt = 1;
155 p_ic->alias = p_ic->sz_k/p_ic->assoc/TO_KB(PAGE_SIZE) > 1;
95d6976d 156
da40ff48 157dc_chk:
95d6976d
VG
158 p_dc = &cpuinfo_arc700[cpu].dcache;
159 READ_BCR(ARC_REG_DC_BCR, dbcr);
160
da40ff48 161 if (!dbcr.ver)
d1f317d8
VG
162 goto slc_chk;
163
164 if (dbcr.ver <= 3) {
165 BUG_ON(dbcr.config != 2);
166 p_dc->assoc = 4; /* Fixed to 4w set assoc */
167 p_dc->vipt = 1;
168 p_dc->alias = p_dc->sz_k/p_dc->assoc/TO_KB(PAGE_SIZE) > 1;
169 } else if (dbcr.ver >= 4) {
170 p_dc->assoc = 1 << dbcr.config; /* 1,2,4,8 */
171 p_dc->vipt = 0;
172 p_dc->alias = 0; /* PIPT so can't VIPT alias */
173 }
da40ff48 174
95d6976d 175 p_dc->line_len = 16 << dbcr.line_len;
da40ff48 176 p_dc->sz_k = 1 << (dbcr.sz - 1);
d1f317d8
VG
177
178slc_chk:
fd0881a2
VG
179 if (is_isa_arcv2())
180 read_decode_cache_bcr_arcv2(cpu);
95d6976d
VG
181}
182
183/*
8ea2ddff 184 * Line Operation on {I,D}-Cache
95d6976d 185 */
95d6976d
VG
186
187#define OP_INV 0x1
188#define OP_FLUSH 0x2
189#define OP_FLUSH_N_INV 0x3
bd12976c
VG
190#define OP_INV_IC 0x4
191
192/*
8ea2ddff
VG
193 * I-Cache Aliasing in ARC700 VIPT caches (MMU v1-v3)
194 *
195 * ARC VIPT I-cache uses vaddr to index into cache and paddr to match the tag.
196 * The orig Cache Management Module "CDU" only required paddr to invalidate a
197 * certain line since it sufficed as index in Non-Aliasing VIPT cache-geometry.
198 * Infact for distinct V1,V2,P: all of {V1-P},{V2-P},{P-P} would end up fetching
199 * the exact same line.
200 *
201 * However for larger Caches (way-size > page-size) - i.e. in Aliasing config,
202 * paddr alone could not be used to correctly index the cache.
203 *
204 * ------------------
205 * MMU v1/v2 (Fixed Page Size 8k)
206 * ------------------
207 * The solution was to provide CDU with these additonal vaddr bits. These
208 * would be bits [x:13], x would depend on cache-geometry, 13 comes from
209 * standard page size of 8k.
210 * H/w folks chose [17:13] to be a future safe range, and moreso these 5 bits
211 * of vaddr could easily be "stuffed" in the paddr as bits [4:0] since the
212 * orig 5 bits of paddr were anyways ignored by CDU line ops, as they
213 * represent the offset within cache-line. The adv of using this "clumsy"
214 * interface for additional info was no new reg was needed in CDU programming
215 * model.
216 *
217 * 17:13 represented the max num of bits passable, actual bits needed were
218 * fewer, based on the num-of-aliases possible.
219 * -for 2 alias possibility, only bit 13 needed (32K cache)
220 * -for 4 alias possibility, bits 14:13 needed (64K cache)
221 *
222 * ------------------
223 * MMU v3
224 * ------------------
225 * This ver of MMU supports variable page sizes (1k-16k): although Linux will
226 * only support 8k (default), 16k and 4k.
2547476a 227 * However from hardware perspective, smaller page sizes aggravate aliasing
8ea2ddff
VG
228 * meaning more vaddr bits needed to disambiguate the cache-line-op ;
229 * the existing scheme of piggybacking won't work for certain configurations.
230 * Two new registers IC_PTAG and DC_PTAG inttoduced.
231 * "tag" bits are provided in PTAG, index bits in existing IVIL/IVDL/FLDL regs
bd12976c 232 */
8ea2ddff 233
11e14896 234static inline
28b4af72 235void __cache_line_loop_v2(phys_addr_t paddr, unsigned long vaddr,
7d3d162b 236 unsigned long sz, const int op, const int full_page)
bd12976c 237{
11e14896 238 unsigned int aux_cmd;
bd12976c
VG
239 int num_lines;
240
8ea2ddff 241 if (op == OP_INV_IC) {
bd12976c 242 aux_cmd = ARC_REG_IC_IVIL;
11e14896 243 } else {
bd12976c 244 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
8ea2ddff 245 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
bd12976c
VG
246 }
247
248 /* Ensure we properly floor/ceil the non-line aligned/sized requests
249 * and have @paddr - aligned to cache line and integral @num_lines.
250 * This however can be avoided for page sized since:
251 * -@paddr will be cache-line aligned already (being page aligned)
252 * -@sz will be integral multiple of line size (being page sized).
253 */
11e14896 254 if (!full_page) {
bd12976c
VG
255 sz += paddr & ~CACHE_LINE_MASK;
256 paddr &= CACHE_LINE_MASK;
257 vaddr &= CACHE_LINE_MASK;
258 }
259
260 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
261
bd12976c
VG
262 /* MMUv2 and before: paddr contains stuffed vaddrs bits */
263 paddr |= (vaddr >> PAGE_SHIFT) & 0x1F;
11e14896
VG
264
265 while (num_lines-- > 0) {
266 write_aux_reg(aux_cmd, paddr);
267 paddr += L1_CACHE_BYTES;
268 }
269}
270
5a364c2a
VG
271/*
272 * For ARC700 MMUv3 I-cache and D-cache flushes
fa84d731
VG
273 * - ARC700 programming model requires paddr and vaddr be passed in seperate
274 * AUX registers (*_IV*L and *_PTAG respectively) irrespective of whether the
275 * caches actually alias or not.
276 * - For HS38, only the aliasing I-cache configuration uses the PTAG reg
277 * (non aliasing I-cache version doesn't; while D-cache can't possibly alias)
5a364c2a 278 */
11e14896 279static inline
28b4af72 280void __cache_line_loop_v3(phys_addr_t paddr, unsigned long vaddr,
7d3d162b 281 unsigned long sz, const int op, const int full_page)
11e14896
VG
282{
283 unsigned int aux_cmd, aux_tag;
284 int num_lines;
11e14896
VG
285
286 if (op == OP_INV_IC) {
287 aux_cmd = ARC_REG_IC_IVIL;
288 aux_tag = ARC_REG_IC_PTAG;
289 } else {
290 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
291 aux_tag = ARC_REG_DC_PTAG;
292 }
293
294 /* Ensure we properly floor/ceil the non-line aligned/sized requests
295 * and have @paddr - aligned to cache line and integral @num_lines.
296 * This however can be avoided for page sized since:
297 * -@paddr will be cache-line aligned already (being page aligned)
298 * -@sz will be integral multiple of line size (being page sized).
299 */
300 if (!full_page) {
301 sz += paddr & ~CACHE_LINE_MASK;
302 paddr &= CACHE_LINE_MASK;
303 vaddr &= CACHE_LINE_MASK;
304 }
305 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
306
307 /*
308 * MMUv3, cache ops require paddr in PTAG reg
309 * if V-P const for loop, PTAG can be written once outside loop
310 */
311 if (full_page)
b053940d 312 write_aux_reg(aux_tag, paddr);
bd12976c 313
5a364c2a
VG
314 /*
315 * This is technically for MMU v4, using the MMU v3 programming model
2547476a 316 * Special work for HS38 aliasing I-cache configuration with PAE40
5a364c2a
VG
317 * - upper 8 bits of paddr need to be written into PTAG_HI
318 * - (and needs to be written before the lower 32 bits)
319 * Note that PTAG_HI is hoisted outside the line loop
320 */
321 if (is_pae40_enabled() && op == OP_INV_IC)
322 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
323
bd12976c 324 while (num_lines-- > 0) {
11e14896 325 if (!full_page) {
d4599baf
VG
326 write_aux_reg(aux_tag, paddr);
327 paddr += L1_CACHE_BYTES;
328 }
bd12976c
VG
329
330 write_aux_reg(aux_cmd, vaddr);
331 vaddr += L1_CACHE_BYTES;
bd12976c
VG
332 }
333}
95d6976d 334
d1f317d8 335/*
5a364c2a
VG
336 * In HS38x (MMU v4), I-cache is VIPT (can alias), D-cache is PIPT
337 * Here's how cache ops are implemented
d1f317d8 338 *
5a364c2a
VG
339 * - D-cache: only paddr needed (in DC_IVDL/DC_FLDL)
340 * - I-cache Non Aliasing: Despite VIPT, only paddr needed (in IC_IVIL)
341 * - I-cache Aliasing: Both vaddr and paddr needed (in IC_IVIL, IC_PTAG
342 * respectively, similar to MMU v3 programming model, hence
343 * __cache_line_loop_v3() is used)
344 *
345 * If PAE40 is enabled, independent of aliasing considerations, the higher bits
346 * needs to be written into PTAG_HI
d1f317d8
VG
347 */
348static inline
28b4af72 349void __cache_line_loop_v4(phys_addr_t paddr, unsigned long vaddr,
7d3d162b 350 unsigned long sz, const int op, const int full_page)
d1f317d8
VG
351{
352 unsigned int aux_cmd;
353 int num_lines;
d1f317d8 354
7d3d162b 355 if (op == OP_INV_IC) {
d1f317d8
VG
356 aux_cmd = ARC_REG_IC_IVIL;
357 } else {
358 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
7d3d162b 359 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
d1f317d8
VG
360 }
361
362 /* Ensure we properly floor/ceil the non-line aligned/sized requests
363 * and have @paddr - aligned to cache line and integral @num_lines.
364 * This however can be avoided for page sized since:
365 * -@paddr will be cache-line aligned already (being page aligned)
366 * -@sz will be integral multiple of line size (being page sized).
367 */
7d3d162b 368 if (!full_page) {
d1f317d8
VG
369 sz += paddr & ~CACHE_LINE_MASK;
370 paddr &= CACHE_LINE_MASK;
371 }
372
373 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
374
5a364c2a
VG
375 /*
376 * For HS38 PAE40 configuration
377 * - upper 8 bits of paddr need to be written into PTAG_HI
378 * - (and needs to be written before the lower 32 bits)
379 */
380 if (is_pae40_enabled()) {
7d3d162b 381 if (op == OP_INV_IC)
5a364c2a
VG
382 /*
383 * Non aliasing I-cache in HS38,
384 * aliasing I-cache handled in __cache_line_loop_v3()
385 */
386 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
387 else
388 write_aux_reg(ARC_REG_DC_PTAG_HI, (u64)paddr >> 32);
389 }
390
d1f317d8
VG
391 while (num_lines-- > 0) {
392 write_aux_reg(aux_cmd, paddr);
393 paddr += L1_CACHE_BYTES;
394 }
395}
396
11e14896
VG
397#if (CONFIG_ARC_MMU_VER < 3)
398#define __cache_line_loop __cache_line_loop_v2
399#elif (CONFIG_ARC_MMU_VER == 3)
400#define __cache_line_loop __cache_line_loop_v3
d1f317d8
VG
401#elif (CONFIG_ARC_MMU_VER > 3)
402#define __cache_line_loop __cache_line_loop_v4
11e14896
VG
403#endif
404
95d6976d
VG
405#ifdef CONFIG_ARC_HAS_DCACHE
406
407/***************************************************************
408 * Machine specific helpers for Entire D-Cache or Per Line ops
409 */
410
6c310681 411static inline void __before_dc_op(const int op)
95d6976d 412{
1b1a22b1
VG
413 if (op == OP_FLUSH_N_INV) {
414 /* Dcache provides 2 cmd: FLUSH or INV
415 * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE
416 * flush-n-inv is achieved by INV cmd but with IM=1
417 * So toggle INV sub-mode depending on op request and default
418 */
6c310681
VG
419 const unsigned int ctl = ARC_REG_DC_CTRL;
420 write_aux_reg(ctl, read_aux_reg(ctl) | DC_CTRL_INV_MODE_FLUSH);
1b1a22b1 421 }
1b1a22b1
VG
422}
423
6c310681 424static inline void __after_dc_op(const int op)
1b1a22b1 425{
6c310681
VG
426 if (op & OP_FLUSH) {
427 const unsigned int ctl = ARC_REG_DC_CTRL;
428 unsigned int reg;
1b1a22b1 429
6c310681
VG
430 /* flush / flush-n-inv both wait */
431 while ((reg = read_aux_reg(ctl)) & DC_CTRL_FLUSH_STATUS)
432 ;
433
434 /* Switch back to default Invalidate mode */
435 if (op == OP_FLUSH_N_INV)
436 write_aux_reg(ctl, reg & ~DC_CTRL_INV_MODE_FLUSH);
437 }
95d6976d
VG
438}
439
440/*
441 * Operation on Entire D-Cache
8ea2ddff 442 * @op = {OP_INV, OP_FLUSH, OP_FLUSH_N_INV}
95d6976d
VG
443 * Note that constant propagation ensures all the checks are gone
444 * in generated code
445 */
8ea2ddff 446static inline void __dc_entire_op(const int op)
95d6976d 447{
95d6976d
VG
448 int aux;
449
6c310681 450 __before_dc_op(op);
95d6976d 451
8ea2ddff 452 if (op & OP_INV) /* Inv or flush-n-inv use same cmd reg */
95d6976d
VG
453 aux = ARC_REG_DC_IVDC;
454 else
455 aux = ARC_REG_DC_FLSH;
456
457 write_aux_reg(aux, 0x1);
458
6c310681 459 __after_dc_op(op);
95d6976d
VG
460}
461
8c47f83b
VG
462static inline void __dc_disable(void)
463{
464 const int r = ARC_REG_DC_CTRL;
465
466 __dc_entire_op(OP_FLUSH_N_INV);
467 write_aux_reg(r, read_aux_reg(r) | DC_CTRL_DIS);
468}
469
470static void __dc_enable(void)
471{
472 const int r = ARC_REG_DC_CTRL;
473
474 write_aux_reg(r, read_aux_reg(r) & ~DC_CTRL_DIS);
475}
476
4102b533 477/* For kernel mappings cache operation: index is same as paddr */
6ec18a81
VG
478#define __dc_line_op_k(p, sz, op) __dc_line_op(p, p, sz, op)
479
95d6976d 480/*
8ea2ddff 481 * D-Cache Line ops: Per Line INV (discard or wback+discard) or FLUSH (wback)
95d6976d 482 */
28b4af72 483static inline void __dc_line_op(phys_addr_t paddr, unsigned long vaddr,
8ea2ddff 484 unsigned long sz, const int op)
95d6976d 485{
7d3d162b 486 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
1b1a22b1 487 unsigned long flags;
95d6976d
VG
488
489 local_irq_save(flags);
490
6c310681 491 __before_dc_op(op);
95d6976d 492
7d3d162b 493 __cache_line_loop(paddr, vaddr, sz, op, full_page);
95d6976d 494
6c310681 495 __after_dc_op(op);
95d6976d
VG
496
497 local_irq_restore(flags);
498}
499
500#else
501
8ea2ddff 502#define __dc_entire_op(op)
8c47f83b
VG
503#define __dc_disable()
504#define __dc_enable()
8ea2ddff
VG
505#define __dc_line_op(paddr, vaddr, sz, op)
506#define __dc_line_op_k(paddr, sz, op)
95d6976d
VG
507
508#endif /* CONFIG_ARC_HAS_DCACHE */
509
95d6976d
VG
510#ifdef CONFIG_ARC_HAS_ICACHE
511
af5abf1b
VG
512static inline void __ic_entire_inv(void)
513{
514 write_aux_reg(ARC_REG_IC_IVIC, 1);
515 read_aux_reg(ARC_REG_IC_CTRL); /* blocks */
516}
517
518static inline void
28b4af72 519__ic_line_inv_vaddr_local(phys_addr_t paddr, unsigned long vaddr,
af5abf1b 520 unsigned long sz)
95d6976d 521{
7d3d162b 522 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
95d6976d 523 unsigned long flags;
95d6976d
VG
524
525 local_irq_save(flags);
7d3d162b 526 (*_cache_line_loop_ic_fn)(paddr, vaddr, sz, OP_INV_IC, full_page);
95d6976d
VG
527 local_irq_restore(flags);
528}
529
af5abf1b
VG
530#ifndef CONFIG_SMP
531
532#define __ic_line_inv_vaddr(p, v, s) __ic_line_inv_vaddr_local(p, v, s)
533
534#else
336e199e 535
af5abf1b 536struct ic_inv_args {
28b4af72 537 phys_addr_t paddr, vaddr;
2328af0c
VG
538 int sz;
539};
540
541static void __ic_line_inv_vaddr_helper(void *info)
542{
014018e0 543 struct ic_inv_args *ic_inv = info;
af5abf1b 544
2328af0c
VG
545 __ic_line_inv_vaddr_local(ic_inv->paddr, ic_inv->vaddr, ic_inv->sz);
546}
547
28b4af72 548static void __ic_line_inv_vaddr(phys_addr_t paddr, unsigned long vaddr,
2328af0c
VG
549 unsigned long sz)
550{
af5abf1b
VG
551 struct ic_inv_args ic_inv = {
552 .paddr = paddr,
553 .vaddr = vaddr,
554 .sz = sz
555 };
556
2328af0c
VG
557 on_each_cpu(__ic_line_inv_vaddr_helper, &ic_inv, 1);
558}
af5abf1b
VG
559
560#endif /* CONFIG_SMP */
561
562#else /* !CONFIG_ARC_HAS_ICACHE */
95d6976d 563
336e199e 564#define __ic_entire_inv()
95d6976d
VG
565#define __ic_line_inv_vaddr(pstart, vstart, sz)
566
567#endif /* CONFIG_ARC_HAS_ICACHE */
568
28b4af72 569noinline void slc_op(phys_addr_t paddr, unsigned long sz, const int op)
795f4558
VG
570{
571#ifdef CONFIG_ISA_ARCV2
b607eddd
AB
572 /*
573 * SLC is shared between all cores and concurrent aux operations from
574 * multiple cores need to be serialized using a spinlock
575 * A concurrent operation can be silently ignored and/or the old/new
576 * operation can remain incomplete forever (lockup in SLC_CTRL_BUSY loop
577 * below)
578 */
579 static DEFINE_SPINLOCK(lock);
795f4558
VG
580 unsigned long flags;
581 unsigned int ctrl;
582
b607eddd 583 spin_lock_irqsave(&lock, flags);
795f4558
VG
584
585 /*
586 * The Region Flush operation is specified by CTRL.RGN_OP[11..9]
587 * - b'000 (default) is Flush,
588 * - b'001 is Invalidate if CTRL.IM == 0
589 * - b'001 is Flush-n-Invalidate if CTRL.IM == 1
590 */
591 ctrl = read_aux_reg(ARC_REG_SLC_CTRL);
592
593 /* Don't rely on default value of IM bit */
594 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
595 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
596 else
597 ctrl |= SLC_CTRL_IM;
598
599 if (op & OP_INV)
600 ctrl |= SLC_CTRL_RGN_OP_INV; /* Inv or flush-n-inv */
601 else
602 ctrl &= ~SLC_CTRL_RGN_OP_INV;
603
604 write_aux_reg(ARC_REG_SLC_CTRL, ctrl);
605
606 /*
607 * Lower bits are ignored, no need to clip
608 * END needs to be setup before START (latter triggers the operation)
609 * END can't be same as START, so add (l2_line_sz - 1) to sz
610 */
611 write_aux_reg(ARC_REG_SLC_RGN_END, (paddr + sz + l2_line_sz - 1));
612 write_aux_reg(ARC_REG_SLC_RGN_START, paddr);
613
614 while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY);
615
b607eddd 616 spin_unlock_irqrestore(&lock, flags);
795f4558
VG
617#endif
618}
619
d4911cdd
VG
620noinline static void slc_entire_op(const int op)
621{
622 unsigned int ctrl, r = ARC_REG_SLC_CTRL;
623
624 ctrl = read_aux_reg(r);
625
626 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
627 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
628 else
629 ctrl |= SLC_CTRL_IM;
630
631 write_aux_reg(r, ctrl);
632
633 write_aux_reg(ARC_REG_SLC_INVALIDATE, 1);
634
c70c4733
AB
635 /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */
636 read_aux_reg(r);
637
d4911cdd
VG
638 /* Important to wait for flush to complete */
639 while (read_aux_reg(r) & SLC_CTRL_BUSY);
640}
641
642static inline void arc_slc_disable(void)
643{
644 const int r = ARC_REG_SLC_CTRL;
645
646 slc_entire_op(OP_FLUSH_N_INV);
647 write_aux_reg(r, read_aux_reg(r) | SLC_CTRL_DIS);
648}
649
650static inline void arc_slc_enable(void)
651{
652 const int r = ARC_REG_SLC_CTRL;
653
654 write_aux_reg(r, read_aux_reg(r) & ~SLC_CTRL_DIS);
655}
656
95d6976d
VG
657/***********************************************************
658 * Exported APIs
659 */
660
4102b533
VG
661/*
662 * Handle cache congruency of kernel and userspace mappings of page when kernel
663 * writes-to/reads-from
664 *
665 * The idea is to defer flushing of kernel mapping after a WRITE, possible if:
666 * -dcache is NOT aliasing, hence any U/K-mappings of page are congruent
667 * -U-mapping doesn't exist yet for page (finalised in update_mmu_cache)
668 * -In SMP, if hardware caches are coherent
669 *
670 * There's a corollary case, where kernel READs from a userspace mapped page.
671 * If the U-mapping is not congruent to to K-mapping, former needs flushing.
672 */
95d6976d
VG
673void flush_dcache_page(struct page *page)
674{
4102b533
VG
675 struct address_space *mapping;
676
677 if (!cache_is_vipt_aliasing()) {
2ed21dae 678 clear_bit(PG_dc_clean, &page->flags);
4102b533
VG
679 return;
680 }
681
682 /* don't handle anon pages here */
683 mapping = page_mapping(page);
684 if (!mapping)
685 return;
686
687 /*
688 * pagecache page, file not yet mapped to userspace
689 * Make a note that K-mapping is dirty
690 */
691 if (!mapping_mapped(mapping)) {
2ed21dae 692 clear_bit(PG_dc_clean, &page->flags);
e1534ae9 693 } else if (page_mapcount(page)) {
4102b533
VG
694
695 /* kernel reading from page with U-mapping */
28b4af72 696 phys_addr_t paddr = (unsigned long)page_address(page);
09cbfeaf 697 unsigned long vaddr = page->index << PAGE_SHIFT;
4102b533
VG
698
699 if (addr_not_cache_congruent(paddr, vaddr))
700 __flush_dcache_page(paddr, vaddr);
701 }
95d6976d
VG
702}
703EXPORT_SYMBOL(flush_dcache_page);
704
f2b0b25a
AB
705/*
706 * DMA ops for systems with L1 cache only
707 * Make memory coherent with L1 cache by flushing/invalidating L1 lines
708 */
f5db19e9 709static void __dma_cache_wback_inv_l1(phys_addr_t start, unsigned long sz)
95d6976d 710{
6ec18a81 711 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
f2b0b25a 712}
795f4558 713
f5db19e9 714static void __dma_cache_inv_l1(phys_addr_t start, unsigned long sz)
f2b0b25a
AB
715{
716 __dc_line_op_k(start, sz, OP_INV);
95d6976d 717}
95d6976d 718
f5db19e9 719static void __dma_cache_wback_l1(phys_addr_t start, unsigned long sz)
f2b0b25a
AB
720{
721 __dc_line_op_k(start, sz, OP_FLUSH);
722}
723
724/*
725 * DMA ops for systems with both L1 and L2 caches, but without IOC
7423cc0c 726 * Both L1 and L2 lines need to be explicitly flushed/invalidated
f2b0b25a 727 */
f5db19e9 728static void __dma_cache_wback_inv_slc(phys_addr_t start, unsigned long sz)
f2b0b25a
AB
729{
730 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
731 slc_op(start, sz, OP_FLUSH_N_INV);
732}
733
f5db19e9 734static void __dma_cache_inv_slc(phys_addr_t start, unsigned long sz)
95d6976d 735{
6ec18a81 736 __dc_line_op_k(start, sz, OP_INV);
f2b0b25a
AB
737 slc_op(start, sz, OP_INV);
738}
795f4558 739
f5db19e9 740static void __dma_cache_wback_slc(phys_addr_t start, unsigned long sz)
f2b0b25a
AB
741{
742 __dc_line_op_k(start, sz, OP_FLUSH);
743 slc_op(start, sz, OP_FLUSH);
744}
745
746/*
747 * DMA ops for systems with IOC
748 * IOC hardware snoops all DMA traffic keeping the caches consistent with
749 * memory - eliding need for any explicit cache maintenance of DMA buffers
750 */
f5db19e9
VG
751static void __dma_cache_wback_inv_ioc(phys_addr_t start, unsigned long sz) {}
752static void __dma_cache_inv_ioc(phys_addr_t start, unsigned long sz) {}
753static void __dma_cache_wback_ioc(phys_addr_t start, unsigned long sz) {}
f2b0b25a
AB
754
755/*
756 * Exported DMA API
757 */
f5db19e9 758void dma_cache_wback_inv(phys_addr_t start, unsigned long sz)
f2b0b25a
AB
759{
760 __dma_cache_wback_inv(start, sz);
761}
762EXPORT_SYMBOL(dma_cache_wback_inv);
763
f5db19e9 764void dma_cache_inv(phys_addr_t start, unsigned long sz)
f2b0b25a
AB
765{
766 __dma_cache_inv(start, sz);
95d6976d
VG
767}
768EXPORT_SYMBOL(dma_cache_inv);
769
f5db19e9 770void dma_cache_wback(phys_addr_t start, unsigned long sz)
95d6976d 771{
f2b0b25a 772 __dma_cache_wback(start, sz);
95d6976d
VG
773}
774EXPORT_SYMBOL(dma_cache_wback);
775
776/*
7586bf72
VG
777 * This is API for making I/D Caches consistent when modifying
778 * kernel code (loadable modules, kprobes, kgdb...)
95d6976d
VG
779 * This is called on insmod, with kernel virtual address for CODE of
780 * the module. ARC cache maintenance ops require PHY address thus we
781 * need to convert vmalloc addr to PHY addr
782 */
783void flush_icache_range(unsigned long kstart, unsigned long kend)
784{
c59414cc 785 unsigned int tot_sz;
95d6976d 786
c59414cc 787 WARN(kstart < TASK_SIZE, "%s() can't handle user vaddr", __func__);
95d6976d
VG
788
789 /* Shortcut for bigger flush ranges.
790 * Here we don't care if this was kernel virtual or phy addr
791 */
792 tot_sz = kend - kstart;
793 if (tot_sz > PAGE_SIZE) {
794 flush_cache_all();
795 return;
796 }
797
798 /* Case: Kernel Phy addr (0x8000_0000 onwards) */
799 if (likely(kstart > PAGE_OFFSET)) {
7586bf72
VG
800 /*
801 * The 2nd arg despite being paddr will be used to index icache
802 * This is OK since no alternate virtual mappings will exist
803 * given the callers for this case: kprobe/kgdb in built-in
804 * kernel code only.
805 */
94bad1af 806 __sync_icache_dcache(kstart, kstart, kend - kstart);
95d6976d
VG
807 return;
808 }
809
810 /*
811 * Case: Kernel Vaddr (0x7000_0000 to 0x7fff_ffff)
812 * (1) ARC Cache Maintenance ops only take Phy addr, hence special
813 * handling of kernel vaddr.
814 *
815 * (2) Despite @tot_sz being < PAGE_SIZE (bigger cases handled already),
816 * it still needs to handle a 2 page scenario, where the range
817 * straddles across 2 virtual pages and hence need for loop
818 */
819 while (tot_sz > 0) {
c59414cc
VG
820 unsigned int off, sz;
821 unsigned long phy, pfn;
822
95d6976d
VG
823 off = kstart % PAGE_SIZE;
824 pfn = vmalloc_to_pfn((void *)kstart);
825 phy = (pfn << PAGE_SHIFT) + off;
826 sz = min_t(unsigned int, tot_sz, PAGE_SIZE - off);
94bad1af 827 __sync_icache_dcache(phy, kstart, sz);
95d6976d
VG
828 kstart += sz;
829 tot_sz -= sz;
830 }
831}
e3560305 832EXPORT_SYMBOL(flush_icache_range);
95d6976d
VG
833
834/*
94bad1af
VG
835 * General purpose helper to make I and D cache lines consistent.
836 * @paddr is phy addr of region
4b06ff35
VG
837 * @vaddr is typically user vaddr (breakpoint) or kernel vaddr (vmalloc)
838 * However in one instance, when called by kprobe (for a breakpt in
94bad1af
VG
839 * builtin kernel code) @vaddr will be paddr only, meaning CDU operation will
840 * use a paddr to index the cache (despite VIPT). This is fine since since a
4b06ff35
VG
841 * builtin kernel page will not have any virtual mappings.
842 * kprobe on loadable module will be kernel vaddr.
95d6976d 843 */
28b4af72 844void __sync_icache_dcache(phys_addr_t paddr, unsigned long vaddr, int len)
95d6976d 845{
f538881c 846 __dc_line_op(paddr, vaddr, len, OP_FLUSH_N_INV);
2328af0c 847 __ic_line_inv_vaddr(paddr, vaddr, len);
95d6976d
VG
848}
849
24603fdd 850/* wrapper to compile time eliminate alignment checks in flush loop */
28b4af72 851void __inv_icache_page(phys_addr_t paddr, unsigned long vaddr)
95d6976d 852{
24603fdd 853 __ic_line_inv_vaddr(paddr, vaddr, PAGE_SIZE);
95d6976d
VG
854}
855
6ec18a81
VG
856/*
857 * wrapper to clearout kernel or userspace mappings of a page
858 * For kernel mappings @vaddr == @paddr
859 */
28b4af72 860void __flush_dcache_page(phys_addr_t paddr, unsigned long vaddr)
eacd0e95 861{
6ec18a81 862 __dc_line_op(paddr, vaddr & PAGE_MASK, PAGE_SIZE, OP_FLUSH_N_INV);
eacd0e95
VG
863}
864
95d6976d
VG
865noinline void flush_cache_all(void)
866{
867 unsigned long flags;
868
869 local_irq_save(flags);
870
336e199e 871 __ic_entire_inv();
95d6976d
VG
872 __dc_entire_op(OP_FLUSH_N_INV);
873
874 local_irq_restore(flags);
875
876}
877
4102b533
VG
878#ifdef CONFIG_ARC_CACHE_VIPT_ALIASING
879
880void flush_cache_mm(struct mm_struct *mm)
881{
882 flush_cache_all();
883}
884
885void flush_cache_page(struct vm_area_struct *vma, unsigned long u_vaddr,
886 unsigned long pfn)
887{
888 unsigned int paddr = pfn << PAGE_SHIFT;
889
5971bc71
VG
890 u_vaddr &= PAGE_MASK;
891
45309493 892 __flush_dcache_page(paddr, u_vaddr);
5971bc71
VG
893
894 if (vma->vm_flags & VM_EXEC)
895 __inv_icache_page(paddr, u_vaddr);
4102b533
VG
896}
897
898void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
899 unsigned long end)
900{
901 flush_cache_all();
902}
903
7bb66f6e
VG
904void flush_anon_page(struct vm_area_struct *vma, struct page *page,
905 unsigned long u_vaddr)
906{
907 /* TBD: do we really need to clear the kernel mapping */
908 __flush_dcache_page(page_address(page), u_vaddr);
909 __flush_dcache_page(page_address(page), page_address(page));
910
911}
912
913#endif
914
4102b533
VG
915void copy_user_highpage(struct page *to, struct page *from,
916 unsigned long u_vaddr, struct vm_area_struct *vma)
917{
336e2136
VG
918 void *kfrom = kmap_atomic(from);
919 void *kto = kmap_atomic(to);
4102b533
VG
920 int clean_src_k_mappings = 0;
921
922 /*
923 * If SRC page was already mapped in userspace AND it's U-mapping is
924 * not congruent with K-mapping, sync former to physical page so that
925 * K-mapping in memcpy below, sees the right data
926 *
927 * Note that while @u_vaddr refers to DST page's userspace vaddr, it is
928 * equally valid for SRC page as well
336e2136
VG
929 *
930 * For !VIPT cache, all of this gets compiled out as
931 * addr_not_cache_congruent() is 0
4102b533 932 */
e1534ae9 933 if (page_mapcount(from) && addr_not_cache_congruent(kfrom, u_vaddr)) {
336e2136 934 __flush_dcache_page((unsigned long)kfrom, u_vaddr);
4102b533
VG
935 clean_src_k_mappings = 1;
936 }
937
336e2136 938 copy_page(kto, kfrom);
4102b533
VG
939
940 /*
941 * Mark DST page K-mapping as dirty for a later finalization by
942 * update_mmu_cache(). Although the finalization could have been done
943 * here as well (given that both vaddr/paddr are available).
944 * But update_mmu_cache() already has code to do that for other
945 * non copied user pages (e.g. read faults which wire in pagecache page
946 * directly).
947 */
2ed21dae 948 clear_bit(PG_dc_clean, &to->flags);
4102b533
VG
949
950 /*
951 * if SRC was already usermapped and non-congruent to kernel mapping
952 * sync the kernel mapping back to physical page
953 */
954 if (clean_src_k_mappings) {
336e2136 955 __flush_dcache_page((unsigned long)kfrom, (unsigned long)kfrom);
2ed21dae 956 set_bit(PG_dc_clean, &from->flags);
4102b533 957 } else {
2ed21dae 958 clear_bit(PG_dc_clean, &from->flags);
4102b533 959 }
336e2136
VG
960
961 kunmap_atomic(kto);
962 kunmap_atomic(kfrom);
4102b533
VG
963}
964
965void clear_user_page(void *to, unsigned long u_vaddr, struct page *page)
966{
967 clear_page(to);
2ed21dae 968 clear_bit(PG_dc_clean, &page->flags);
4102b533
VG
969}
970
4102b533 971
95d6976d
VG
972/**********************************************************************
973 * Explicit Cache flush request from user space via syscall
974 * Needed for JITs which generate code on the fly
975 */
976SYSCALL_DEFINE3(cacheflush, uint32_t, start, uint32_t, sz, uint32_t, flags)
977{
978 /* TBD: optimize this */
979 flush_cache_all();
980 return 0;
981}
8ea2ddff 982
8c47f83b
VG
983/*
984 * IO-Coherency (IOC) setup rules:
985 *
986 * 1. Needs to be at system level, so only once by Master core
987 * Non-Masters need not be accessing caches at that time
988 * - They are either HALT_ON_RESET and kick started much later or
989 * - if run on reset, need to ensure that arc_platform_smp_wait_to_boot()
990 * doesn't perturb caches or coherency unit
991 *
992 * 2. caches (L1 and SLC) need to be purged (flush+inv) before setting up IOC,
993 * otherwise any straggler data might behave strangely post IOC enabling
994 *
995 * 3. All Caches need to be disabled when setting up IOC to elide any in-flight
996 * Coherency transactions
997 */
76894a72 998noinline void __init arc_ioc_setup(void)
d4911cdd 999{
e497c8e5
VG
1000 unsigned int ap_sz;
1001
8c47f83b
VG
1002 /* Flush + invalidate + disable L1 dcache */
1003 __dc_disable();
1004
1005 /* Flush + invalidate SLC */
1006 if (read_aux_reg(ARC_REG_SLC_BCR))
1007 slc_entire_op(OP_FLUSH_N_INV);
1008
1009 /* IOC Aperture start: TDB: handle non default CONFIG_LINUX_LINK_BASE */
d4911cdd 1010 write_aux_reg(ARC_REG_IO_COH_AP0_BASE, 0x80000);
8c47f83b 1011
e497c8e5
VG
1012 /*
1013 * IOC Aperture size:
1014 * decoded as 2 ^ (SIZE + 2) KB: so setting 0x11 implies 512M
1015 * TBD: fix for PGU + 1GB of low mem
1016 * TBD: fix for PAE
1017 */
1018 ap_sz = order_base_2(arc_get_mem_sz()/1024) - 2;
1019 write_aux_reg(ARC_REG_IO_COH_AP0_SIZE, ap_sz);
8c47f83b 1020
d4911cdd
VG
1021 write_aux_reg(ARC_REG_IO_COH_PARTIAL, 1);
1022 write_aux_reg(ARC_REG_IO_COH_ENABLE, 1);
8c47f83b
VG
1023
1024 /* Re-enable L1 dcache */
1025 __dc_enable();
d4911cdd
VG
1026}
1027
76894a72 1028void __init arc_cache_init_master(void)
8ea2ddff
VG
1029{
1030 unsigned int __maybe_unused cpu = smp_processor_id();
45c3b08a 1031
8ea2ddff
VG
1032 if (IS_ENABLED(CONFIG_ARC_HAS_ICACHE)) {
1033 struct cpuinfo_arc_cache *ic = &cpuinfo_arc700[cpu].icache;
1034
f64915be 1035 if (!ic->line_len)
8ea2ddff
VG
1036 panic("cache support enabled but non-existent cache\n");
1037
1038 if (ic->line_len != L1_CACHE_BYTES)
1039 panic("ICache line [%d] != kernel Config [%d]",
1040 ic->line_len, L1_CACHE_BYTES);
1041
bcc4d65a 1042 /*
2547476a 1043 * In MMU v4 (HS38x) the aliasing icache config uses IVIL/PTAG
bcc4d65a
VG
1044 * pair to provide vaddr/paddr respectively, just as in MMU v3
1045 */
1046 if (is_isa_arcv2() && ic->alias)
1047 _cache_line_loop_ic_fn = __cache_line_loop_v3;
1048 else
1049 _cache_line_loop_ic_fn = __cache_line_loop;
8ea2ddff
VG
1050 }
1051
1052 if (IS_ENABLED(CONFIG_ARC_HAS_DCACHE)) {
1053 struct cpuinfo_arc_cache *dc = &cpuinfo_arc700[cpu].dcache;
8ea2ddff 1054
f64915be 1055 if (!dc->line_len)
8ea2ddff
VG
1056 panic("cache support enabled but non-existent cache\n");
1057
1058 if (dc->line_len != L1_CACHE_BYTES)
1059 panic("DCache line [%d] != kernel Config [%d]",
1060 dc->line_len, L1_CACHE_BYTES);
1061
d1f317d8
VG
1062 /* check for D-Cache aliasing on ARCompact: ARCv2 has PIPT */
1063 if (is_isa_arcompact()) {
1064 int handled = IS_ENABLED(CONFIG_ARC_CACHE_VIPT_ALIASING);
08fe0079
VG
1065 int num_colors = dc->sz_k/dc->assoc/TO_KB(PAGE_SIZE);
1066
1067 if (dc->alias) {
1068 if (!handled)
1069 panic("Enable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
1070 if (CACHE_COLORS_NUM != num_colors)
1071 panic("CACHE_COLORS_NUM not optimized for config\n");
1072 } else if (!dc->alias && handled) {
d1f317d8 1073 panic("Disable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
08fe0079 1074 }
d1f317d8 1075 }
8ea2ddff 1076 }
f2b0b25a 1077
d4911cdd
VG
1078 /* Note that SLC disable not formally supported till HS 3.0 */
1079 if (is_isa_arcv2() && l2_line_sz && !slc_enable)
1080 arc_slc_disable();
79335a2c 1081
d4911cdd
VG
1082 if (is_isa_arcv2() && ioc_enable)
1083 arc_ioc_setup();
79335a2c 1084
cf986d47 1085 if (is_isa_arcv2() && ioc_enable) {
f2b0b25a
AB
1086 __dma_cache_wback_inv = __dma_cache_wback_inv_ioc;
1087 __dma_cache_inv = __dma_cache_inv_ioc;
1088 __dma_cache_wback = __dma_cache_wback_ioc;
79335a2c 1089 } else if (is_isa_arcv2() && l2_line_sz && slc_enable) {
f2b0b25a
AB
1090 __dma_cache_wback_inv = __dma_cache_wback_inv_slc;
1091 __dma_cache_inv = __dma_cache_inv_slc;
1092 __dma_cache_wback = __dma_cache_wback_slc;
1093 } else {
1094 __dma_cache_wback_inv = __dma_cache_wback_inv_l1;
1095 __dma_cache_inv = __dma_cache_inv_l1;
1096 __dma_cache_wback = __dma_cache_wback_l1;
1097 }
8ea2ddff 1098}
76894a72
VG
1099
1100void __ref arc_cache_init(void)
1101{
1102 unsigned int __maybe_unused cpu = smp_processor_id();
1103 char str[256];
1104
1105 printk(arc_cache_mumbojumbo(0, str, sizeof(str)));
1106
1107 /*
1108 * Only master CPU needs to execute rest of function:
1109 * - Assume SMP so all cores will have same cache config so
1110 * any geomtry checks will be same for all
1111 * - IOC setup / dma callbacks only need to be setup once
1112 */
1113 if (!cpu)
1114 arc_cache_init_master();
1115}