blob: 18132eb5615010e4c96faccf6cedc6f747d79bbe [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;
Vineet Guptad0e73e22017-01-17 11:09:18 -080026int 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 Gupta7d3d1622017-01-23 19:32:23 -080031 unsigned long sz, const int op, const int full_page);
Vineet Guptabcc4d65a2015-06-04 14:39:15 +053032
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 Guptaf64915b2016-12-19 11:24:08 -080043 if (!(p)->line_len) \
Vineet Guptaaf617422013-01-18 15:12:24 +053044 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 Guptad1f317d2015-04-06 17:23:57 +053056 p = &cpuinfo_arc700[c].slc;
Vineet Guptaf64915b2016-12-19 11:24:08 -080057 if (p->line_len)
Vineet Guptad1f317d2015-04-06 17:23:57 +053058 n += scnprintf(buf + n, len - n,
Vineet Gupta79335a22015-06-04 18:30:23 +053059 "SLC\t\t: %uK, %uB Line%s\n",
60 p->sz_k, p->line_len, IS_USED_RUN(slc_enable));
Vineet Guptad1f317d2015-04-06 17:23:57 +053061
Vineet Gupta711c1f22016-10-13 15:53:02 -070062 n += scnprintf(buf + n, len - n, "Peripherals\t: %#lx%s%s\n",
63 perip_base,
64 IS_AVAIL3(ioc_exists, ioc_enable, ", IO-Coherency "));
Alexey Brodkinf2b0b252015-05-25 19:54:28 +030065
Vineet Guptaaf617422013-01-18 15:12:24 +053066 return buf;
67}
68
Vineet Gupta95d69762013-01-18 15:12:19 +053069/*
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 */
Vineet Guptafd0881a22015-08-21 15:06:43 +053074static void read_decode_cache_bcr_arcv2(int cpu)
Vineet Gupta95d69762013-01-18 15:12:19 +053075{
Vineet Guptafd0881a22015-08-21 15:06:43 +053076 struct cpuinfo_arc_cache *p_slc = &cpuinfo_arc700[cpu].slc;
Vineet Guptad1f317d2015-04-06 17:23:57 +053077 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
Alexey Brodkinf2b0b252015-05-25 19:54:28 +030087 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
Vineet Gupta26c01c42016-08-26 15:41:29 -070095 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
Vineet Guptafd0881a22015-08-21 15:06:43 +0530104 READ_BCR(ARC_REG_SLC_BCR, sbcr);
105 if (sbcr.ver) {
106 READ_BCR(ARC_REG_SLC_CFG, slc_cfg);
Vineet Guptafd0881a22015-08-21 15:06:43 +0530107 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);
Vineet Guptacf986d42016-10-13 15:58:59 -0700112 if (cbcr.c)
Vineet Guptafd0881a22015-08-21 15:06:43 +0530113 ioc_exists = 1;
Vineet Guptacf986d42016-10-13 15:58:59 -0700114 else
115 ioc_enable = 0;
Vineet Guptadeaf7562015-10-24 19:31:16 +0530116
Vineet Gupta26c01c42016-08-26 15:41:29 -0700117 /* 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 }
Vineet Guptafd0881a22015-08-21 15:06:43 +0530125}
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
Vineet Gupta95d69762013-01-18 15:12:19 +0530139 p_ic = &cpuinfo_arc700[cpu].icache;
140 READ_BCR(ARC_REG_IC_BCR, ibcr);
141
Vineet Guptada40ff42014-06-27 15:49:47 +0530142 if (!ibcr.ver)
143 goto dc_chk;
144
Vineet Guptad1f317d2015-04-06 17:23:57 +0530145 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
Vineet Gupta95d69762013-01-18 15:12:19 +0530152 p_ic->line_len = 8 << ibcr.line_len;
Vineet Guptada40ff42014-06-27 15:49:47 +0530153 p_ic->sz_k = 1 << (ibcr.sz - 1);
Vineet Guptada40ff42014-06-27 15:49:47 +0530154 p_ic->vipt = 1;
155 p_ic->alias = p_ic->sz_k/p_ic->assoc/TO_KB(PAGE_SIZE) > 1;
Vineet Gupta95d69762013-01-18 15:12:19 +0530156
Vineet Guptada40ff42014-06-27 15:49:47 +0530157dc_chk:
Vineet Gupta95d69762013-01-18 15:12:19 +0530158 p_dc = &cpuinfo_arc700[cpu].dcache;
159 READ_BCR(ARC_REG_DC_BCR, dbcr);
160
Vineet Guptada40ff42014-06-27 15:49:47 +0530161 if (!dbcr.ver)
Vineet Guptad1f317d2015-04-06 17:23:57 +0530162 goto slc_chk;
Vineet Guptada40ff42014-06-27 15:49:47 +0530163
Vineet Guptad1f317d2015-04-06 17:23:57 +0530164 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 }
174
Vineet Gupta95d69762013-01-18 15:12:19 +0530175 p_dc->line_len = 16 << dbcr.line_len;
Vineet Guptada40ff42014-06-27 15:49:47 +0530176 p_dc->sz_k = 1 << (dbcr.sz - 1);
Vineet Guptad1f317d2015-04-06 17:23:57 +0530177
178slc_chk:
Vineet Guptafd0881a22015-08-21 15:06:43 +0530179 if (is_isa_arcv2())
180 read_decode_cache_bcr_arcv2(cpu);
Vineet Gupta95d69762013-01-18 15:12:19 +0530181}
182
183/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530184 * Line Operation on {I,D}-Cache
Vineet Gupta95d69762013-01-18 15:12:19 +0530185 */
Vineet Gupta95d69762013-01-18 15:12:19 +0530186
187#define OP_INV 0x1
188#define OP_FLUSH 0x2
189#define OP_FLUSH_N_INV 0x3
Vineet Guptabd129762013-09-05 13:43:03 +0530190#define OP_INV_IC 0x4
191
192/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530193 * 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.
Andrea Gelmini25474762016-05-21 13:45:35 +0200227 * However from hardware perspective, smaller page sizes aggravate aliasing
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530228 * 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
Vineet Guptabd129762013-09-05 13:43:03 +0530232 */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530233
Vineet Gupta11e14892014-08-04 08:32:31 -0700234static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700235void __cache_line_loop_v2(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800236 unsigned long sz, const int op, const int full_page)
Vineet Guptabd129762013-09-05 13:43:03 +0530237{
Vineet Gupta11e14892014-08-04 08:32:31 -0700238 unsigned int aux_cmd;
Vineet Guptabd129762013-09-05 13:43:03 +0530239 int num_lines;
240
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530241 if (op == OP_INV_IC) {
Vineet Guptabd129762013-09-05 13:43:03 +0530242 aux_cmd = ARC_REG_IC_IVIL;
Vineet Gupta11e14892014-08-04 08:32:31 -0700243 } else {
Vineet Guptabd129762013-09-05 13:43:03 +0530244 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530245 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
Vineet Guptabd129762013-09-05 13:43:03 +0530246 }
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 */
Vineet Gupta11e14892014-08-04 08:32:31 -0700254 if (!full_page) {
Vineet Guptabd129762013-09-05 13:43:03 +0530255 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
Vineet Guptabd129762013-09-05 13:43:03 +0530262 /* MMUv2 and before: paddr contains stuffed vaddrs bits */
263 paddr |= (vaddr >> PAGE_SHIFT) & 0x1F;
Vineet Guptabd129762013-09-05 13:43:03 +0530264
265 while (num_lines-- > 0) {
Vineet Gupta11e14892014-08-04 08:32:31 -0700266 write_aux_reg(aux_cmd, paddr);
267 paddr += L1_CACHE_BYTES;
268 }
269}
270
Vineet Gupta5a364c22015-02-06 18:44:57 +0300271/*
272 * For ARC700 MMUv3 I-cache and D-cache flushes
Vineet Guptafa84d7312017-01-04 12:02:44 -0800273 * - 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)
Vineet Gupta5a364c22015-02-06 18:44:57 +0300278 */
Vineet Gupta11e14892014-08-04 08:32:31 -0700279static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700280void __cache_line_loop_v3(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800281 unsigned long sz, const int op, const int full_page)
Vineet Gupta11e14892014-08-04 08:32:31 -0700282{
283 unsigned int aux_cmd, aux_tag;
284 int num_lines;
Vineet Gupta11e14892014-08-04 08:32:31 -0700285
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)
312 write_aux_reg(aux_tag, paddr);
313
Vineet Gupta5a364c22015-02-06 18:44:57 +0300314 /*
315 * This is technically for MMU v4, using the MMU v3 programming model
Andrea Gelmini25474762016-05-21 13:45:35 +0200316 * Special work for HS38 aliasing I-cache configuration with PAE40
Vineet Gupta5a364c22015-02-06 18:44:57 +0300317 * - 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
Vineet Gupta11e14892014-08-04 08:32:31 -0700324 while (num_lines-- > 0) {
325 if (!full_page) {
Vineet Guptad4599ba2013-09-05 14:45:51 +0530326 write_aux_reg(aux_tag, paddr);
327 paddr += L1_CACHE_BYTES;
328 }
Vineet Guptabd129762013-09-05 13:43:03 +0530329
330 write_aux_reg(aux_cmd, vaddr);
331 vaddr += L1_CACHE_BYTES;
Vineet Guptabd129762013-09-05 13:43:03 +0530332 }
333}
Vineet Gupta95d69762013-01-18 15:12:19 +0530334
Vineet Guptad1f317d2015-04-06 17:23:57 +0530335/*
Vineet Gupta5a364c22015-02-06 18:44:57 +0300336 * In HS38x (MMU v4), I-cache is VIPT (can alias), D-cache is PIPT
337 * Here's how cache ops are implemented
Vineet Guptad1f317d2015-04-06 17:23:57 +0530338 *
Vineet Gupta5a364c22015-02-06 18:44:57 +0300339 * - 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
Vineet Guptad1f317d2015-04-06 17:23:57 +0530347 */
348static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700349void __cache_line_loop_v4(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800350 unsigned long sz, const int op, const int full_page)
Vineet Guptad1f317d2015-04-06 17:23:57 +0530351{
352 unsigned int aux_cmd;
353 int num_lines;
Vineet Guptad1f317d2015-04-06 17:23:57 +0530354
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800355 if (op == OP_INV_IC) {
Vineet Guptad1f317d2015-04-06 17:23:57 +0530356 aux_cmd = ARC_REG_IC_IVIL;
357 } else {
358 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800359 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
Vineet Guptad1f317d2015-04-06 17:23:57 +0530360 }
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 */
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800368 if (!full_page) {
Vineet Guptad1f317d2015-04-06 17:23:57 +0530369 sz += paddr & ~CACHE_LINE_MASK;
370 paddr &= CACHE_LINE_MASK;
371 }
372
373 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
374
Vineet Gupta5a364c22015-02-06 18:44:57 +0300375 /*
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()) {
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800381 if (op == OP_INV_IC)
Vineet Gupta5a364c22015-02-06 18:44:57 +0300382 /*
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
Vineet Guptad1f317d2015-04-06 17:23:57 +0530391 while (num_lines-- > 0) {
392 write_aux_reg(aux_cmd, paddr);
393 paddr += L1_CACHE_BYTES;
394 }
395}
396
Vineet Gupta11e14892014-08-04 08:32:31 -0700397#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
Vineet Guptad1f317d2015-04-06 17:23:57 +0530401#elif (CONFIG_ARC_MMU_VER > 3)
402#define __cache_line_loop __cache_line_loop_v4
Vineet Gupta11e14892014-08-04 08:32:31 -0700403#endif
404
Vineet Gupta95d69762013-01-18 15:12:19 +0530405#ifdef CONFIG_ARC_HAS_DCACHE
406
407/***************************************************************
408 * Machine specific helpers for Entire D-Cache or Per Line ops
409 */
410
Vineet Gupta6c310682015-06-04 08:53:47 +0530411static inline void __before_dc_op(const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530412{
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530413 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 */
Vineet Gupta6c310682015-06-04 08:53:47 +0530419 const unsigned int ctl = ARC_REG_DC_CTRL;
420 write_aux_reg(ctl, read_aux_reg(ctl) | DC_CTRL_INV_MODE_FLUSH);
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530421 }
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530422}
423
Vineet Gupta6c310682015-06-04 08:53:47 +0530424static inline void __after_dc_op(const int op)
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530425{
Vineet Gupta6c310682015-06-04 08:53:47 +0530426 if (op & OP_FLUSH) {
427 const unsigned int ctl = ARC_REG_DC_CTRL;
428 unsigned int reg;
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530429
Vineet Gupta6c310682015-06-04 08:53:47 +0530430 /* 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 }
Vineet Gupta95d69762013-01-18 15:12:19 +0530438}
439
440/*
441 * Operation on Entire D-Cache
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530442 * @op = {OP_INV, OP_FLUSH, OP_FLUSH_N_INV}
Vineet Gupta95d69762013-01-18 15:12:19 +0530443 * Note that constant propagation ensures all the checks are gone
444 * in generated code
445 */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530446static inline void __dc_entire_op(const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530447{
Vineet Gupta95d69762013-01-18 15:12:19 +0530448 int aux;
449
Vineet Gupta6c310682015-06-04 08:53:47 +0530450 __before_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530451
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530452 if (op & OP_INV) /* Inv or flush-n-inv use same cmd reg */
Vineet Gupta95d69762013-01-18 15:12:19 +0530453 aux = ARC_REG_DC_IVDC;
454 else
455 aux = ARC_REG_DC_FLSH;
456
457 write_aux_reg(aux, 0x1);
458
Vineet Gupta6c310682015-06-04 08:53:47 +0530459 __after_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530460}
461
Vineet Gupta8c47f832016-06-22 16:01:19 +0530462static 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
Vineet Gupta4102b532013-05-09 21:54:51 +0530477/* For kernel mappings cache operation: index is same as paddr */
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530478#define __dc_line_op_k(p, sz, op) __dc_line_op(p, p, sz, op)
479
Vineet Gupta95d69762013-01-18 15:12:19 +0530480/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530481 * D-Cache Line ops: Per Line INV (discard or wback+discard) or FLUSH (wback)
Vineet Gupta95d69762013-01-18 15:12:19 +0530482 */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700483static inline void __dc_line_op(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530484 unsigned long sz, const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530485{
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800486 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530487 unsigned long flags;
Vineet Gupta95d69762013-01-18 15:12:19 +0530488
489 local_irq_save(flags);
490
Vineet Gupta6c310682015-06-04 08:53:47 +0530491 __before_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530492
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800493 __cache_line_loop(paddr, vaddr, sz, op, full_page);
Vineet Gupta95d69762013-01-18 15:12:19 +0530494
Vineet Gupta6c310682015-06-04 08:53:47 +0530495 __after_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530496
497 local_irq_restore(flags);
498}
499
500#else
501
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530502#define __dc_entire_op(op)
Vineet Gupta8c47f832016-06-22 16:01:19 +0530503#define __dc_disable()
504#define __dc_enable()
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530505#define __dc_line_op(paddr, vaddr, sz, op)
506#define __dc_line_op_k(paddr, sz, op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530507
508#endif /* CONFIG_ARC_HAS_DCACHE */
509
Vineet Gupta95d69762013-01-18 15:12:19 +0530510#ifdef CONFIG_ARC_HAS_ICACHE
511
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530512static 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
Vineet Gupta28b4af72015-09-14 18:43:42 -0700519__ic_line_inv_vaddr_local(phys_addr_t paddr, unsigned long vaddr,
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530520 unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530521{
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800522 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
Vineet Gupta95d69762013-01-18 15:12:19 +0530523 unsigned long flags;
Vineet Gupta95d69762013-01-18 15:12:19 +0530524
525 local_irq_save(flags);
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800526 (*_cache_line_loop_ic_fn)(paddr, vaddr, sz, OP_INV_IC, full_page);
Vineet Gupta95d69762013-01-18 15:12:19 +0530527 local_irq_restore(flags);
528}
529
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530530#ifndef CONFIG_SMP
Vineet Gupta336e1992013-06-22 19:22:42 +0530531
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530532#define __ic_line_inv_vaddr(p, v, s) __ic_line_inv_vaddr_local(p, v, s)
533
534#else
535
536struct ic_inv_args {
Vineet Gupta28b4af72015-09-14 18:43:42 -0700537 phys_addr_t paddr, vaddr;
Vineet Gupta2328af02013-02-17 12:51:42 +0200538 int sz;
539};
540
541static void __ic_line_inv_vaddr_helper(void *info)
542{
Noam Camus014018e2014-09-03 14:41:11 +0300543 struct ic_inv_args *ic_inv = info;
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530544
Vineet Gupta2328af02013-02-17 12:51:42 +0200545 __ic_line_inv_vaddr_local(ic_inv->paddr, ic_inv->vaddr, ic_inv->sz);
546}
547
Vineet Gupta28b4af72015-09-14 18:43:42 -0700548static void __ic_line_inv_vaddr(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta2328af02013-02-17 12:51:42 +0200549 unsigned long sz)
550{
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530551 struct ic_inv_args ic_inv = {
552 .paddr = paddr,
553 .vaddr = vaddr,
554 .sz = sz
555 };
556
Vineet Gupta2328af02013-02-17 12:51:42 +0200557 on_each_cpu(__ic_line_inv_vaddr_helper, &ic_inv, 1);
558}
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530559
560#endif /* CONFIG_SMP */
561
562#else /* !CONFIG_ARC_HAS_ICACHE */
Vineet Gupta95d69762013-01-18 15:12:19 +0530563
Vineet Gupta336e1992013-06-22 19:22:42 +0530564#define __ic_entire_inv()
Vineet Gupta95d69762013-01-18 15:12:19 +0530565#define __ic_line_inv_vaddr(pstart, vstart, sz)
566
567#endif /* CONFIG_ARC_HAS_ICACHE */
568
Vineet Gupta28b4af72015-09-14 18:43:42 -0700569noinline void slc_op(phys_addr_t paddr, unsigned long sz, const int op)
Vineet Gupta795f4552015-04-03 12:37:07 +0300570{
571#ifdef CONFIG_ISA_ARCV2
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300572 /*
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);
Vineet Gupta795f4552015-04-03 12:37:07 +0300580 unsigned long flags;
581 unsigned int ctrl;
582
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300583 spin_lock_irqsave(&lock, flags);
Vineet Gupta795f4552015-04-03 12:37:07 +0300584
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
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300616 spin_unlock_irqrestore(&lock, flags);
Vineet Gupta795f4552015-04-03 12:37:07 +0300617#endif
618}
619
Vineet Guptad4911cdd2016-06-22 15:43:22 +0530620noinline 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
Alexey Brodkinc70c4732017-03-29 17:15:11 +0300635 /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */
636 read_aux_reg(r);
637
Vineet Guptad4911cdd2016-06-22 15:43:22 +0530638 /* 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
Vineet Gupta95d69762013-01-18 15:12:19 +0530657/***********************************************************
658 * Exported APIs
659 */
660
Vineet Gupta4102b532013-05-09 21:54:51 +0530661/*
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 */
Vineet Gupta95d69762013-01-18 15:12:19 +0530673void flush_dcache_page(struct page *page)
674{
Vineet Gupta4102b532013-05-09 21:54:51 +0530675 struct address_space *mapping;
676
677 if (!cache_is_vipt_aliasing()) {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530678 clear_bit(PG_dc_clean, &page->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530679 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)) {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530692 clear_bit(PG_dc_clean, &page->flags);
Kirill A. Shutemove1534ae2016-01-15 16:53:46 -0800693 } else if (page_mapcount(page)) {
Vineet Gupta4102b532013-05-09 21:54:51 +0530694
695 /* kernel reading from page with U-mapping */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700696 phys_addr_t paddr = (unsigned long)page_address(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300697 unsigned long vaddr = page->index << PAGE_SHIFT;
Vineet Gupta4102b532013-05-09 21:54:51 +0530698
699 if (addr_not_cache_congruent(paddr, vaddr))
700 __flush_dcache_page(paddr, vaddr);
701 }
Vineet Gupta95d69762013-01-18 15:12:19 +0530702}
703EXPORT_SYMBOL(flush_dcache_page);
704
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300705/*
706 * DMA ops for systems with L1 cache only
707 * Make memory coherent with L1 cache by flushing/invalidating L1 lines
708 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530709static void __dma_cache_wback_inv_l1(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530710{
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530711 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300712}
Vineet Gupta795f4552015-04-03 12:37:07 +0300713
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530714static void __dma_cache_inv_l1(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300715{
716 __dc_line_op_k(start, sz, OP_INV);
717}
718
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530719static void __dma_cache_wback_l1(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300720{
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
Adam Buchbinder7423cc02016-02-23 15:24:55 -0800726 * Both L1 and L2 lines need to be explicitly flushed/invalidated
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300727 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530728static void __dma_cache_wback_inv_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300729{
730 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
731 slc_op(start, sz, OP_FLUSH_N_INV);
732}
733
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530734static void __dma_cache_inv_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300735{
736 __dc_line_op_k(start, sz, OP_INV);
737 slc_op(start, sz, OP_INV);
738}
739
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530740static void __dma_cache_wback_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300741{
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 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530751static 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) {}
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300754
755/*
756 * Exported DMA API
757 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530758void dma_cache_wback_inv(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300759{
760 __dma_cache_wback_inv(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530761}
762EXPORT_SYMBOL(dma_cache_wback_inv);
763
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530764void dma_cache_inv(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530765{
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300766 __dma_cache_inv(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530767}
768EXPORT_SYMBOL(dma_cache_inv);
769
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530770void dma_cache_wback(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530771{
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300772 __dma_cache_wback(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530773}
774EXPORT_SYMBOL(dma_cache_wback);
775
776/*
Vineet Gupta7586bf722013-04-12 12:18:25 +0530777 * This is API for making I/D Caches consistent when modifying
778 * kernel code (loadable modules, kprobes, kgdb...)
Vineet Gupta95d69762013-01-18 15:12:19 +0530779 * 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{
Vineet Guptac59414c2014-09-24 11:36:20 +0530785 unsigned int tot_sz;
Vineet Gupta95d69762013-01-18 15:12:19 +0530786
Vineet Guptac59414c2014-09-24 11:36:20 +0530787 WARN(kstart < TASK_SIZE, "%s() can't handle user vaddr", __func__);
Vineet Gupta95d69762013-01-18 15:12:19 +0530788
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)) {
Vineet Gupta7586bf722013-04-12 12:18:25 +0530800 /*
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 */
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530806 __sync_icache_dcache(kstart, kstart, kend - kstart);
Vineet Gupta95d69762013-01-18 15:12:19 +0530807 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) {
Vineet Guptac59414c2014-09-24 11:36:20 +0530820 unsigned int off, sz;
821 unsigned long phy, pfn;
822
Vineet Gupta95d69762013-01-18 15:12:19 +0530823 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);
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530827 __sync_icache_dcache(phy, kstart, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530828 kstart += sz;
829 tot_sz -= sz;
830 }
831}
Pranith Kumare3560302014-08-29 15:19:09 -0700832EXPORT_SYMBOL(flush_icache_range);
Vineet Gupta95d69762013-01-18 15:12:19 +0530833
834/*
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530835 * General purpose helper to make I and D cache lines consistent.
836 * @paddr is phy addr of region
Vineet Gupta4b06ff32013-07-10 11:40:27 +0530837 * @vaddr is typically user vaddr (breakpoint) or kernel vaddr (vmalloc)
838 * However in one instance, when called by kprobe (for a breakpt in
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530839 * 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
Vineet Gupta4b06ff32013-07-10 11:40:27 +0530841 * builtin kernel page will not have any virtual mappings.
842 * kprobe on loadable module will be kernel vaddr.
Vineet Gupta95d69762013-01-18 15:12:19 +0530843 */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700844void __sync_icache_dcache(phys_addr_t paddr, unsigned long vaddr, int len)
Vineet Gupta95d69762013-01-18 15:12:19 +0530845{
Vineet Guptaf5388812013-05-16 12:19:29 +0530846 __dc_line_op(paddr, vaddr, len, OP_FLUSH_N_INV);
Vineet Gupta2328af02013-02-17 12:51:42 +0200847 __ic_line_inv_vaddr(paddr, vaddr, len);
Vineet Gupta95d69762013-01-18 15:12:19 +0530848}
849
Vineet Gupta24603fd2013-04-11 18:36:35 +0530850/* wrapper to compile time eliminate alignment checks in flush loop */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700851void __inv_icache_page(phys_addr_t paddr, unsigned long vaddr)
Vineet Gupta95d69762013-01-18 15:12:19 +0530852{
Vineet Gupta24603fd2013-04-11 18:36:35 +0530853 __ic_line_inv_vaddr(paddr, vaddr, PAGE_SIZE);
Vineet Gupta95d69762013-01-18 15:12:19 +0530854}
855
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530856/*
857 * wrapper to clearout kernel or userspace mappings of a page
858 * For kernel mappings @vaddr == @paddr
859 */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700860void __flush_dcache_page(phys_addr_t paddr, unsigned long vaddr)
Vineet Guptaeacd0e92013-04-16 14:10:48 +0530861{
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530862 __dc_line_op(paddr, vaddr & PAGE_MASK, PAGE_SIZE, OP_FLUSH_N_INV);
Vineet Guptaeacd0e92013-04-16 14:10:48 +0530863}
864
Vineet Gupta95d69762013-01-18 15:12:19 +0530865noinline void flush_cache_all(void)
866{
867 unsigned long flags;
868
869 local_irq_save(flags);
870
Vineet Gupta336e1992013-06-22 19:22:42 +0530871 __ic_entire_inv();
Vineet Gupta95d69762013-01-18 15:12:19 +0530872 __dc_entire_op(OP_FLUSH_N_INV);
873
874 local_irq_restore(flags);
875
876}
877
Vineet Gupta4102b532013-05-09 21:54:51 +0530878#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
Vineet Gupta5971bc72013-05-16 12:23:31 +0530890 u_vaddr &= PAGE_MASK;
891
Vineet Gupta45309492015-05-18 12:46:37 +0530892 __flush_dcache_page(paddr, u_vaddr);
Vineet Gupta5971bc72013-05-16 12:23:31 +0530893
894 if (vma->vm_flags & VM_EXEC)
895 __inv_icache_page(paddr, u_vaddr);
Vineet Gupta4102b532013-05-09 21:54:51 +0530896}
897
898void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
899 unsigned long end)
900{
901 flush_cache_all();
902}
903
Vineet Gupta7bb66f62013-05-25 14:04:25 +0530904void 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
Vineet Gupta4102b532013-05-09 21:54:51 +0530915void copy_user_highpage(struct page *to, struct page *from,
916 unsigned long u_vaddr, struct vm_area_struct *vma)
917{
Vineet Gupta336e2132015-03-05 17:06:31 +0530918 void *kfrom = kmap_atomic(from);
919 void *kto = kmap_atomic(to);
Vineet Gupta4102b532013-05-09 21:54:51 +0530920 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
Vineet Gupta336e2132015-03-05 17:06:31 +0530929 *
930 * For !VIPT cache, all of this gets compiled out as
931 * addr_not_cache_congruent() is 0
Vineet Gupta4102b532013-05-09 21:54:51 +0530932 */
Kirill A. Shutemove1534ae2016-01-15 16:53:46 -0800933 if (page_mapcount(from) && addr_not_cache_congruent(kfrom, u_vaddr)) {
Vineet Gupta336e2132015-03-05 17:06:31 +0530934 __flush_dcache_page((unsigned long)kfrom, u_vaddr);
Vineet Gupta4102b532013-05-09 21:54:51 +0530935 clean_src_k_mappings = 1;
936 }
937
Vineet Gupta336e2132015-03-05 17:06:31 +0530938 copy_page(kto, kfrom);
Vineet Gupta4102b532013-05-09 21:54:51 +0530939
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 */
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530948 clear_bit(PG_dc_clean, &to->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530949
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) {
Vineet Gupta336e2132015-03-05 17:06:31 +0530955 __flush_dcache_page((unsigned long)kfrom, (unsigned long)kfrom);
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530956 set_bit(PG_dc_clean, &from->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530957 } else {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530958 clear_bit(PG_dc_clean, &from->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530959 }
Vineet Gupta336e2132015-03-05 17:06:31 +0530960
961 kunmap_atomic(kto);
962 kunmap_atomic(kfrom);
Vineet Gupta4102b532013-05-09 21:54:51 +0530963}
964
965void clear_user_page(void *to, unsigned long u_vaddr, struct page *page)
966{
967 clear_page(to);
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530968 clear_bit(PG_dc_clean, &page->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530969}
970
Vineet Gupta4102b532013-05-09 21:54:51 +0530971
Vineet Gupta95d69762013-01-18 15:12:19 +0530972/**********************************************************************
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}
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530982
Vineet Gupta8c47f832016-06-22 16:01:19 +0530983/*
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 */
Vineet Gupta76894a72017-01-18 15:10:52 -0800998noinline void __init arc_ioc_setup(void)
Vineet Guptad4911cdd2016-06-22 15:43:22 +0530999{
Vineet Guptae497c8e2017-01-18 12:59:21 -08001000 unsigned int ap_sz;
1001
Vineet Gupta8c47f832016-06-22 16:01:19 +05301002 /* 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 */
Vineet Guptad4911cdd2016-06-22 15:43:22 +05301010 write_aux_reg(ARC_REG_IO_COH_AP0_BASE, 0x80000);
Vineet Gupta8c47f832016-06-22 16:01:19 +05301011
Vineet Guptae497c8e2017-01-18 12:59:21 -08001012 /*
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);
Vineet Gupta8c47f832016-06-22 16:01:19 +05301020
Vineet Guptad4911cdd2016-06-22 15:43:22 +05301021 write_aux_reg(ARC_REG_IO_COH_PARTIAL, 1);
1022 write_aux_reg(ARC_REG_IO_COH_ENABLE, 1);
Vineet Gupta8c47f832016-06-22 16:01:19 +05301023
1024 /* Re-enable L1 dcache */
1025 __dc_enable();
Vineet Guptad4911cdd2016-06-22 15:43:22 +05301026}
1027
Vineet Gupta76894a72017-01-18 15:10:52 -08001028void __init arc_cache_init_master(void)
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301029{
1030 unsigned int __maybe_unused cpu = smp_processor_id();
Vineet Gupta45c3b082016-06-13 16:38:27 +02001031
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301032 if (IS_ENABLED(CONFIG_ARC_HAS_ICACHE)) {
1033 struct cpuinfo_arc_cache *ic = &cpuinfo_arc700[cpu].icache;
1034
Vineet Guptaf64915b2016-12-19 11:24:08 -08001035 if (!ic->line_len)
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301036 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
Vineet Guptabcc4d65a2015-06-04 14:39:15 +05301042 /*
Andrea Gelmini25474762016-05-21 13:45:35 +02001043 * In MMU v4 (HS38x) the aliasing icache config uses IVIL/PTAG
Vineet Guptabcc4d65a2015-06-04 14:39:15 +05301044 * 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;
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301050 }
1051
1052 if (IS_ENABLED(CONFIG_ARC_HAS_DCACHE)) {
1053 struct cpuinfo_arc_cache *dc = &cpuinfo_arc700[cpu].dcache;
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301054
Vineet Guptaf64915b2016-12-19 11:24:08 -08001055 if (!dc->line_len)
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301056 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
Vineet Guptad1f317d2015-04-06 17:23:57 +05301062 /* 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);
Vineet Gupta08fe0072016-12-19 11:38:38 -08001065 int num_colors = dc->sz_k/dc->assoc/TO_KB(PAGE_SIZE);
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301066
Vineet Gupta08fe0072016-12-19 11:38:38 -08001067 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) {
Vineet Guptad1f317d2015-04-06 17:23:57 +05301073 panic("Disable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
Vineet Gupta08fe0072016-12-19 11:38:38 -08001074 }
Vineet Guptad1f317d2015-04-06 17:23:57 +05301075 }
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301076 }
Alexey Brodkinf2b0b252015-05-25 19:54:28 +03001077
Vineet Guptad4911cdd2016-06-22 15:43:22 +05301078 /* 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();
Vineet Gupta79335a22015-06-04 18:30:23 +05301081
Vineet Guptad4911cdd2016-06-22 15:43:22 +05301082 if (is_isa_arcv2() && ioc_enable)
1083 arc_ioc_setup();
Vineet Gupta79335a22015-06-04 18:30:23 +05301084
Vineet Guptacf986d42016-10-13 15:58:59 -07001085 if (is_isa_arcv2() && ioc_enable) {
Alexey Brodkinf2b0b252015-05-25 19:54:28 +03001086 __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;
Vineet Gupta79335a22015-06-04 18:30:23 +05301089 } else if (is_isa_arcv2() && l2_line_sz && slc_enable) {
Alexey Brodkinf2b0b252015-05-25 19:54:28 +03001090 __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 }
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301098}
Vineet Gupta76894a72017-01-18 15:10:52 -08001099
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}