blob: 97dddbefb86a93fa2f1e05275b6f25db3f283644 [file] [log] [blame]
Vineet Gupta95d69762013-01-18 15:12:19 +05301/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05302 * ARC Cache Management
Vineet Gupta95d69762013-01-18 15:12:19 +05303 *
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05304 * Copyright (C) 2014-15 Synopsys, Inc. (www.synopsys.com)
Vineet Gupta95d69762013-01-18 15:12:19 +05305 * 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.
Vineet Gupta95d69762013-01-18 15:12:19 +053010 */
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>
Vineet Gupta4102b532013-05-09 21:54:51 +053019#include <linux/pagemap.h>
Vineet Gupta95d69762013-01-18 15:12:19 +053020#include <asm/cacheflush.h>
21#include <asm/cachectl.h>
22#include <asm/setup.h>
23
Vineet Gupta795f4552015-04-03 12:37:07 +030024static int l2_line_sz;
Alexey Brodkinf2b0b252015-05-25 19:54:28 +030025int ioc_exists;
Alexey Brodkin1648c702015-06-09 11:25:22 +030026volatile int slc_enable = 1, ioc_enable = 1;
Vineet Guptadeaf7562015-10-24 19:31:16 +053027unsigned long perip_base = ARC_UNCACHED_ADDR_SPACE; /* legacy value for boot */
Vineet Gupta26c01c42016-08-26 15:41:29 -070028unsigned long perip_end = 0xFFFFFFFF; /* legacy value */
Vineet Gupta795f4552015-04-03 12:37:07 +030029
Vineet Gupta28b4af72015-09-14 18:43:42 -070030void (*_cache_line_loop_ic_fn)(phys_addr_t paddr, unsigned long vaddr,
Vineet Guptabcc4d652015-06-04 14:39:15 +053031 unsigned long sz, const int cacheop);
32
Vineet Guptaf5db19e2016-03-16 15:04:39 +053033void (*__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);
Alexey Brodkinf2b0b252015-05-25 19:54:28 +030036
Vineet Guptac3441ed2014-02-24 11:42:50 +080037char *arc_cache_mumbojumbo(int c, char *buf, int len)
Vineet Guptaaf617422013-01-18 15:12:24 +053038{
39 int n = 0;
Vineet Guptad1f317d2015-04-06 17:23:57 +053040 struct cpuinfo_arc_cache *p;
Vineet Guptaaf617422013-01-18 15:12:24 +053041
Vineet Guptada40ff42014-06-27 15:49:47 +053042#define PR_CACHE(p, cfg, str) \
Vineet Guptaaf617422013-01-18 15:12:24 +053043 if (!(p)->ver) \
44 n += scnprintf(buf + n, len - n, str"\t\t: N/A\n"); \
45 else \
46 n += scnprintf(buf + n, len - n, \
Vineet Guptada40ff42014-06-27 15:49:47 +053047 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" : "", \
Vineet Gupta964cf282015-10-02 19:20:27 +053051 IS_USED_CFG(cfg));
Vineet Guptaaf617422013-01-18 15:12:24 +053052
Vineet Guptada40ff42014-06-27 15:49:47 +053053 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");
Vineet Guptaaf617422013-01-18 15:12:24 +053055
Vineet Guptafd0881a22015-08-21 15:06:43 +053056 if (!is_isa_arcv2())
57 return buf;
58
Vineet Guptad1f317d2015-04-06 17:23:57 +053059 p = &cpuinfo_arc700[c].slc;
60 if (p->ver)
61 n += scnprintf(buf + n, len - n,
Vineet Gupta79335a22015-06-04 18:30:23 +053062 "SLC\t\t: %uK, %uB Line%s\n",
63 p->sz_k, p->line_len, IS_USED_RUN(slc_enable));
Vineet Guptad1f317d2015-04-06 17:23:57 +053064
Alexey Brodkinf2b0b252015-05-25 19:54:28 +030065 if (ioc_exists)
Alexey Brodkin1648c702015-06-09 11:25:22 +030066 n += scnprintf(buf + n, len - n, "IOC\t\t:%s\n",
Vineet Gupta964cf282015-10-02 19:20:27 +053067 IS_DISABLED_RUN(ioc_enable));
Alexey Brodkinf2b0b252015-05-25 19:54:28 +030068
Vineet Guptaaf617422013-01-18 15:12:24 +053069 return buf;
70}
71
Vineet Gupta95d69762013-01-18 15:12:19 +053072/*
73 * Read the Cache Build Confuration Registers, Decode them and save into
74 * the cpuinfo structure for later use.
75 * No Validation done here, simply read/convert the BCRs
76 */
Vineet Guptafd0881a22015-08-21 15:06:43 +053077static void read_decode_cache_bcr_arcv2(int cpu)
Vineet Gupta95d69762013-01-18 15:12:19 +053078{
Vineet Guptafd0881a22015-08-21 15:06:43 +053079 struct cpuinfo_arc_cache *p_slc = &cpuinfo_arc700[cpu].slc;
Vineet Guptad1f317d2015-04-06 17:23:57 +053080 struct bcr_generic sbcr;
81
82 struct bcr_slc_cfg {
83#ifdef CONFIG_CPU_BIG_ENDIAN
84 unsigned int pad:24, way:2, lsz:2, sz:4;
85#else
86 unsigned int sz:4, lsz:2, way:2, pad:24;
87#endif
88 } slc_cfg;
89
Alexey Brodkinf2b0b252015-05-25 19:54:28 +030090 struct bcr_clust_cfg {
91#ifdef CONFIG_CPU_BIG_ENDIAN
92 unsigned int pad:7, c:1, num_entries:8, num_cores:8, ver:8;
93#else
94 unsigned int ver:8, num_cores:8, num_entries:8, c:1, pad:7;
95#endif
96 } cbcr;
97
Vineet Gupta26c01c42016-08-26 15:41:29 -070098 struct bcr_volatile {
99#ifdef CONFIG_CPU_BIG_ENDIAN
100 unsigned int start:4, limit:4, pad:22, order:1, disable:1;
101#else
102 unsigned int disable:1, order:1, pad:22, limit:4, start:4;
103#endif
104 } vol;
105
106
Vineet Guptafd0881a22015-08-21 15:06:43 +0530107 READ_BCR(ARC_REG_SLC_BCR, sbcr);
108 if (sbcr.ver) {
109 READ_BCR(ARC_REG_SLC_CFG, slc_cfg);
110 p_slc->ver = sbcr.ver;
111 p_slc->sz_k = 128 << slc_cfg.sz;
112 l2_line_sz = p_slc->line_len = (slc_cfg.lsz == 0) ? 128 : 64;
113 }
114
115 READ_BCR(ARC_REG_CLUSTER_BCR, cbcr);
116 if (cbcr.c && ioc_enable)
117 ioc_exists = 1;
Vineet Guptadeaf7562015-10-24 19:31:16 +0530118
Vineet Gupta26c01c42016-08-26 15:41:29 -0700119 /* HS 2.0 didn't have AUX_VOL */
120 if (cpuinfo_arc700[cpu].core.family > 0x51) {
121 READ_BCR(AUX_VOL, vol);
122 perip_base = vol.start << 28;
123 /* HS 3.0 has limit and strict-ordering fields */
124 if (cpuinfo_arc700[cpu].core.family > 0x52)
125 perip_end = (vol.limit << 28) - 1;
126 }
Vineet Guptafd0881a22015-08-21 15:06:43 +0530127}
128
129void read_decode_cache_bcr(void)
130{
131 struct cpuinfo_arc_cache *p_ic, *p_dc;
132 unsigned int cpu = smp_processor_id();
133 struct bcr_cache {
134#ifdef CONFIG_CPU_BIG_ENDIAN
135 unsigned int pad:12, line_len:4, sz:4, config:4, ver:8;
136#else
137 unsigned int ver:8, config:4, sz:4, line_len:4, pad:12;
138#endif
139 } ibcr, dbcr;
140
Vineet Gupta95d69762013-01-18 15:12:19 +0530141 p_ic = &cpuinfo_arc700[cpu].icache;
142 READ_BCR(ARC_REG_IC_BCR, ibcr);
143
Vineet Guptada40ff42014-06-27 15:49:47 +0530144 if (!ibcr.ver)
145 goto dc_chk;
146
Vineet Guptad1f317d2015-04-06 17:23:57 +0530147 if (ibcr.ver <= 3) {
148 BUG_ON(ibcr.config != 3);
149 p_ic->assoc = 2; /* Fixed to 2w set assoc */
150 } else if (ibcr.ver >= 4) {
151 p_ic->assoc = 1 << ibcr.config; /* 1,2,4,8 */
152 }
153
Vineet Gupta95d69762013-01-18 15:12:19 +0530154 p_ic->line_len = 8 << ibcr.line_len;
Vineet Guptada40ff42014-06-27 15:49:47 +0530155 p_ic->sz_k = 1 << (ibcr.sz - 1);
Vineet Gupta95d69762013-01-18 15:12:19 +0530156 p_ic->ver = ibcr.ver;
Vineet Guptada40ff42014-06-27 15:49:47 +0530157 p_ic->vipt = 1;
158 p_ic->alias = p_ic->sz_k/p_ic->assoc/TO_KB(PAGE_SIZE) > 1;
Vineet Gupta95d69762013-01-18 15:12:19 +0530159
Vineet Guptada40ff42014-06-27 15:49:47 +0530160dc_chk:
Vineet Gupta95d69762013-01-18 15:12:19 +0530161 p_dc = &cpuinfo_arc700[cpu].dcache;
162 READ_BCR(ARC_REG_DC_BCR, dbcr);
163
Vineet Guptada40ff42014-06-27 15:49:47 +0530164 if (!dbcr.ver)
Vineet Guptad1f317d2015-04-06 17:23:57 +0530165 goto slc_chk;
Vineet Guptada40ff42014-06-27 15:49:47 +0530166
Vineet Guptad1f317d2015-04-06 17:23:57 +0530167 if (dbcr.ver <= 3) {
168 BUG_ON(dbcr.config != 2);
169 p_dc->assoc = 4; /* Fixed to 4w set assoc */
170 p_dc->vipt = 1;
171 p_dc->alias = p_dc->sz_k/p_dc->assoc/TO_KB(PAGE_SIZE) > 1;
172 } else if (dbcr.ver >= 4) {
173 p_dc->assoc = 1 << dbcr.config; /* 1,2,4,8 */
174 p_dc->vipt = 0;
175 p_dc->alias = 0; /* PIPT so can't VIPT alias */
176 }
177
Vineet Gupta95d69762013-01-18 15:12:19 +0530178 p_dc->line_len = 16 << dbcr.line_len;
Vineet Guptada40ff42014-06-27 15:49:47 +0530179 p_dc->sz_k = 1 << (dbcr.sz - 1);
Vineet Gupta95d69762013-01-18 15:12:19 +0530180 p_dc->ver = dbcr.ver;
Vineet Guptad1f317d2015-04-06 17:23:57 +0530181
182slc_chk:
Vineet Guptafd0881a22015-08-21 15:06:43 +0530183 if (is_isa_arcv2())
184 read_decode_cache_bcr_arcv2(cpu);
Vineet Gupta95d69762013-01-18 15:12:19 +0530185}
186
187/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530188 * Line Operation on {I,D}-Cache
Vineet Gupta95d69762013-01-18 15:12:19 +0530189 */
Vineet Gupta95d69762013-01-18 15:12:19 +0530190
191#define OP_INV 0x1
192#define OP_FLUSH 0x2
193#define OP_FLUSH_N_INV 0x3
Vineet Guptabd129762013-09-05 13:43:03 +0530194#define OP_INV_IC 0x4
195
196/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530197 * I-Cache Aliasing in ARC700 VIPT caches (MMU v1-v3)
198 *
199 * ARC VIPT I-cache uses vaddr to index into cache and paddr to match the tag.
200 * The orig Cache Management Module "CDU" only required paddr to invalidate a
201 * certain line since it sufficed as index in Non-Aliasing VIPT cache-geometry.
202 * Infact for distinct V1,V2,P: all of {V1-P},{V2-P},{P-P} would end up fetching
203 * the exact same line.
204 *
205 * However for larger Caches (way-size > page-size) - i.e. in Aliasing config,
206 * paddr alone could not be used to correctly index the cache.
207 *
208 * ------------------
209 * MMU v1/v2 (Fixed Page Size 8k)
210 * ------------------
211 * The solution was to provide CDU with these additonal vaddr bits. These
212 * would be bits [x:13], x would depend on cache-geometry, 13 comes from
213 * standard page size of 8k.
214 * H/w folks chose [17:13] to be a future safe range, and moreso these 5 bits
215 * of vaddr could easily be "stuffed" in the paddr as bits [4:0] since the
216 * orig 5 bits of paddr were anyways ignored by CDU line ops, as they
217 * represent the offset within cache-line. The adv of using this "clumsy"
218 * interface for additional info was no new reg was needed in CDU programming
219 * model.
220 *
221 * 17:13 represented the max num of bits passable, actual bits needed were
222 * fewer, based on the num-of-aliases possible.
223 * -for 2 alias possibility, only bit 13 needed (32K cache)
224 * -for 4 alias possibility, bits 14:13 needed (64K cache)
225 *
226 * ------------------
227 * MMU v3
228 * ------------------
229 * This ver of MMU supports variable page sizes (1k-16k): although Linux will
230 * only support 8k (default), 16k and 4k.
Andrea Gelmini25474762016-05-21 13:45:35 +0200231 * However from hardware perspective, smaller page sizes aggravate aliasing
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530232 * meaning more vaddr bits needed to disambiguate the cache-line-op ;
233 * the existing scheme of piggybacking won't work for certain configurations.
234 * Two new registers IC_PTAG and DC_PTAG inttoduced.
235 * "tag" bits are provided in PTAG, index bits in existing IVIL/IVDL/FLDL regs
Vineet Guptabd129762013-09-05 13:43:03 +0530236 */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530237
Vineet Gupta11e14892014-08-04 08:32:31 -0700238static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700239void __cache_line_loop_v2(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta11e14892014-08-04 08:32:31 -0700240 unsigned long sz, const int op)
Vineet Guptabd129762013-09-05 13:43:03 +0530241{
Vineet Gupta11e14892014-08-04 08:32:31 -0700242 unsigned int aux_cmd;
Vineet Guptabd129762013-09-05 13:43:03 +0530243 int num_lines;
Vineet Gupta11e14892014-08-04 08:32:31 -0700244 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
Vineet Guptabd129762013-09-05 13:43:03 +0530245
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530246 if (op == OP_INV_IC) {
Vineet Guptabd129762013-09-05 13:43:03 +0530247 aux_cmd = ARC_REG_IC_IVIL;
Vineet Gupta11e14892014-08-04 08:32:31 -0700248 } else {
Vineet Guptabd129762013-09-05 13:43:03 +0530249 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530250 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
Vineet Guptabd129762013-09-05 13:43:03 +0530251 }
252
253 /* Ensure we properly floor/ceil the non-line aligned/sized requests
254 * and have @paddr - aligned to cache line and integral @num_lines.
255 * This however can be avoided for page sized since:
256 * -@paddr will be cache-line aligned already (being page aligned)
257 * -@sz will be integral multiple of line size (being page sized).
258 */
Vineet Gupta11e14892014-08-04 08:32:31 -0700259 if (!full_page) {
Vineet Guptabd129762013-09-05 13:43:03 +0530260 sz += paddr & ~CACHE_LINE_MASK;
261 paddr &= CACHE_LINE_MASK;
262 vaddr &= CACHE_LINE_MASK;
263 }
264
265 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
266
Vineet Guptabd129762013-09-05 13:43:03 +0530267 /* MMUv2 and before: paddr contains stuffed vaddrs bits */
268 paddr |= (vaddr >> PAGE_SHIFT) & 0x1F;
Vineet Guptabd129762013-09-05 13:43:03 +0530269
270 while (num_lines-- > 0) {
Vineet Gupta11e14892014-08-04 08:32:31 -0700271 write_aux_reg(aux_cmd, paddr);
272 paddr += L1_CACHE_BYTES;
273 }
274}
275
Vineet Gupta5a364c22015-02-06 18:44:57 +0300276/*
277 * For ARC700 MMUv3 I-cache and D-cache flushes
278 * Also reused for HS38 aliasing I-cache configuration
279 */
Vineet Gupta11e14892014-08-04 08:32:31 -0700280static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700281void __cache_line_loop_v3(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta11e14892014-08-04 08:32:31 -0700282 unsigned long sz, const int op)
283{
284 unsigned int aux_cmd, aux_tag;
285 int num_lines;
286 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
287
288 if (op == OP_INV_IC) {
289 aux_cmd = ARC_REG_IC_IVIL;
290 aux_tag = ARC_REG_IC_PTAG;
291 } else {
292 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
293 aux_tag = ARC_REG_DC_PTAG;
294 }
295
296 /* Ensure we properly floor/ceil the non-line aligned/sized requests
297 * and have @paddr - aligned to cache line and integral @num_lines.
298 * This however can be avoided for page sized since:
299 * -@paddr will be cache-line aligned already (being page aligned)
300 * -@sz will be integral multiple of line size (being page sized).
301 */
302 if (!full_page) {
303 sz += paddr & ~CACHE_LINE_MASK;
304 paddr &= CACHE_LINE_MASK;
305 vaddr &= CACHE_LINE_MASK;
306 }
307 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
308
309 /*
310 * MMUv3, cache ops require paddr in PTAG reg
311 * if V-P const for loop, PTAG can be written once outside loop
312 */
313 if (full_page)
314 write_aux_reg(aux_tag, paddr);
315
Vineet Gupta5a364c22015-02-06 18:44:57 +0300316 /*
317 * This is technically for MMU v4, using the MMU v3 programming model
Andrea Gelmini25474762016-05-21 13:45:35 +0200318 * Special work for HS38 aliasing I-cache configuration with PAE40
Vineet Gupta5a364c22015-02-06 18:44:57 +0300319 * - upper 8 bits of paddr need to be written into PTAG_HI
320 * - (and needs to be written before the lower 32 bits)
321 * Note that PTAG_HI is hoisted outside the line loop
322 */
323 if (is_pae40_enabled() && op == OP_INV_IC)
324 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
325
Vineet Gupta11e14892014-08-04 08:32:31 -0700326 while (num_lines-- > 0) {
327 if (!full_page) {
Vineet Guptad4599ba2013-09-05 14:45:51 +0530328 write_aux_reg(aux_tag, paddr);
329 paddr += L1_CACHE_BYTES;
330 }
Vineet Guptabd129762013-09-05 13:43:03 +0530331
332 write_aux_reg(aux_cmd, vaddr);
333 vaddr += L1_CACHE_BYTES;
Vineet Guptabd129762013-09-05 13:43:03 +0530334 }
335}
Vineet Gupta95d69762013-01-18 15:12:19 +0530336
Vineet Guptad1f317d2015-04-06 17:23:57 +0530337/*
Vineet Gupta5a364c22015-02-06 18:44:57 +0300338 * In HS38x (MMU v4), I-cache is VIPT (can alias), D-cache is PIPT
339 * Here's how cache ops are implemented
Vineet Guptad1f317d2015-04-06 17:23:57 +0530340 *
Vineet Gupta5a364c22015-02-06 18:44:57 +0300341 * - D-cache: only paddr needed (in DC_IVDL/DC_FLDL)
342 * - I-cache Non Aliasing: Despite VIPT, only paddr needed (in IC_IVIL)
343 * - I-cache Aliasing: Both vaddr and paddr needed (in IC_IVIL, IC_PTAG
344 * respectively, similar to MMU v3 programming model, hence
345 * __cache_line_loop_v3() is used)
346 *
347 * If PAE40 is enabled, independent of aliasing considerations, the higher bits
348 * needs to be written into PTAG_HI
Vineet Guptad1f317d2015-04-06 17:23:57 +0530349 */
350static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700351void __cache_line_loop_v4(phys_addr_t paddr, unsigned long vaddr,
Vineet Guptad1f317d2015-04-06 17:23:57 +0530352 unsigned long sz, const int cacheop)
353{
354 unsigned int aux_cmd;
355 int num_lines;
356 const int full_page_op = __builtin_constant_p(sz) && sz == PAGE_SIZE;
357
358 if (cacheop == OP_INV_IC) {
359 aux_cmd = ARC_REG_IC_IVIL;
360 } else {
361 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
362 aux_cmd = cacheop & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
363 }
364
365 /* Ensure we properly floor/ceil the non-line aligned/sized requests
366 * and have @paddr - aligned to cache line and integral @num_lines.
367 * This however can be avoided for page sized since:
368 * -@paddr will be cache-line aligned already (being page aligned)
369 * -@sz will be integral multiple of line size (being page sized).
370 */
371 if (!full_page_op) {
372 sz += paddr & ~CACHE_LINE_MASK;
373 paddr &= CACHE_LINE_MASK;
374 }
375
376 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
377
Vineet Gupta5a364c22015-02-06 18:44:57 +0300378 /*
379 * For HS38 PAE40 configuration
380 * - upper 8 bits of paddr need to be written into PTAG_HI
381 * - (and needs to be written before the lower 32 bits)
382 */
383 if (is_pae40_enabled()) {
384 if (cacheop == OP_INV_IC)
385 /*
386 * Non aliasing I-cache in HS38,
387 * aliasing I-cache handled in __cache_line_loop_v3()
388 */
389 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
390 else
391 write_aux_reg(ARC_REG_DC_PTAG_HI, (u64)paddr >> 32);
392 }
393
Vineet Guptad1f317d2015-04-06 17:23:57 +0530394 while (num_lines-- > 0) {
395 write_aux_reg(aux_cmd, paddr);
396 paddr += L1_CACHE_BYTES;
397 }
398}
399
Vineet Gupta11e14892014-08-04 08:32:31 -0700400#if (CONFIG_ARC_MMU_VER < 3)
401#define __cache_line_loop __cache_line_loop_v2
402#elif (CONFIG_ARC_MMU_VER == 3)
403#define __cache_line_loop __cache_line_loop_v3
Vineet Guptad1f317d2015-04-06 17:23:57 +0530404#elif (CONFIG_ARC_MMU_VER > 3)
405#define __cache_line_loop __cache_line_loop_v4
Vineet Gupta11e14892014-08-04 08:32:31 -0700406#endif
407
Vineet Gupta95d69762013-01-18 15:12:19 +0530408#ifdef CONFIG_ARC_HAS_DCACHE
409
410/***************************************************************
411 * Machine specific helpers for Entire D-Cache or Per Line ops
412 */
413
Vineet Gupta6c310682015-06-04 08:53:47 +0530414static inline void __before_dc_op(const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530415{
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530416 if (op == OP_FLUSH_N_INV) {
417 /* Dcache provides 2 cmd: FLUSH or INV
418 * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE
419 * flush-n-inv is achieved by INV cmd but with IM=1
420 * So toggle INV sub-mode depending on op request and default
421 */
Vineet Gupta6c310682015-06-04 08:53:47 +0530422 const unsigned int ctl = ARC_REG_DC_CTRL;
423 write_aux_reg(ctl, read_aux_reg(ctl) | DC_CTRL_INV_MODE_FLUSH);
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530424 }
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530425}
426
Vineet Gupta6c310682015-06-04 08:53:47 +0530427static inline void __after_dc_op(const int op)
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530428{
Vineet Gupta6c310682015-06-04 08:53:47 +0530429 if (op & OP_FLUSH) {
430 const unsigned int ctl = ARC_REG_DC_CTRL;
431 unsigned int reg;
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530432
Vineet Gupta6c310682015-06-04 08:53:47 +0530433 /* flush / flush-n-inv both wait */
434 while ((reg = read_aux_reg(ctl)) & DC_CTRL_FLUSH_STATUS)
435 ;
436
437 /* Switch back to default Invalidate mode */
438 if (op == OP_FLUSH_N_INV)
439 write_aux_reg(ctl, reg & ~DC_CTRL_INV_MODE_FLUSH);
440 }
Vineet Gupta95d69762013-01-18 15:12:19 +0530441}
442
443/*
444 * Operation on Entire D-Cache
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530445 * @op = {OP_INV, OP_FLUSH, OP_FLUSH_N_INV}
Vineet Gupta95d69762013-01-18 15:12:19 +0530446 * Note that constant propagation ensures all the checks are gone
447 * in generated code
448 */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530449static inline void __dc_entire_op(const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530450{
Vineet Gupta95d69762013-01-18 15:12:19 +0530451 int aux;
452
Vineet Gupta6c310682015-06-04 08:53:47 +0530453 __before_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530454
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530455 if (op & OP_INV) /* Inv or flush-n-inv use same cmd reg */
Vineet Gupta95d69762013-01-18 15:12:19 +0530456 aux = ARC_REG_DC_IVDC;
457 else
458 aux = ARC_REG_DC_FLSH;
459
460 write_aux_reg(aux, 0x1);
461
Vineet Gupta6c310682015-06-04 08:53:47 +0530462 __after_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530463}
464
Vineet Gupta4102b532013-05-09 21:54:51 +0530465/* For kernel mappings cache operation: index is same as paddr */
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530466#define __dc_line_op_k(p, sz, op) __dc_line_op(p, p, sz, op)
467
Vineet Gupta95d69762013-01-18 15:12:19 +0530468/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530469 * D-Cache Line ops: Per Line INV (discard or wback+discard) or FLUSH (wback)
Vineet Gupta95d69762013-01-18 15:12:19 +0530470 */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700471static inline void __dc_line_op(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530472 unsigned long sz, const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530473{
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530474 unsigned long flags;
Vineet Gupta95d69762013-01-18 15:12:19 +0530475
476 local_irq_save(flags);
477
Vineet Gupta6c310682015-06-04 08:53:47 +0530478 __before_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530479
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530480 __cache_line_loop(paddr, vaddr, sz, op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530481
Vineet Gupta6c310682015-06-04 08:53:47 +0530482 __after_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530483
484 local_irq_restore(flags);
485}
486
487#else
488
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530489#define __dc_entire_op(op)
490#define __dc_line_op(paddr, vaddr, sz, op)
491#define __dc_line_op_k(paddr, sz, op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530492
493#endif /* CONFIG_ARC_HAS_DCACHE */
494
Vineet Gupta95d69762013-01-18 15:12:19 +0530495#ifdef CONFIG_ARC_HAS_ICACHE
496
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530497static inline void __ic_entire_inv(void)
498{
499 write_aux_reg(ARC_REG_IC_IVIC, 1);
500 read_aux_reg(ARC_REG_IC_CTRL); /* blocks */
501}
502
503static inline void
Vineet Gupta28b4af72015-09-14 18:43:42 -0700504__ic_line_inv_vaddr_local(phys_addr_t paddr, unsigned long vaddr,
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530505 unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530506{
507 unsigned long flags;
Vineet Gupta95d69762013-01-18 15:12:19 +0530508
509 local_irq_save(flags);
Vineet Guptabcc4d652015-06-04 14:39:15 +0530510 (*_cache_line_loop_ic_fn)(paddr, vaddr, sz, OP_INV_IC);
Vineet Gupta95d69762013-01-18 15:12:19 +0530511 local_irq_restore(flags);
512}
513
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530514#ifndef CONFIG_SMP
Vineet Gupta336e1992013-06-22 19:22:42 +0530515
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530516#define __ic_line_inv_vaddr(p, v, s) __ic_line_inv_vaddr_local(p, v, s)
517
518#else
519
520struct ic_inv_args {
Vineet Gupta28b4af72015-09-14 18:43:42 -0700521 phys_addr_t paddr, vaddr;
Vineet Gupta2328af02013-02-17 12:51:42 +0200522 int sz;
523};
524
525static void __ic_line_inv_vaddr_helper(void *info)
526{
Noam Camus014018e2014-09-03 14:41:11 +0300527 struct ic_inv_args *ic_inv = info;
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530528
Vineet Gupta2328af02013-02-17 12:51:42 +0200529 __ic_line_inv_vaddr_local(ic_inv->paddr, ic_inv->vaddr, ic_inv->sz);
530}
531
Vineet Gupta28b4af72015-09-14 18:43:42 -0700532static void __ic_line_inv_vaddr(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta2328af02013-02-17 12:51:42 +0200533 unsigned long sz)
534{
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530535 struct ic_inv_args ic_inv = {
536 .paddr = paddr,
537 .vaddr = vaddr,
538 .sz = sz
539 };
540
Vineet Gupta2328af02013-02-17 12:51:42 +0200541 on_each_cpu(__ic_line_inv_vaddr_helper, &ic_inv, 1);
542}
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530543
544#endif /* CONFIG_SMP */
545
546#else /* !CONFIG_ARC_HAS_ICACHE */
Vineet Gupta95d69762013-01-18 15:12:19 +0530547
Vineet Gupta336e1992013-06-22 19:22:42 +0530548#define __ic_entire_inv()
Vineet Gupta95d69762013-01-18 15:12:19 +0530549#define __ic_line_inv_vaddr(pstart, vstart, sz)
550
551#endif /* CONFIG_ARC_HAS_ICACHE */
552
Vineet Gupta28b4af72015-09-14 18:43:42 -0700553noinline void slc_op(phys_addr_t paddr, unsigned long sz, const int op)
Vineet Gupta795f4552015-04-03 12:37:07 +0300554{
555#ifdef CONFIG_ISA_ARCV2
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300556 /*
557 * SLC is shared between all cores and concurrent aux operations from
558 * multiple cores need to be serialized using a spinlock
559 * A concurrent operation can be silently ignored and/or the old/new
560 * operation can remain incomplete forever (lockup in SLC_CTRL_BUSY loop
561 * below)
562 */
563 static DEFINE_SPINLOCK(lock);
Vineet Gupta795f4552015-04-03 12:37:07 +0300564 unsigned long flags;
565 unsigned int ctrl;
566
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300567 spin_lock_irqsave(&lock, flags);
Vineet Gupta795f4552015-04-03 12:37:07 +0300568
569 /*
570 * The Region Flush operation is specified by CTRL.RGN_OP[11..9]
571 * - b'000 (default) is Flush,
572 * - b'001 is Invalidate if CTRL.IM == 0
573 * - b'001 is Flush-n-Invalidate if CTRL.IM == 1
574 */
575 ctrl = read_aux_reg(ARC_REG_SLC_CTRL);
576
577 /* Don't rely on default value of IM bit */
578 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
579 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
580 else
581 ctrl |= SLC_CTRL_IM;
582
583 if (op & OP_INV)
584 ctrl |= SLC_CTRL_RGN_OP_INV; /* Inv or flush-n-inv */
585 else
586 ctrl &= ~SLC_CTRL_RGN_OP_INV;
587
588 write_aux_reg(ARC_REG_SLC_CTRL, ctrl);
589
590 /*
591 * Lower bits are ignored, no need to clip
592 * END needs to be setup before START (latter triggers the operation)
593 * END can't be same as START, so add (l2_line_sz - 1) to sz
594 */
595 write_aux_reg(ARC_REG_SLC_RGN_END, (paddr + sz + l2_line_sz - 1));
596 write_aux_reg(ARC_REG_SLC_RGN_START, paddr);
597
598 while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY);
599
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300600 spin_unlock_irqrestore(&lock, flags);
Vineet Gupta795f4552015-04-03 12:37:07 +0300601#endif
602}
603
Vineet Gupta95d69762013-01-18 15:12:19 +0530604/***********************************************************
605 * Exported APIs
606 */
607
Vineet Gupta4102b532013-05-09 21:54:51 +0530608/*
609 * Handle cache congruency of kernel and userspace mappings of page when kernel
610 * writes-to/reads-from
611 *
612 * The idea is to defer flushing of kernel mapping after a WRITE, possible if:
613 * -dcache is NOT aliasing, hence any U/K-mappings of page are congruent
614 * -U-mapping doesn't exist yet for page (finalised in update_mmu_cache)
615 * -In SMP, if hardware caches are coherent
616 *
617 * There's a corollary case, where kernel READs from a userspace mapped page.
618 * If the U-mapping is not congruent to to K-mapping, former needs flushing.
619 */
Vineet Gupta95d69762013-01-18 15:12:19 +0530620void flush_dcache_page(struct page *page)
621{
Vineet Gupta4102b532013-05-09 21:54:51 +0530622 struct address_space *mapping;
623
624 if (!cache_is_vipt_aliasing()) {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530625 clear_bit(PG_dc_clean, &page->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530626 return;
627 }
628
629 /* don't handle anon pages here */
630 mapping = page_mapping(page);
631 if (!mapping)
632 return;
633
634 /*
635 * pagecache page, file not yet mapped to userspace
636 * Make a note that K-mapping is dirty
637 */
638 if (!mapping_mapped(mapping)) {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530639 clear_bit(PG_dc_clean, &page->flags);
Kirill A. Shutemove1534ae2016-01-15 16:53:46 -0800640 } else if (page_mapcount(page)) {
Vineet Gupta4102b532013-05-09 21:54:51 +0530641
642 /* kernel reading from page with U-mapping */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700643 phys_addr_t paddr = (unsigned long)page_address(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300644 unsigned long vaddr = page->index << PAGE_SHIFT;
Vineet Gupta4102b532013-05-09 21:54:51 +0530645
646 if (addr_not_cache_congruent(paddr, vaddr))
647 __flush_dcache_page(paddr, vaddr);
648 }
Vineet Gupta95d69762013-01-18 15:12:19 +0530649}
650EXPORT_SYMBOL(flush_dcache_page);
651
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300652/*
653 * DMA ops for systems with L1 cache only
654 * Make memory coherent with L1 cache by flushing/invalidating L1 lines
655 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530656static void __dma_cache_wback_inv_l1(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530657{
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530658 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300659}
Vineet Gupta795f4552015-04-03 12:37:07 +0300660
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530661static void __dma_cache_inv_l1(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300662{
663 __dc_line_op_k(start, sz, OP_INV);
664}
665
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530666static void __dma_cache_wback_l1(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300667{
668 __dc_line_op_k(start, sz, OP_FLUSH);
669}
670
671/*
672 * DMA ops for systems with both L1 and L2 caches, but without IOC
Adam Buchbinder7423cc02016-02-23 15:24:55 -0800673 * Both L1 and L2 lines need to be explicitly flushed/invalidated
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300674 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530675static void __dma_cache_wback_inv_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300676{
677 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
678 slc_op(start, sz, OP_FLUSH_N_INV);
679}
680
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530681static void __dma_cache_inv_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300682{
683 __dc_line_op_k(start, sz, OP_INV);
684 slc_op(start, sz, OP_INV);
685}
686
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530687static void __dma_cache_wback_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300688{
689 __dc_line_op_k(start, sz, OP_FLUSH);
690 slc_op(start, sz, OP_FLUSH);
691}
692
693/*
694 * DMA ops for systems with IOC
695 * IOC hardware snoops all DMA traffic keeping the caches consistent with
696 * memory - eliding need for any explicit cache maintenance of DMA buffers
697 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530698static void __dma_cache_wback_inv_ioc(phys_addr_t start, unsigned long sz) {}
699static void __dma_cache_inv_ioc(phys_addr_t start, unsigned long sz) {}
700static void __dma_cache_wback_ioc(phys_addr_t start, unsigned long sz) {}
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300701
702/*
703 * Exported DMA API
704 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530705void dma_cache_wback_inv(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300706{
707 __dma_cache_wback_inv(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530708}
709EXPORT_SYMBOL(dma_cache_wback_inv);
710
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530711void dma_cache_inv(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530712{
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300713 __dma_cache_inv(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530714}
715EXPORT_SYMBOL(dma_cache_inv);
716
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530717void dma_cache_wback(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530718{
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300719 __dma_cache_wback(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530720}
721EXPORT_SYMBOL(dma_cache_wback);
722
723/*
Vineet Gupta7586bf722013-04-12 12:18:25 +0530724 * This is API for making I/D Caches consistent when modifying
725 * kernel code (loadable modules, kprobes, kgdb...)
Vineet Gupta95d69762013-01-18 15:12:19 +0530726 * This is called on insmod, with kernel virtual address for CODE of
727 * the module. ARC cache maintenance ops require PHY address thus we
728 * need to convert vmalloc addr to PHY addr
729 */
730void flush_icache_range(unsigned long kstart, unsigned long kend)
731{
Vineet Guptac59414c2014-09-24 11:36:20 +0530732 unsigned int tot_sz;
Vineet Gupta95d69762013-01-18 15:12:19 +0530733
Vineet Guptac59414c2014-09-24 11:36:20 +0530734 WARN(kstart < TASK_SIZE, "%s() can't handle user vaddr", __func__);
Vineet Gupta95d69762013-01-18 15:12:19 +0530735
736 /* Shortcut for bigger flush ranges.
737 * Here we don't care if this was kernel virtual or phy addr
738 */
739 tot_sz = kend - kstart;
740 if (tot_sz > PAGE_SIZE) {
741 flush_cache_all();
742 return;
743 }
744
745 /* Case: Kernel Phy addr (0x8000_0000 onwards) */
746 if (likely(kstart > PAGE_OFFSET)) {
Vineet Gupta7586bf722013-04-12 12:18:25 +0530747 /*
748 * The 2nd arg despite being paddr will be used to index icache
749 * This is OK since no alternate virtual mappings will exist
750 * given the callers for this case: kprobe/kgdb in built-in
751 * kernel code only.
752 */
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530753 __sync_icache_dcache(kstart, kstart, kend - kstart);
Vineet Gupta95d69762013-01-18 15:12:19 +0530754 return;
755 }
756
757 /*
758 * Case: Kernel Vaddr (0x7000_0000 to 0x7fff_ffff)
759 * (1) ARC Cache Maintenance ops only take Phy addr, hence special
760 * handling of kernel vaddr.
761 *
762 * (2) Despite @tot_sz being < PAGE_SIZE (bigger cases handled already),
763 * it still needs to handle a 2 page scenario, where the range
764 * straddles across 2 virtual pages and hence need for loop
765 */
766 while (tot_sz > 0) {
Vineet Guptac59414c2014-09-24 11:36:20 +0530767 unsigned int off, sz;
768 unsigned long phy, pfn;
769
Vineet Gupta95d69762013-01-18 15:12:19 +0530770 off = kstart % PAGE_SIZE;
771 pfn = vmalloc_to_pfn((void *)kstart);
772 phy = (pfn << PAGE_SHIFT) + off;
773 sz = min_t(unsigned int, tot_sz, PAGE_SIZE - off);
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530774 __sync_icache_dcache(phy, kstart, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530775 kstart += sz;
776 tot_sz -= sz;
777 }
778}
Pranith Kumare3560302014-08-29 15:19:09 -0700779EXPORT_SYMBOL(flush_icache_range);
Vineet Gupta95d69762013-01-18 15:12:19 +0530780
781/*
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530782 * General purpose helper to make I and D cache lines consistent.
783 * @paddr is phy addr of region
Vineet Gupta4b06ff32013-07-10 11:40:27 +0530784 * @vaddr is typically user vaddr (breakpoint) or kernel vaddr (vmalloc)
785 * However in one instance, when called by kprobe (for a breakpt in
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530786 * builtin kernel code) @vaddr will be paddr only, meaning CDU operation will
787 * use a paddr to index the cache (despite VIPT). This is fine since since a
Vineet Gupta4b06ff32013-07-10 11:40:27 +0530788 * builtin kernel page will not have any virtual mappings.
789 * kprobe on loadable module will be kernel vaddr.
Vineet Gupta95d69762013-01-18 15:12:19 +0530790 */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700791void __sync_icache_dcache(phys_addr_t paddr, unsigned long vaddr, int len)
Vineet Gupta95d69762013-01-18 15:12:19 +0530792{
Vineet Guptaf5388812013-05-16 12:19:29 +0530793 __dc_line_op(paddr, vaddr, len, OP_FLUSH_N_INV);
Vineet Gupta2328af02013-02-17 12:51:42 +0200794 __ic_line_inv_vaddr(paddr, vaddr, len);
Vineet Gupta95d69762013-01-18 15:12:19 +0530795}
796
Vineet Gupta24603fd2013-04-11 18:36:35 +0530797/* wrapper to compile time eliminate alignment checks in flush loop */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700798void __inv_icache_page(phys_addr_t paddr, unsigned long vaddr)
Vineet Gupta95d69762013-01-18 15:12:19 +0530799{
Vineet Gupta24603fd2013-04-11 18:36:35 +0530800 __ic_line_inv_vaddr(paddr, vaddr, PAGE_SIZE);
Vineet Gupta95d69762013-01-18 15:12:19 +0530801}
802
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530803/*
804 * wrapper to clearout kernel or userspace mappings of a page
805 * For kernel mappings @vaddr == @paddr
806 */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700807void __flush_dcache_page(phys_addr_t paddr, unsigned long vaddr)
Vineet Guptaeacd0e92013-04-16 14:10:48 +0530808{
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530809 __dc_line_op(paddr, vaddr & PAGE_MASK, PAGE_SIZE, OP_FLUSH_N_INV);
Vineet Guptaeacd0e92013-04-16 14:10:48 +0530810}
811
Vineet Gupta95d69762013-01-18 15:12:19 +0530812noinline void flush_cache_all(void)
813{
814 unsigned long flags;
815
816 local_irq_save(flags);
817
Vineet Gupta336e1992013-06-22 19:22:42 +0530818 __ic_entire_inv();
Vineet Gupta95d69762013-01-18 15:12:19 +0530819 __dc_entire_op(OP_FLUSH_N_INV);
820
821 local_irq_restore(flags);
822
823}
824
Vineet Gupta4102b532013-05-09 21:54:51 +0530825#ifdef CONFIG_ARC_CACHE_VIPT_ALIASING
826
827void flush_cache_mm(struct mm_struct *mm)
828{
829 flush_cache_all();
830}
831
832void flush_cache_page(struct vm_area_struct *vma, unsigned long u_vaddr,
833 unsigned long pfn)
834{
835 unsigned int paddr = pfn << PAGE_SHIFT;
836
Vineet Gupta5971bc72013-05-16 12:23:31 +0530837 u_vaddr &= PAGE_MASK;
838
Vineet Gupta45309492015-05-18 12:46:37 +0530839 __flush_dcache_page(paddr, u_vaddr);
Vineet Gupta5971bc72013-05-16 12:23:31 +0530840
841 if (vma->vm_flags & VM_EXEC)
842 __inv_icache_page(paddr, u_vaddr);
Vineet Gupta4102b532013-05-09 21:54:51 +0530843}
844
845void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
846 unsigned long end)
847{
848 flush_cache_all();
849}
850
Vineet Gupta7bb66f62013-05-25 14:04:25 +0530851void flush_anon_page(struct vm_area_struct *vma, struct page *page,
852 unsigned long u_vaddr)
853{
854 /* TBD: do we really need to clear the kernel mapping */
855 __flush_dcache_page(page_address(page), u_vaddr);
856 __flush_dcache_page(page_address(page), page_address(page));
857
858}
859
860#endif
861
Vineet Gupta4102b532013-05-09 21:54:51 +0530862void copy_user_highpage(struct page *to, struct page *from,
863 unsigned long u_vaddr, struct vm_area_struct *vma)
864{
Vineet Gupta336e2132015-03-05 17:06:31 +0530865 void *kfrom = kmap_atomic(from);
866 void *kto = kmap_atomic(to);
Vineet Gupta4102b532013-05-09 21:54:51 +0530867 int clean_src_k_mappings = 0;
868
869 /*
870 * If SRC page was already mapped in userspace AND it's U-mapping is
871 * not congruent with K-mapping, sync former to physical page so that
872 * K-mapping in memcpy below, sees the right data
873 *
874 * Note that while @u_vaddr refers to DST page's userspace vaddr, it is
875 * equally valid for SRC page as well
Vineet Gupta336e2132015-03-05 17:06:31 +0530876 *
877 * For !VIPT cache, all of this gets compiled out as
878 * addr_not_cache_congruent() is 0
Vineet Gupta4102b532013-05-09 21:54:51 +0530879 */
Kirill A. Shutemove1534ae2016-01-15 16:53:46 -0800880 if (page_mapcount(from) && addr_not_cache_congruent(kfrom, u_vaddr)) {
Vineet Gupta336e2132015-03-05 17:06:31 +0530881 __flush_dcache_page((unsigned long)kfrom, u_vaddr);
Vineet Gupta4102b532013-05-09 21:54:51 +0530882 clean_src_k_mappings = 1;
883 }
884
Vineet Gupta336e2132015-03-05 17:06:31 +0530885 copy_page(kto, kfrom);
Vineet Gupta4102b532013-05-09 21:54:51 +0530886
887 /*
888 * Mark DST page K-mapping as dirty for a later finalization by
889 * update_mmu_cache(). Although the finalization could have been done
890 * here as well (given that both vaddr/paddr are available).
891 * But update_mmu_cache() already has code to do that for other
892 * non copied user pages (e.g. read faults which wire in pagecache page
893 * directly).
894 */
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530895 clear_bit(PG_dc_clean, &to->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530896
897 /*
898 * if SRC was already usermapped and non-congruent to kernel mapping
899 * sync the kernel mapping back to physical page
900 */
901 if (clean_src_k_mappings) {
Vineet Gupta336e2132015-03-05 17:06:31 +0530902 __flush_dcache_page((unsigned long)kfrom, (unsigned long)kfrom);
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530903 set_bit(PG_dc_clean, &from->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530904 } else {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530905 clear_bit(PG_dc_clean, &from->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530906 }
Vineet Gupta336e2132015-03-05 17:06:31 +0530907
908 kunmap_atomic(kto);
909 kunmap_atomic(kfrom);
Vineet Gupta4102b532013-05-09 21:54:51 +0530910}
911
912void clear_user_page(void *to, unsigned long u_vaddr, struct page *page)
913{
914 clear_page(to);
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530915 clear_bit(PG_dc_clean, &page->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530916}
917
Vineet Gupta4102b532013-05-09 21:54:51 +0530918
Vineet Gupta95d69762013-01-18 15:12:19 +0530919/**********************************************************************
920 * Explicit Cache flush request from user space via syscall
921 * Needed for JITs which generate code on the fly
922 */
923SYSCALL_DEFINE3(cacheflush, uint32_t, start, uint32_t, sz, uint32_t, flags)
924{
925 /* TBD: optimize this */
926 flush_cache_all();
927 return 0;
928}
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530929
930void arc_cache_init(void)
931{
932 unsigned int __maybe_unused cpu = smp_processor_id();
933 char str[256];
934
935 printk(arc_cache_mumbojumbo(0, str, sizeof(str)));
936
Vineet Gupta45c3b082016-06-13 16:38:27 +0200937 /*
938 * Only master CPU needs to execute rest of function:
939 * - Assume SMP so all cores will have same cache config so
940 * any geomtry checks will be same for all
941 * - IOC setup / dma callbacks only need to be setup once
942 */
943 if (cpu)
944 return;
945
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530946 if (IS_ENABLED(CONFIG_ARC_HAS_ICACHE)) {
947 struct cpuinfo_arc_cache *ic = &cpuinfo_arc700[cpu].icache;
948
949 if (!ic->ver)
950 panic("cache support enabled but non-existent cache\n");
951
952 if (ic->line_len != L1_CACHE_BYTES)
953 panic("ICache line [%d] != kernel Config [%d]",
954 ic->line_len, L1_CACHE_BYTES);
955
956 if (ic->ver != CONFIG_ARC_MMU_VER)
957 panic("Cache ver [%d] doesn't match MMU ver [%d]\n",
958 ic->ver, CONFIG_ARC_MMU_VER);
Vineet Guptabcc4d652015-06-04 14:39:15 +0530959
960 /*
Andrea Gelmini25474762016-05-21 13:45:35 +0200961 * In MMU v4 (HS38x) the aliasing icache config uses IVIL/PTAG
Vineet Guptabcc4d652015-06-04 14:39:15 +0530962 * pair to provide vaddr/paddr respectively, just as in MMU v3
963 */
964 if (is_isa_arcv2() && ic->alias)
965 _cache_line_loop_ic_fn = __cache_line_loop_v3;
966 else
967 _cache_line_loop_ic_fn = __cache_line_loop;
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530968 }
969
970 if (IS_ENABLED(CONFIG_ARC_HAS_DCACHE)) {
971 struct cpuinfo_arc_cache *dc = &cpuinfo_arc700[cpu].dcache;
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530972
973 if (!dc->ver)
974 panic("cache support enabled but non-existent cache\n");
975
976 if (dc->line_len != L1_CACHE_BYTES)
977 panic("DCache line [%d] != kernel Config [%d]",
978 dc->line_len, L1_CACHE_BYTES);
979
Vineet Guptad1f317d2015-04-06 17:23:57 +0530980 /* check for D-Cache aliasing on ARCompact: ARCv2 has PIPT */
981 if (is_isa_arcompact()) {
982 int handled = IS_ENABLED(CONFIG_ARC_CACHE_VIPT_ALIASING);
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530983
Vineet Guptad1f317d2015-04-06 17:23:57 +0530984 if (dc->alias && !handled)
985 panic("Enable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
986 else if (!dc->alias && handled)
987 panic("Disable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
988 }
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530989 }
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300990
Vineet Gupta79335a22015-06-04 18:30:23 +0530991 if (is_isa_arcv2() && l2_line_sz && !slc_enable) {
992
993 /* IM set : flush before invalidate */
994 write_aux_reg(ARC_REG_SLC_CTRL,
995 read_aux_reg(ARC_REG_SLC_CTRL) | SLC_CTRL_IM);
996
997 write_aux_reg(ARC_REG_SLC_INVALIDATE, 1);
998
999 /* Important to wait for flush to complete */
1000 while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY);
1001 write_aux_reg(ARC_REG_SLC_CTRL,
1002 read_aux_reg(ARC_REG_SLC_CTRL) | SLC_CTRL_DISABLE);
1003 }
1004
Alexey Brodkinf2b0b252015-05-25 19:54:28 +03001005 if (is_isa_arcv2() && ioc_exists) {
1006 /* IO coherency base - 0x8z */
1007 write_aux_reg(ARC_REG_IO_COH_AP0_BASE, 0x80000);
1008 /* IO coherency aperture size - 512Mb: 0x8z-0xAz */
1009 write_aux_reg(ARC_REG_IO_COH_AP0_SIZE, 0x11);
1010 /* Enable partial writes */
1011 write_aux_reg(ARC_REG_IO_COH_PARTIAL, 1);
1012 /* Enable IO coherency */
1013 write_aux_reg(ARC_REG_IO_COH_ENABLE, 1);
1014
1015 __dma_cache_wback_inv = __dma_cache_wback_inv_ioc;
1016 __dma_cache_inv = __dma_cache_inv_ioc;
1017 __dma_cache_wback = __dma_cache_wback_ioc;
Vineet Gupta79335a22015-06-04 18:30:23 +05301018 } else if (is_isa_arcv2() && l2_line_sz && slc_enable) {
Alexey Brodkinf2b0b252015-05-25 19:54:28 +03001019 __dma_cache_wback_inv = __dma_cache_wback_inv_slc;
1020 __dma_cache_inv = __dma_cache_inv_slc;
1021 __dma_cache_wback = __dma_cache_wback_slc;
1022 } else {
1023 __dma_cache_wback_inv = __dma_cache_wback_inv_l1;
1024 __dma_cache_inv = __dma_cache_inv_l1;
1025 __dma_cache_wback = __dma_cache_wback_l1;
1026 }
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301027}