blob: 518ff76771f3616f6803cbf60fdb32ff03e61752 [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;
Vineet Guptacf986d42016-10-13 15:58:59 -070025static int ioc_exists;
26int 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 Guptabcc4d65a2015-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);
Vineet Guptacf986d42016-10-13 15:58:59 -0700116 if (cbcr.c)
Vineet Guptafd0881a22015-08-21 15:06:43 +0530117 ioc_exists = 1;
Vineet Guptacf986d42016-10-13 15:58:59 -0700118 else
119 ioc_enable = 0;
Vineet Guptadeaf7562015-10-24 19:31:16 +0530120
Vineet Gupta26c01c42016-08-26 15:41:29 -0700121 /* HS 2.0 didn't have AUX_VOL */
122 if (cpuinfo_arc700[cpu].core.family > 0x51) {
123 READ_BCR(AUX_VOL, vol);
124 perip_base = vol.start << 28;
125 /* HS 3.0 has limit and strict-ordering fields */
126 if (cpuinfo_arc700[cpu].core.family > 0x52)
127 perip_end = (vol.limit << 28) - 1;
128 }
Vineet Guptafd0881a22015-08-21 15:06:43 +0530129}
130
131void read_decode_cache_bcr(void)
132{
133 struct cpuinfo_arc_cache *p_ic, *p_dc;
134 unsigned int cpu = smp_processor_id();
135 struct bcr_cache {
136#ifdef CONFIG_CPU_BIG_ENDIAN
137 unsigned int pad:12, line_len:4, sz:4, config:4, ver:8;
138#else
139 unsigned int ver:8, config:4, sz:4, line_len:4, pad:12;
140#endif
141 } ibcr, dbcr;
142
Vineet Gupta95d69762013-01-18 15:12:19 +0530143 p_ic = &cpuinfo_arc700[cpu].icache;
144 READ_BCR(ARC_REG_IC_BCR, ibcr);
145
Vineet Guptada40ff42014-06-27 15:49:47 +0530146 if (!ibcr.ver)
147 goto dc_chk;
148
Vineet Guptad1f317d2015-04-06 17:23:57 +0530149 if (ibcr.ver <= 3) {
150 BUG_ON(ibcr.config != 3);
151 p_ic->assoc = 2; /* Fixed to 2w set assoc */
152 } else if (ibcr.ver >= 4) {
153 p_ic->assoc = 1 << ibcr.config; /* 1,2,4,8 */
154 }
155
Vineet Gupta95d69762013-01-18 15:12:19 +0530156 p_ic->line_len = 8 << ibcr.line_len;
Vineet Guptada40ff42014-06-27 15:49:47 +0530157 p_ic->sz_k = 1 << (ibcr.sz - 1);
Vineet Gupta95d69762013-01-18 15:12:19 +0530158 p_ic->ver = ibcr.ver;
Vineet Guptada40ff42014-06-27 15:49:47 +0530159 p_ic->vipt = 1;
160 p_ic->alias = p_ic->sz_k/p_ic->assoc/TO_KB(PAGE_SIZE) > 1;
Vineet Gupta95d69762013-01-18 15:12:19 +0530161
Vineet Guptada40ff42014-06-27 15:49:47 +0530162dc_chk:
Vineet Gupta95d69762013-01-18 15:12:19 +0530163 p_dc = &cpuinfo_arc700[cpu].dcache;
164 READ_BCR(ARC_REG_DC_BCR, dbcr);
165
Vineet Guptada40ff42014-06-27 15:49:47 +0530166 if (!dbcr.ver)
Vineet Guptad1f317d2015-04-06 17:23:57 +0530167 goto slc_chk;
Vineet Guptada40ff42014-06-27 15:49:47 +0530168
Vineet Guptad1f317d2015-04-06 17:23:57 +0530169 if (dbcr.ver <= 3) {
170 BUG_ON(dbcr.config != 2);
171 p_dc->assoc = 4; /* Fixed to 4w set assoc */
172 p_dc->vipt = 1;
173 p_dc->alias = p_dc->sz_k/p_dc->assoc/TO_KB(PAGE_SIZE) > 1;
174 } else if (dbcr.ver >= 4) {
175 p_dc->assoc = 1 << dbcr.config; /* 1,2,4,8 */
176 p_dc->vipt = 0;
177 p_dc->alias = 0; /* PIPT so can't VIPT alias */
178 }
179
Vineet Gupta95d69762013-01-18 15:12:19 +0530180 p_dc->line_len = 16 << dbcr.line_len;
Vineet Guptada40ff42014-06-27 15:49:47 +0530181 p_dc->sz_k = 1 << (dbcr.sz - 1);
Vineet Gupta95d69762013-01-18 15:12:19 +0530182 p_dc->ver = dbcr.ver;
Vineet Guptad1f317d2015-04-06 17:23:57 +0530183
184slc_chk:
Vineet Guptafd0881a22015-08-21 15:06:43 +0530185 if (is_isa_arcv2())
186 read_decode_cache_bcr_arcv2(cpu);
Vineet Gupta95d69762013-01-18 15:12:19 +0530187}
188
189/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530190 * Line Operation on {I,D}-Cache
Vineet Gupta95d69762013-01-18 15:12:19 +0530191 */
Vineet Gupta95d69762013-01-18 15:12:19 +0530192
193#define OP_INV 0x1
194#define OP_FLUSH 0x2
195#define OP_FLUSH_N_INV 0x3
Vineet Guptabd129762013-09-05 13:43:03 +0530196#define OP_INV_IC 0x4
197
198/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530199 * I-Cache Aliasing in ARC700 VIPT caches (MMU v1-v3)
200 *
201 * ARC VIPT I-cache uses vaddr to index into cache and paddr to match the tag.
202 * The orig Cache Management Module "CDU" only required paddr to invalidate a
203 * certain line since it sufficed as index in Non-Aliasing VIPT cache-geometry.
204 * Infact for distinct V1,V2,P: all of {V1-P},{V2-P},{P-P} would end up fetching
205 * the exact same line.
206 *
207 * However for larger Caches (way-size > page-size) - i.e. in Aliasing config,
208 * paddr alone could not be used to correctly index the cache.
209 *
210 * ------------------
211 * MMU v1/v2 (Fixed Page Size 8k)
212 * ------------------
213 * The solution was to provide CDU with these additonal vaddr bits. These
214 * would be bits [x:13], x would depend on cache-geometry, 13 comes from
215 * standard page size of 8k.
216 * H/w folks chose [17:13] to be a future safe range, and moreso these 5 bits
217 * of vaddr could easily be "stuffed" in the paddr as bits [4:0] since the
218 * orig 5 bits of paddr were anyways ignored by CDU line ops, as they
219 * represent the offset within cache-line. The adv of using this "clumsy"
220 * interface for additional info was no new reg was needed in CDU programming
221 * model.
222 *
223 * 17:13 represented the max num of bits passable, actual bits needed were
224 * fewer, based on the num-of-aliases possible.
225 * -for 2 alias possibility, only bit 13 needed (32K cache)
226 * -for 4 alias possibility, bits 14:13 needed (64K cache)
227 *
228 * ------------------
229 * MMU v3
230 * ------------------
231 * This ver of MMU supports variable page sizes (1k-16k): although Linux will
232 * only support 8k (default), 16k and 4k.
Andrea Gelmini25474762016-05-21 13:45:35 +0200233 * However from hardware perspective, smaller page sizes aggravate aliasing
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530234 * meaning more vaddr bits needed to disambiguate the cache-line-op ;
235 * the existing scheme of piggybacking won't work for certain configurations.
236 * Two new registers IC_PTAG and DC_PTAG inttoduced.
237 * "tag" bits are provided in PTAG, index bits in existing IVIL/IVDL/FLDL regs
Vineet Guptabd129762013-09-05 13:43:03 +0530238 */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530239
Vineet Gupta11e14892014-08-04 08:32:31 -0700240static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700241void __cache_line_loop_v2(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta11e14892014-08-04 08:32:31 -0700242 unsigned long sz, const int op)
Vineet Guptabd129762013-09-05 13:43:03 +0530243{
Vineet Gupta11e14892014-08-04 08:32:31 -0700244 unsigned int aux_cmd;
Vineet Guptabd129762013-09-05 13:43:03 +0530245 int num_lines;
Vineet Gupta11e14892014-08-04 08:32:31 -0700246 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
Vineet Guptabd129762013-09-05 13:43:03 +0530247
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530248 if (op == OP_INV_IC) {
Vineet Guptabd129762013-09-05 13:43:03 +0530249 aux_cmd = ARC_REG_IC_IVIL;
Vineet Gupta11e14892014-08-04 08:32:31 -0700250 } else {
Vineet Guptabd129762013-09-05 13:43:03 +0530251 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530252 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
Vineet Guptabd129762013-09-05 13:43:03 +0530253 }
254
255 /* Ensure we properly floor/ceil the non-line aligned/sized requests
256 * and have @paddr - aligned to cache line and integral @num_lines.
257 * This however can be avoided for page sized since:
258 * -@paddr will be cache-line aligned already (being page aligned)
259 * -@sz will be integral multiple of line size (being page sized).
260 */
Vineet Gupta11e14892014-08-04 08:32:31 -0700261 if (!full_page) {
Vineet Guptabd129762013-09-05 13:43:03 +0530262 sz += paddr & ~CACHE_LINE_MASK;
263 paddr &= CACHE_LINE_MASK;
264 vaddr &= CACHE_LINE_MASK;
265 }
266
267 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
268
Vineet Guptabd129762013-09-05 13:43:03 +0530269 /* MMUv2 and before: paddr contains stuffed vaddrs bits */
270 paddr |= (vaddr >> PAGE_SHIFT) & 0x1F;
Vineet Guptabd129762013-09-05 13:43:03 +0530271
272 while (num_lines-- > 0) {
Vineet Gupta11e14892014-08-04 08:32:31 -0700273 write_aux_reg(aux_cmd, paddr);
274 paddr += L1_CACHE_BYTES;
275 }
276}
277
Vineet Gupta5a364c22015-02-06 18:44:57 +0300278/*
279 * For ARC700 MMUv3 I-cache and D-cache flushes
280 * Also reused for HS38 aliasing I-cache configuration
281 */
Vineet Gupta11e14892014-08-04 08:32:31 -0700282static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700283void __cache_line_loop_v3(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta11e14892014-08-04 08:32:31 -0700284 unsigned long sz, const int op)
285{
286 unsigned int aux_cmd, aux_tag;
287 int num_lines;
288 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
289
290 if (op == OP_INV_IC) {
291 aux_cmd = ARC_REG_IC_IVIL;
292 aux_tag = ARC_REG_IC_PTAG;
293 } else {
294 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
295 aux_tag = ARC_REG_DC_PTAG;
296 }
297
298 /* Ensure we properly floor/ceil the non-line aligned/sized requests
299 * and have @paddr - aligned to cache line and integral @num_lines.
300 * This however can be avoided for page sized since:
301 * -@paddr will be cache-line aligned already (being page aligned)
302 * -@sz will be integral multiple of line size (being page sized).
303 */
304 if (!full_page) {
305 sz += paddr & ~CACHE_LINE_MASK;
306 paddr &= CACHE_LINE_MASK;
307 vaddr &= CACHE_LINE_MASK;
308 }
309 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
310
311 /*
312 * MMUv3, cache ops require paddr in PTAG reg
313 * if V-P const for loop, PTAG can be written once outside loop
314 */
315 if (full_page)
316 write_aux_reg(aux_tag, paddr);
317
Vineet Gupta5a364c22015-02-06 18:44:57 +0300318 /*
319 * This is technically for MMU v4, using the MMU v3 programming model
Andrea Gelmini25474762016-05-21 13:45:35 +0200320 * Special work for HS38 aliasing I-cache configuration with PAE40
Vineet Gupta5a364c22015-02-06 18:44:57 +0300321 * - upper 8 bits of paddr need to be written into PTAG_HI
322 * - (and needs to be written before the lower 32 bits)
323 * Note that PTAG_HI is hoisted outside the line loop
324 */
325 if (is_pae40_enabled() && op == OP_INV_IC)
326 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
327
Vineet Gupta11e14892014-08-04 08:32:31 -0700328 while (num_lines-- > 0) {
329 if (!full_page) {
Vineet Guptad4599ba2013-09-05 14:45:51 +0530330 write_aux_reg(aux_tag, paddr);
331 paddr += L1_CACHE_BYTES;
332 }
Vineet Guptabd129762013-09-05 13:43:03 +0530333
334 write_aux_reg(aux_cmd, vaddr);
335 vaddr += L1_CACHE_BYTES;
Vineet Guptabd129762013-09-05 13:43:03 +0530336 }
337}
Vineet Gupta95d69762013-01-18 15:12:19 +0530338
Vineet Guptad1f317d2015-04-06 17:23:57 +0530339/*
Vineet Gupta5a364c22015-02-06 18:44:57 +0300340 * In HS38x (MMU v4), I-cache is VIPT (can alias), D-cache is PIPT
341 * Here's how cache ops are implemented
Vineet Guptad1f317d2015-04-06 17:23:57 +0530342 *
Vineet Gupta5a364c22015-02-06 18:44:57 +0300343 * - D-cache: only paddr needed (in DC_IVDL/DC_FLDL)
344 * - I-cache Non Aliasing: Despite VIPT, only paddr needed (in IC_IVIL)
345 * - I-cache Aliasing: Both vaddr and paddr needed (in IC_IVIL, IC_PTAG
346 * respectively, similar to MMU v3 programming model, hence
347 * __cache_line_loop_v3() is used)
348 *
349 * If PAE40 is enabled, independent of aliasing considerations, the higher bits
350 * needs to be written into PTAG_HI
Vineet Guptad1f317d2015-04-06 17:23:57 +0530351 */
352static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700353void __cache_line_loop_v4(phys_addr_t paddr, unsigned long vaddr,
Vineet Guptad1f317d2015-04-06 17:23:57 +0530354 unsigned long sz, const int cacheop)
355{
356 unsigned int aux_cmd;
357 int num_lines;
358 const int full_page_op = __builtin_constant_p(sz) && sz == PAGE_SIZE;
359
360 if (cacheop == OP_INV_IC) {
361 aux_cmd = ARC_REG_IC_IVIL;
362 } else {
363 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
364 aux_cmd = cacheop & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
365 }
366
367 /* Ensure we properly floor/ceil the non-line aligned/sized requests
368 * and have @paddr - aligned to cache line and integral @num_lines.
369 * This however can be avoided for page sized since:
370 * -@paddr will be cache-line aligned already (being page aligned)
371 * -@sz will be integral multiple of line size (being page sized).
372 */
373 if (!full_page_op) {
374 sz += paddr & ~CACHE_LINE_MASK;
375 paddr &= CACHE_LINE_MASK;
376 }
377
378 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
379
Vineet Gupta5a364c22015-02-06 18:44:57 +0300380 /*
381 * For HS38 PAE40 configuration
382 * - upper 8 bits of paddr need to be written into PTAG_HI
383 * - (and needs to be written before the lower 32 bits)
384 */
385 if (is_pae40_enabled()) {
386 if (cacheop == OP_INV_IC)
387 /*
388 * Non aliasing I-cache in HS38,
389 * aliasing I-cache handled in __cache_line_loop_v3()
390 */
391 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
392 else
393 write_aux_reg(ARC_REG_DC_PTAG_HI, (u64)paddr >> 32);
394 }
395
Vineet Guptad1f317d2015-04-06 17:23:57 +0530396 while (num_lines-- > 0) {
397 write_aux_reg(aux_cmd, paddr);
398 paddr += L1_CACHE_BYTES;
399 }
400}
401
Vineet Gupta11e14892014-08-04 08:32:31 -0700402#if (CONFIG_ARC_MMU_VER < 3)
403#define __cache_line_loop __cache_line_loop_v2
404#elif (CONFIG_ARC_MMU_VER == 3)
405#define __cache_line_loop __cache_line_loop_v3
Vineet Guptad1f317d2015-04-06 17:23:57 +0530406#elif (CONFIG_ARC_MMU_VER > 3)
407#define __cache_line_loop __cache_line_loop_v4
Vineet Gupta11e14892014-08-04 08:32:31 -0700408#endif
409
Vineet Gupta95d69762013-01-18 15:12:19 +0530410#ifdef CONFIG_ARC_HAS_DCACHE
411
412/***************************************************************
413 * Machine specific helpers for Entire D-Cache or Per Line ops
414 */
415
Vineet Gupta6c310682015-06-04 08:53:47 +0530416static inline void __before_dc_op(const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530417{
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530418 if (op == OP_FLUSH_N_INV) {
419 /* Dcache provides 2 cmd: FLUSH or INV
420 * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE
421 * flush-n-inv is achieved by INV cmd but with IM=1
422 * So toggle INV sub-mode depending on op request and default
423 */
Vineet Gupta6c310682015-06-04 08:53:47 +0530424 const unsigned int ctl = ARC_REG_DC_CTRL;
425 write_aux_reg(ctl, read_aux_reg(ctl) | DC_CTRL_INV_MODE_FLUSH);
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530426 }
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530427}
428
Vineet Gupta6c310682015-06-04 08:53:47 +0530429static inline void __after_dc_op(const int op)
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530430{
Vineet Gupta6c310682015-06-04 08:53:47 +0530431 if (op & OP_FLUSH) {
432 const unsigned int ctl = ARC_REG_DC_CTRL;
433 unsigned int reg;
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530434
Vineet Gupta6c310682015-06-04 08:53:47 +0530435 /* flush / flush-n-inv both wait */
436 while ((reg = read_aux_reg(ctl)) & DC_CTRL_FLUSH_STATUS)
437 ;
438
439 /* Switch back to default Invalidate mode */
440 if (op == OP_FLUSH_N_INV)
441 write_aux_reg(ctl, reg & ~DC_CTRL_INV_MODE_FLUSH);
442 }
Vineet Gupta95d69762013-01-18 15:12:19 +0530443}
444
445/*
446 * Operation on Entire D-Cache
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530447 * @op = {OP_INV, OP_FLUSH, OP_FLUSH_N_INV}
Vineet Gupta95d69762013-01-18 15:12:19 +0530448 * Note that constant propagation ensures all the checks are gone
449 * in generated code
450 */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530451static inline void __dc_entire_op(const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530452{
Vineet Gupta95d69762013-01-18 15:12:19 +0530453 int aux;
454
Vineet Gupta6c310682015-06-04 08:53:47 +0530455 __before_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530456
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530457 if (op & OP_INV) /* Inv or flush-n-inv use same cmd reg */
Vineet Gupta95d69762013-01-18 15:12:19 +0530458 aux = ARC_REG_DC_IVDC;
459 else
460 aux = ARC_REG_DC_FLSH;
461
462 write_aux_reg(aux, 0x1);
463
Vineet Gupta6c310682015-06-04 08:53:47 +0530464 __after_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530465}
466
Vineet Gupta4102b532013-05-09 21:54:51 +0530467/* For kernel mappings cache operation: index is same as paddr */
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530468#define __dc_line_op_k(p, sz, op) __dc_line_op(p, p, sz, op)
469
Vineet Gupta95d69762013-01-18 15:12:19 +0530470/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530471 * D-Cache Line ops: Per Line INV (discard or wback+discard) or FLUSH (wback)
Vineet Gupta95d69762013-01-18 15:12:19 +0530472 */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700473static inline void __dc_line_op(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530474 unsigned long sz, const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530475{
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530476 unsigned long flags;
Vineet Gupta95d69762013-01-18 15:12:19 +0530477
478 local_irq_save(flags);
479
Vineet Gupta6c310682015-06-04 08:53:47 +0530480 __before_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530481
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530482 __cache_line_loop(paddr, vaddr, sz, op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530483
Vineet Gupta6c310682015-06-04 08:53:47 +0530484 __after_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530485
486 local_irq_restore(flags);
487}
488
489#else
490
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530491#define __dc_entire_op(op)
492#define __dc_line_op(paddr, vaddr, sz, op)
493#define __dc_line_op_k(paddr, sz, op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530494
495#endif /* CONFIG_ARC_HAS_DCACHE */
496
Vineet Gupta95d69762013-01-18 15:12:19 +0530497#ifdef CONFIG_ARC_HAS_ICACHE
498
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530499static inline void __ic_entire_inv(void)
500{
501 write_aux_reg(ARC_REG_IC_IVIC, 1);
502 read_aux_reg(ARC_REG_IC_CTRL); /* blocks */
503}
504
505static inline void
Vineet Gupta28b4af72015-09-14 18:43:42 -0700506__ic_line_inv_vaddr_local(phys_addr_t paddr, unsigned long vaddr,
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530507 unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530508{
509 unsigned long flags;
Vineet Gupta95d69762013-01-18 15:12:19 +0530510
511 local_irq_save(flags);
Vineet Guptabcc4d65a2015-06-04 14:39:15 +0530512 (*_cache_line_loop_ic_fn)(paddr, vaddr, sz, OP_INV_IC);
Vineet Gupta95d69762013-01-18 15:12:19 +0530513 local_irq_restore(flags);
514}
515
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530516#ifndef CONFIG_SMP
Vineet Gupta336e1992013-06-22 19:22:42 +0530517
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530518#define __ic_line_inv_vaddr(p, v, s) __ic_line_inv_vaddr_local(p, v, s)
519
520#else
521
522struct ic_inv_args {
Vineet Gupta28b4af72015-09-14 18:43:42 -0700523 phys_addr_t paddr, vaddr;
Vineet Gupta2328af02013-02-17 12:51:42 +0200524 int sz;
525};
526
527static void __ic_line_inv_vaddr_helper(void *info)
528{
Noam Camus014018e2014-09-03 14:41:11 +0300529 struct ic_inv_args *ic_inv = info;
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530530
Vineet Gupta2328af02013-02-17 12:51:42 +0200531 __ic_line_inv_vaddr_local(ic_inv->paddr, ic_inv->vaddr, ic_inv->sz);
532}
533
Vineet Gupta28b4af72015-09-14 18:43:42 -0700534static void __ic_line_inv_vaddr(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta2328af02013-02-17 12:51:42 +0200535 unsigned long sz)
536{
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530537 struct ic_inv_args ic_inv = {
538 .paddr = paddr,
539 .vaddr = vaddr,
540 .sz = sz
541 };
542
Vineet Gupta2328af02013-02-17 12:51:42 +0200543 on_each_cpu(__ic_line_inv_vaddr_helper, &ic_inv, 1);
544}
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530545
546#endif /* CONFIG_SMP */
547
548#else /* !CONFIG_ARC_HAS_ICACHE */
Vineet Gupta95d69762013-01-18 15:12:19 +0530549
Vineet Gupta336e1992013-06-22 19:22:42 +0530550#define __ic_entire_inv()
Vineet Gupta95d69762013-01-18 15:12:19 +0530551#define __ic_line_inv_vaddr(pstart, vstart, sz)
552
553#endif /* CONFIG_ARC_HAS_ICACHE */
554
Vineet Gupta28b4af72015-09-14 18:43:42 -0700555noinline void slc_op(phys_addr_t paddr, unsigned long sz, const int op)
Vineet Gupta795f4552015-04-03 12:37:07 +0300556{
557#ifdef CONFIG_ISA_ARCV2
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300558 /*
559 * SLC is shared between all cores and concurrent aux operations from
560 * multiple cores need to be serialized using a spinlock
561 * A concurrent operation can be silently ignored and/or the old/new
562 * operation can remain incomplete forever (lockup in SLC_CTRL_BUSY loop
563 * below)
564 */
565 static DEFINE_SPINLOCK(lock);
Vineet Gupta795f4552015-04-03 12:37:07 +0300566 unsigned long flags;
567 unsigned int ctrl;
568
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300569 spin_lock_irqsave(&lock, flags);
Vineet Gupta795f4552015-04-03 12:37:07 +0300570
571 /*
572 * The Region Flush operation is specified by CTRL.RGN_OP[11..9]
573 * - b'000 (default) is Flush,
574 * - b'001 is Invalidate if CTRL.IM == 0
575 * - b'001 is Flush-n-Invalidate if CTRL.IM == 1
576 */
577 ctrl = read_aux_reg(ARC_REG_SLC_CTRL);
578
579 /* Don't rely on default value of IM bit */
580 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
581 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
582 else
583 ctrl |= SLC_CTRL_IM;
584
585 if (op & OP_INV)
586 ctrl |= SLC_CTRL_RGN_OP_INV; /* Inv or flush-n-inv */
587 else
588 ctrl &= ~SLC_CTRL_RGN_OP_INV;
589
590 write_aux_reg(ARC_REG_SLC_CTRL, ctrl);
591
592 /*
593 * Lower bits are ignored, no need to clip
594 * END needs to be setup before START (latter triggers the operation)
595 * END can't be same as START, so add (l2_line_sz - 1) to sz
596 */
597 write_aux_reg(ARC_REG_SLC_RGN_END, (paddr + sz + l2_line_sz - 1));
598 write_aux_reg(ARC_REG_SLC_RGN_START, paddr);
599
600 while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY);
601
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300602 spin_unlock_irqrestore(&lock, flags);
Vineet Gupta795f4552015-04-03 12:37:07 +0300603#endif
604}
605
Vineet Gupta95d69762013-01-18 15:12:19 +0530606/***********************************************************
607 * Exported APIs
608 */
609
Vineet Gupta4102b532013-05-09 21:54:51 +0530610/*
611 * Handle cache congruency of kernel and userspace mappings of page when kernel
612 * writes-to/reads-from
613 *
614 * The idea is to defer flushing of kernel mapping after a WRITE, possible if:
615 * -dcache is NOT aliasing, hence any U/K-mappings of page are congruent
616 * -U-mapping doesn't exist yet for page (finalised in update_mmu_cache)
617 * -In SMP, if hardware caches are coherent
618 *
619 * There's a corollary case, where kernel READs from a userspace mapped page.
620 * If the U-mapping is not congruent to to K-mapping, former needs flushing.
621 */
Vineet Gupta95d69762013-01-18 15:12:19 +0530622void flush_dcache_page(struct page *page)
623{
Vineet Gupta4102b532013-05-09 21:54:51 +0530624 struct address_space *mapping;
625
626 if (!cache_is_vipt_aliasing()) {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530627 clear_bit(PG_dc_clean, &page->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530628 return;
629 }
630
631 /* don't handle anon pages here */
632 mapping = page_mapping(page);
633 if (!mapping)
634 return;
635
636 /*
637 * pagecache page, file not yet mapped to userspace
638 * Make a note that K-mapping is dirty
639 */
640 if (!mapping_mapped(mapping)) {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530641 clear_bit(PG_dc_clean, &page->flags);
Kirill A. Shutemove1534ae2016-01-15 16:53:46 -0800642 } else if (page_mapcount(page)) {
Vineet Gupta4102b532013-05-09 21:54:51 +0530643
644 /* kernel reading from page with U-mapping */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700645 phys_addr_t paddr = (unsigned long)page_address(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300646 unsigned long vaddr = page->index << PAGE_SHIFT;
Vineet Gupta4102b532013-05-09 21:54:51 +0530647
648 if (addr_not_cache_congruent(paddr, vaddr))
649 __flush_dcache_page(paddr, vaddr);
650 }
Vineet Gupta95d69762013-01-18 15:12:19 +0530651}
652EXPORT_SYMBOL(flush_dcache_page);
653
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300654/*
655 * DMA ops for systems with L1 cache only
656 * Make memory coherent with L1 cache by flushing/invalidating L1 lines
657 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530658static void __dma_cache_wback_inv_l1(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530659{
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530660 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300661}
Vineet Gupta795f4552015-04-03 12:37:07 +0300662
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530663static void __dma_cache_inv_l1(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300664{
665 __dc_line_op_k(start, sz, OP_INV);
666}
667
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530668static void __dma_cache_wback_l1(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300669{
670 __dc_line_op_k(start, sz, OP_FLUSH);
671}
672
673/*
674 * DMA ops for systems with both L1 and L2 caches, but without IOC
Adam Buchbinder7423cc02016-02-23 15:24:55 -0800675 * Both L1 and L2 lines need to be explicitly flushed/invalidated
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300676 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530677static void __dma_cache_wback_inv_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300678{
679 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
680 slc_op(start, sz, OP_FLUSH_N_INV);
681}
682
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530683static void __dma_cache_inv_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300684{
685 __dc_line_op_k(start, sz, OP_INV);
686 slc_op(start, sz, OP_INV);
687}
688
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530689static void __dma_cache_wback_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300690{
691 __dc_line_op_k(start, sz, OP_FLUSH);
692 slc_op(start, sz, OP_FLUSH);
693}
694
695/*
696 * DMA ops for systems with IOC
697 * IOC hardware snoops all DMA traffic keeping the caches consistent with
698 * memory - eliding need for any explicit cache maintenance of DMA buffers
699 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530700static void __dma_cache_wback_inv_ioc(phys_addr_t start, unsigned long sz) {}
701static void __dma_cache_inv_ioc(phys_addr_t start, unsigned long sz) {}
702static void __dma_cache_wback_ioc(phys_addr_t start, unsigned long sz) {}
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300703
704/*
705 * Exported DMA API
706 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530707void dma_cache_wback_inv(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300708{
709 __dma_cache_wback_inv(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530710}
711EXPORT_SYMBOL(dma_cache_wback_inv);
712
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530713void dma_cache_inv(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530714{
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300715 __dma_cache_inv(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530716}
717EXPORT_SYMBOL(dma_cache_inv);
718
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530719void dma_cache_wback(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530720{
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300721 __dma_cache_wback(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530722}
723EXPORT_SYMBOL(dma_cache_wback);
724
725/*
Vineet Gupta7586bf722013-04-12 12:18:25 +0530726 * This is API for making I/D Caches consistent when modifying
727 * kernel code (loadable modules, kprobes, kgdb...)
Vineet Gupta95d69762013-01-18 15:12:19 +0530728 * This is called on insmod, with kernel virtual address for CODE of
729 * the module. ARC cache maintenance ops require PHY address thus we
730 * need to convert vmalloc addr to PHY addr
731 */
732void flush_icache_range(unsigned long kstart, unsigned long kend)
733{
Vineet Guptac59414c2014-09-24 11:36:20 +0530734 unsigned int tot_sz;
Vineet Gupta95d69762013-01-18 15:12:19 +0530735
Vineet Guptac59414c2014-09-24 11:36:20 +0530736 WARN(kstart < TASK_SIZE, "%s() can't handle user vaddr", __func__);
Vineet Gupta95d69762013-01-18 15:12:19 +0530737
738 /* Shortcut for bigger flush ranges.
739 * Here we don't care if this was kernel virtual or phy addr
740 */
741 tot_sz = kend - kstart;
742 if (tot_sz > PAGE_SIZE) {
743 flush_cache_all();
744 return;
745 }
746
747 /* Case: Kernel Phy addr (0x8000_0000 onwards) */
748 if (likely(kstart > PAGE_OFFSET)) {
Vineet Gupta7586bf722013-04-12 12:18:25 +0530749 /*
750 * The 2nd arg despite being paddr will be used to index icache
751 * This is OK since no alternate virtual mappings will exist
752 * given the callers for this case: kprobe/kgdb in built-in
753 * kernel code only.
754 */
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530755 __sync_icache_dcache(kstart, kstart, kend - kstart);
Vineet Gupta95d69762013-01-18 15:12:19 +0530756 return;
757 }
758
759 /*
760 * Case: Kernel Vaddr (0x7000_0000 to 0x7fff_ffff)
761 * (1) ARC Cache Maintenance ops only take Phy addr, hence special
762 * handling of kernel vaddr.
763 *
764 * (2) Despite @tot_sz being < PAGE_SIZE (bigger cases handled already),
765 * it still needs to handle a 2 page scenario, where the range
766 * straddles across 2 virtual pages and hence need for loop
767 */
768 while (tot_sz > 0) {
Vineet Guptac59414c2014-09-24 11:36:20 +0530769 unsigned int off, sz;
770 unsigned long phy, pfn;
771
Vineet Gupta95d69762013-01-18 15:12:19 +0530772 off = kstart % PAGE_SIZE;
773 pfn = vmalloc_to_pfn((void *)kstart);
774 phy = (pfn << PAGE_SHIFT) + off;
775 sz = min_t(unsigned int, tot_sz, PAGE_SIZE - off);
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530776 __sync_icache_dcache(phy, kstart, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530777 kstart += sz;
778 tot_sz -= sz;
779 }
780}
Pranith Kumare3560302014-08-29 15:19:09 -0700781EXPORT_SYMBOL(flush_icache_range);
Vineet Gupta95d69762013-01-18 15:12:19 +0530782
783/*
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530784 * General purpose helper to make I and D cache lines consistent.
785 * @paddr is phy addr of region
Vineet Gupta4b06ff32013-07-10 11:40:27 +0530786 * @vaddr is typically user vaddr (breakpoint) or kernel vaddr (vmalloc)
787 * However in one instance, when called by kprobe (for a breakpt in
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530788 * builtin kernel code) @vaddr will be paddr only, meaning CDU operation will
789 * use a paddr to index the cache (despite VIPT). This is fine since since a
Vineet Gupta4b06ff32013-07-10 11:40:27 +0530790 * builtin kernel page will not have any virtual mappings.
791 * kprobe on loadable module will be kernel vaddr.
Vineet Gupta95d69762013-01-18 15:12:19 +0530792 */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700793void __sync_icache_dcache(phys_addr_t paddr, unsigned long vaddr, int len)
Vineet Gupta95d69762013-01-18 15:12:19 +0530794{
Vineet Guptaf5388812013-05-16 12:19:29 +0530795 __dc_line_op(paddr, vaddr, len, OP_FLUSH_N_INV);
Vineet Gupta2328af02013-02-17 12:51:42 +0200796 __ic_line_inv_vaddr(paddr, vaddr, len);
Vineet Gupta95d69762013-01-18 15:12:19 +0530797}
798
Vineet Gupta24603fd2013-04-11 18:36:35 +0530799/* wrapper to compile time eliminate alignment checks in flush loop */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700800void __inv_icache_page(phys_addr_t paddr, unsigned long vaddr)
Vineet Gupta95d69762013-01-18 15:12:19 +0530801{
Vineet Gupta24603fd2013-04-11 18:36:35 +0530802 __ic_line_inv_vaddr(paddr, vaddr, PAGE_SIZE);
Vineet Gupta95d69762013-01-18 15:12:19 +0530803}
804
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530805/*
806 * wrapper to clearout kernel or userspace mappings of a page
807 * For kernel mappings @vaddr == @paddr
808 */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700809void __flush_dcache_page(phys_addr_t paddr, unsigned long vaddr)
Vineet Guptaeacd0e92013-04-16 14:10:48 +0530810{
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530811 __dc_line_op(paddr, vaddr & PAGE_MASK, PAGE_SIZE, OP_FLUSH_N_INV);
Vineet Guptaeacd0e92013-04-16 14:10:48 +0530812}
813
Vineet Gupta95d69762013-01-18 15:12:19 +0530814noinline void flush_cache_all(void)
815{
816 unsigned long flags;
817
818 local_irq_save(flags);
819
Vineet Gupta336e1992013-06-22 19:22:42 +0530820 __ic_entire_inv();
Vineet Gupta95d69762013-01-18 15:12:19 +0530821 __dc_entire_op(OP_FLUSH_N_INV);
822
823 local_irq_restore(flags);
824
825}
826
Vineet Gupta4102b532013-05-09 21:54:51 +0530827#ifdef CONFIG_ARC_CACHE_VIPT_ALIASING
828
829void flush_cache_mm(struct mm_struct *mm)
830{
831 flush_cache_all();
832}
833
834void flush_cache_page(struct vm_area_struct *vma, unsigned long u_vaddr,
835 unsigned long pfn)
836{
837 unsigned int paddr = pfn << PAGE_SHIFT;
838
Vineet Gupta5971bc72013-05-16 12:23:31 +0530839 u_vaddr &= PAGE_MASK;
840
Vineet Gupta45309492015-05-18 12:46:37 +0530841 __flush_dcache_page(paddr, u_vaddr);
Vineet Gupta5971bc72013-05-16 12:23:31 +0530842
843 if (vma->vm_flags & VM_EXEC)
844 __inv_icache_page(paddr, u_vaddr);
Vineet Gupta4102b532013-05-09 21:54:51 +0530845}
846
847void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
848 unsigned long end)
849{
850 flush_cache_all();
851}
852
Vineet Gupta7bb66f62013-05-25 14:04:25 +0530853void flush_anon_page(struct vm_area_struct *vma, struct page *page,
854 unsigned long u_vaddr)
855{
856 /* TBD: do we really need to clear the kernel mapping */
857 __flush_dcache_page(page_address(page), u_vaddr);
858 __flush_dcache_page(page_address(page), page_address(page));
859
860}
861
862#endif
863
Vineet Gupta4102b532013-05-09 21:54:51 +0530864void copy_user_highpage(struct page *to, struct page *from,
865 unsigned long u_vaddr, struct vm_area_struct *vma)
866{
Vineet Gupta336e2132015-03-05 17:06:31 +0530867 void *kfrom = kmap_atomic(from);
868 void *kto = kmap_atomic(to);
Vineet Gupta4102b532013-05-09 21:54:51 +0530869 int clean_src_k_mappings = 0;
870
871 /*
872 * If SRC page was already mapped in userspace AND it's U-mapping is
873 * not congruent with K-mapping, sync former to physical page so that
874 * K-mapping in memcpy below, sees the right data
875 *
876 * Note that while @u_vaddr refers to DST page's userspace vaddr, it is
877 * equally valid for SRC page as well
Vineet Gupta336e2132015-03-05 17:06:31 +0530878 *
879 * For !VIPT cache, all of this gets compiled out as
880 * addr_not_cache_congruent() is 0
Vineet Gupta4102b532013-05-09 21:54:51 +0530881 */
Kirill A. Shutemove1534ae2016-01-15 16:53:46 -0800882 if (page_mapcount(from) && addr_not_cache_congruent(kfrom, u_vaddr)) {
Vineet Gupta336e2132015-03-05 17:06:31 +0530883 __flush_dcache_page((unsigned long)kfrom, u_vaddr);
Vineet Gupta4102b532013-05-09 21:54:51 +0530884 clean_src_k_mappings = 1;
885 }
886
Vineet Gupta336e2132015-03-05 17:06:31 +0530887 copy_page(kto, kfrom);
Vineet Gupta4102b532013-05-09 21:54:51 +0530888
889 /*
890 * Mark DST page K-mapping as dirty for a later finalization by
891 * update_mmu_cache(). Although the finalization could have been done
892 * here as well (given that both vaddr/paddr are available).
893 * But update_mmu_cache() already has code to do that for other
894 * non copied user pages (e.g. read faults which wire in pagecache page
895 * directly).
896 */
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530897 clear_bit(PG_dc_clean, &to->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530898
899 /*
900 * if SRC was already usermapped and non-congruent to kernel mapping
901 * sync the kernel mapping back to physical page
902 */
903 if (clean_src_k_mappings) {
Vineet Gupta336e2132015-03-05 17:06:31 +0530904 __flush_dcache_page((unsigned long)kfrom, (unsigned long)kfrom);
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530905 set_bit(PG_dc_clean, &from->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530906 } else {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530907 clear_bit(PG_dc_clean, &from->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530908 }
Vineet Gupta336e2132015-03-05 17:06:31 +0530909
910 kunmap_atomic(kto);
911 kunmap_atomic(kfrom);
Vineet Gupta4102b532013-05-09 21:54:51 +0530912}
913
914void clear_user_page(void *to, unsigned long u_vaddr, struct page *page)
915{
916 clear_page(to);
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530917 clear_bit(PG_dc_clean, &page->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530918}
919
Vineet Gupta4102b532013-05-09 21:54:51 +0530920
Vineet Gupta95d69762013-01-18 15:12:19 +0530921/**********************************************************************
922 * Explicit Cache flush request from user space via syscall
923 * Needed for JITs which generate code on the fly
924 */
925SYSCALL_DEFINE3(cacheflush, uint32_t, start, uint32_t, sz, uint32_t, flags)
926{
927 /* TBD: optimize this */
928 flush_cache_all();
929 return 0;
930}
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530931
932void arc_cache_init(void)
933{
934 unsigned int __maybe_unused cpu = smp_processor_id();
935 char str[256];
936
937 printk(arc_cache_mumbojumbo(0, str, sizeof(str)));
938
Vineet Gupta45c3b082016-06-13 16:38:27 +0200939 /*
940 * Only master CPU needs to execute rest of function:
941 * - Assume SMP so all cores will have same cache config so
942 * any geomtry checks will be same for all
943 * - IOC setup / dma callbacks only need to be setup once
944 */
945 if (cpu)
946 return;
947
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530948 if (IS_ENABLED(CONFIG_ARC_HAS_ICACHE)) {
949 struct cpuinfo_arc_cache *ic = &cpuinfo_arc700[cpu].icache;
950
951 if (!ic->ver)
952 panic("cache support enabled but non-existent cache\n");
953
954 if (ic->line_len != L1_CACHE_BYTES)
955 panic("ICache line [%d] != kernel Config [%d]",
956 ic->line_len, L1_CACHE_BYTES);
957
958 if (ic->ver != CONFIG_ARC_MMU_VER)
959 panic("Cache ver [%d] doesn't match MMU ver [%d]\n",
960 ic->ver, CONFIG_ARC_MMU_VER);
Vineet Guptabcc4d65a2015-06-04 14:39:15 +0530961
962 /*
Andrea Gelmini25474762016-05-21 13:45:35 +0200963 * In MMU v4 (HS38x) the aliasing icache config uses IVIL/PTAG
Vineet Guptabcc4d65a2015-06-04 14:39:15 +0530964 * pair to provide vaddr/paddr respectively, just as in MMU v3
965 */
966 if (is_isa_arcv2() && ic->alias)
967 _cache_line_loop_ic_fn = __cache_line_loop_v3;
968 else
969 _cache_line_loop_ic_fn = __cache_line_loop;
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530970 }
971
972 if (IS_ENABLED(CONFIG_ARC_HAS_DCACHE)) {
973 struct cpuinfo_arc_cache *dc = &cpuinfo_arc700[cpu].dcache;
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530974
975 if (!dc->ver)
976 panic("cache support enabled but non-existent cache\n");
977
978 if (dc->line_len != L1_CACHE_BYTES)
979 panic("DCache line [%d] != kernel Config [%d]",
980 dc->line_len, L1_CACHE_BYTES);
981
Vineet Guptad1f317d2015-04-06 17:23:57 +0530982 /* check for D-Cache aliasing on ARCompact: ARCv2 has PIPT */
983 if (is_isa_arcompact()) {
984 int handled = IS_ENABLED(CONFIG_ARC_CACHE_VIPT_ALIASING);
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530985
Vineet Guptad1f317d2015-04-06 17:23:57 +0530986 if (dc->alias && !handled)
987 panic("Enable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
988 else if (!dc->alias && handled)
989 panic("Disable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
990 }
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530991 }
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300992
Vineet Gupta79335a22015-06-04 18:30:23 +0530993 if (is_isa_arcv2() && l2_line_sz && !slc_enable) {
994
995 /* IM set : flush before invalidate */
996 write_aux_reg(ARC_REG_SLC_CTRL,
997 read_aux_reg(ARC_REG_SLC_CTRL) | SLC_CTRL_IM);
998
999 write_aux_reg(ARC_REG_SLC_INVALIDATE, 1);
1000
1001 /* Important to wait for flush to complete */
1002 while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY);
1003 write_aux_reg(ARC_REG_SLC_CTRL,
1004 read_aux_reg(ARC_REG_SLC_CTRL) | SLC_CTRL_DISABLE);
1005 }
1006
Vineet Guptacf986d42016-10-13 15:58:59 -07001007 if (is_isa_arcv2() && ioc_enable) {
Alexey Brodkinf2b0b252015-05-25 19:54:28 +03001008 /* IO coherency base - 0x8z */
1009 write_aux_reg(ARC_REG_IO_COH_AP0_BASE, 0x80000);
1010 /* IO coherency aperture size - 512Mb: 0x8z-0xAz */
1011 write_aux_reg(ARC_REG_IO_COH_AP0_SIZE, 0x11);
1012 /* Enable partial writes */
1013 write_aux_reg(ARC_REG_IO_COH_PARTIAL, 1);
1014 /* Enable IO coherency */
1015 write_aux_reg(ARC_REG_IO_COH_ENABLE, 1);
1016
1017 __dma_cache_wback_inv = __dma_cache_wback_inv_ioc;
1018 __dma_cache_inv = __dma_cache_inv_ioc;
1019 __dma_cache_wback = __dma_cache_wback_ioc;
Vineet Gupta79335a22015-06-04 18:30:23 +05301020 } else if (is_isa_arcv2() && l2_line_sz && slc_enable) {
Alexey Brodkinf2b0b252015-05-25 19:54:28 +03001021 __dma_cache_wback_inv = __dma_cache_wback_inv_slc;
1022 __dma_cache_inv = __dma_cache_inv_slc;
1023 __dma_cache_wback = __dma_cache_wback_slc;
1024 } else {
1025 __dma_cache_wback_inv = __dma_cache_wback_inv_l1;
1026 __dma_cache_inv = __dma_cache_inv_l1;
1027 __dma_cache_wback = __dma_cache_wback_l1;
1028 }
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301029}