blob: 63e6e65046992f1388a3ae44aae5150abb1ee3f7 [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 Gupta0d771172014-08-29 10:55:15 +053024#ifdef CONFIG_ISA_ARCV2
25#define USE_RGN_FLSH 1
26#endif
27
Vineet Gupta795f4552015-04-03 12:37:07 +030028static int l2_line_sz;
Vineet Guptacf986d42016-10-13 15:58:59 -070029static int ioc_exists;
Vineet Guptad0e73e22017-01-17 11:09:18 -080030int slc_enable = 1, ioc_enable = 1;
Vineet Guptadeaf7562015-10-24 19:31:16 +053031unsigned long perip_base = ARC_UNCACHED_ADDR_SPACE; /* legacy value for boot */
Vineet Gupta26c01c42016-08-26 15:41:29 -070032unsigned long perip_end = 0xFFFFFFFF; /* legacy value */
Vineet Gupta795f4552015-04-03 12:37:07 +030033
Vineet Gupta28b4af72015-09-14 18:43:42 -070034void (*_cache_line_loop_ic_fn)(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta7d3d1622017-01-23 19:32:23 -080035 unsigned long sz, const int op, const int full_page);
Vineet Guptabcc4d652015-06-04 14:39:15 +053036
Vineet Guptaf5db19e2016-03-16 15:04:39 +053037void (*__dma_cache_wback_inv)(phys_addr_t start, unsigned long sz);
38void (*__dma_cache_inv)(phys_addr_t start, unsigned long sz);
39void (*__dma_cache_wback)(phys_addr_t start, unsigned long sz);
Alexey Brodkinf2b0b252015-05-25 19:54:28 +030040
Vineet Guptac3441ed2014-02-24 11:42:50 +080041char *arc_cache_mumbojumbo(int c, char *buf, int len)
Vineet Guptaaf617422013-01-18 15:12:24 +053042{
43 int n = 0;
Vineet Guptad1f317d2015-04-06 17:23:57 +053044 struct cpuinfo_arc_cache *p;
Vineet Guptaaf617422013-01-18 15:12:24 +053045
Vineet Guptada40ff42014-06-27 15:49:47 +053046#define PR_CACHE(p, cfg, str) \
Vineet Guptaf64915b2016-12-19 11:24:08 -080047 if (!(p)->line_len) \
Vineet Guptaaf617422013-01-18 15:12:24 +053048 n += scnprintf(buf + n, len - n, str"\t\t: N/A\n"); \
49 else \
50 n += scnprintf(buf + n, len - n, \
Vineet Guptada40ff42014-06-27 15:49:47 +053051 str"\t\t: %uK, %dway/set, %uB Line, %s%s%s\n", \
52 (p)->sz_k, (p)->assoc, (p)->line_len, \
53 (p)->vipt ? "VIPT" : "PIPT", \
54 (p)->alias ? " aliasing" : "", \
Vineet Gupta964cf282015-10-02 19:20:27 +053055 IS_USED_CFG(cfg));
Vineet Guptaaf617422013-01-18 15:12:24 +053056
Vineet Guptada40ff42014-06-27 15:49:47 +053057 PR_CACHE(&cpuinfo_arc700[c].icache, CONFIG_ARC_HAS_ICACHE, "I-Cache");
58 PR_CACHE(&cpuinfo_arc700[c].dcache, CONFIG_ARC_HAS_DCACHE, "D-Cache");
Vineet Guptaaf617422013-01-18 15:12:24 +053059
Vineet Guptad1f317d2015-04-06 17:23:57 +053060 p = &cpuinfo_arc700[c].slc;
Vineet Guptaf64915b2016-12-19 11:24:08 -080061 if (p->line_len)
Vineet Guptad1f317d2015-04-06 17:23:57 +053062 n += scnprintf(buf + n, len - n,
Vineet Gupta79335a22015-06-04 18:30:23 +053063 "SLC\t\t: %uK, %uB Line%s\n",
64 p->sz_k, p->line_len, IS_USED_RUN(slc_enable));
Vineet Guptad1f317d2015-04-06 17:23:57 +053065
Vineet Gupta711c1f22016-10-13 15:53:02 -070066 n += scnprintf(buf + n, len - n, "Peripherals\t: %#lx%s%s\n",
67 perip_base,
Eugeniy Paltsev2820a702018-07-30 19:26:34 +030068 IS_AVAIL3(ioc_exists, ioc_enable, ", IO-Coherency (per-device) "));
Alexey Brodkinf2b0b252015-05-25 19:54:28 +030069
Vineet Guptaaf617422013-01-18 15:12:24 +053070 return buf;
71}
72
Vineet Gupta95d69762013-01-18 15:12:19 +053073/*
74 * Read the Cache Build Confuration Registers, Decode them and save into
75 * the cpuinfo structure for later use.
76 * No Validation done here, simply read/convert the BCRs
77 */
Vineet Guptafd0881a22015-08-21 15:06:43 +053078static void read_decode_cache_bcr_arcv2(int cpu)
Vineet Gupta95d69762013-01-18 15:12:19 +053079{
Vineet Guptafd0881a22015-08-21 15:06:43 +053080 struct cpuinfo_arc_cache *p_slc = &cpuinfo_arc700[cpu].slc;
Vineet Guptad1f317d2015-04-06 17:23:57 +053081 struct bcr_generic sbcr;
82
83 struct bcr_slc_cfg {
84#ifdef CONFIG_CPU_BIG_ENDIAN
85 unsigned int pad:24, way:2, lsz:2, sz:4;
86#else
87 unsigned int sz:4, lsz:2, way:2, pad:24;
88#endif
89 } slc_cfg;
90
Alexey Brodkinf2b0b252015-05-25 19:54:28 +030091 struct bcr_clust_cfg {
92#ifdef CONFIG_CPU_BIG_ENDIAN
93 unsigned int pad:7, c:1, num_entries:8, num_cores:8, ver:8;
94#else
95 unsigned int ver:8, num_cores:8, num_entries:8, c:1, pad:7;
96#endif
97 } cbcr;
98
Vineet Gupta26c01c42016-08-26 15:41:29 -070099 struct bcr_volatile {
100#ifdef CONFIG_CPU_BIG_ENDIAN
101 unsigned int start:4, limit:4, pad:22, order:1, disable:1;
102#else
103 unsigned int disable:1, order:1, pad:22, limit:4, start:4;
104#endif
105 } vol;
106
107
Vineet Guptafd0881a22015-08-21 15:06:43 +0530108 READ_BCR(ARC_REG_SLC_BCR, sbcr);
109 if (sbcr.ver) {
110 READ_BCR(ARC_REG_SLC_CFG, slc_cfg);
Vineet Guptafd0881a22015-08-21 15:06:43 +0530111 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 Gupta99bd5fc2019-03-21 17:19:37 -0700116 if (cbcr.c) {
Vineet Guptafd0881a22015-08-21 15:06:43 +0530117 ioc_exists = 1;
Vineet Gupta99bd5fc2019-03-21 17:19:37 -0700118
119 /*
120 * As for today we don't support both IOC and ZONE_HIGHMEM enabled
121 * simultaneously. This happens because as of today IOC aperture covers
122 * only ZONE_NORMAL (low mem) and any dma transactions outside this
123 * region won't be HW coherent.
124 * If we want to use both IOC and ZONE_HIGHMEM we can use
125 * bounce_buffer to handle dma transactions to HIGHMEM.
126 * Also it is possible to modify dma_direct cache ops or increase IOC
127 * aperture size if we are planning to use HIGHMEM without PAE.
128 */
129 if (IS_ENABLED(CONFIG_HIGHMEM) || is_pae40_enabled())
130 ioc_enable = 0;
131 } else {
Vineet Guptacf986d42016-10-13 15:58:59 -0700132 ioc_enable = 0;
Vineet Gupta99bd5fc2019-03-21 17:19:37 -0700133 }
Vineet Guptadeaf7562015-10-24 19:31:16 +0530134
Vineet Gupta26c01c42016-08-26 15:41:29 -0700135 /* HS 2.0 didn't have AUX_VOL */
136 if (cpuinfo_arc700[cpu].core.family > 0x51) {
137 READ_BCR(AUX_VOL, vol);
138 perip_base = vol.start << 28;
139 /* HS 3.0 has limit and strict-ordering fields */
140 if (cpuinfo_arc700[cpu].core.family > 0x52)
141 perip_end = (vol.limit << 28) - 1;
142 }
Vineet Guptafd0881a22015-08-21 15:06:43 +0530143}
144
145void read_decode_cache_bcr(void)
146{
147 struct cpuinfo_arc_cache *p_ic, *p_dc;
148 unsigned int cpu = smp_processor_id();
149 struct bcr_cache {
150#ifdef CONFIG_CPU_BIG_ENDIAN
151 unsigned int pad:12, line_len:4, sz:4, config:4, ver:8;
152#else
153 unsigned int ver:8, config:4, sz:4, line_len:4, pad:12;
154#endif
155 } ibcr, dbcr;
156
Vineet Gupta95d69762013-01-18 15:12:19 +0530157 p_ic = &cpuinfo_arc700[cpu].icache;
158 READ_BCR(ARC_REG_IC_BCR, ibcr);
159
Vineet Guptada40ff42014-06-27 15:49:47 +0530160 if (!ibcr.ver)
161 goto dc_chk;
162
Vineet Guptad1f317d2015-04-06 17:23:57 +0530163 if (ibcr.ver <= 3) {
164 BUG_ON(ibcr.config != 3);
165 p_ic->assoc = 2; /* Fixed to 2w set assoc */
166 } else if (ibcr.ver >= 4) {
167 p_ic->assoc = 1 << ibcr.config; /* 1,2,4,8 */
168 }
169
Vineet Gupta95d69762013-01-18 15:12:19 +0530170 p_ic->line_len = 8 << ibcr.line_len;
Vineet Guptada40ff42014-06-27 15:49:47 +0530171 p_ic->sz_k = 1 << (ibcr.sz - 1);
Vineet Guptada40ff42014-06-27 15:49:47 +0530172 p_ic->vipt = 1;
173 p_ic->alias = p_ic->sz_k/p_ic->assoc/TO_KB(PAGE_SIZE) > 1;
Vineet Gupta95d69762013-01-18 15:12:19 +0530174
Vineet Guptada40ff42014-06-27 15:49:47 +0530175dc_chk:
Vineet Gupta95d69762013-01-18 15:12:19 +0530176 p_dc = &cpuinfo_arc700[cpu].dcache;
177 READ_BCR(ARC_REG_DC_BCR, dbcr);
178
Vineet Guptada40ff42014-06-27 15:49:47 +0530179 if (!dbcr.ver)
Vineet Guptad1f317d2015-04-06 17:23:57 +0530180 goto slc_chk;
Vineet Guptada40ff42014-06-27 15:49:47 +0530181
Vineet Guptad1f317d2015-04-06 17:23:57 +0530182 if (dbcr.ver <= 3) {
183 BUG_ON(dbcr.config != 2);
184 p_dc->assoc = 4; /* Fixed to 4w set assoc */
185 p_dc->vipt = 1;
186 p_dc->alias = p_dc->sz_k/p_dc->assoc/TO_KB(PAGE_SIZE) > 1;
187 } else if (dbcr.ver >= 4) {
188 p_dc->assoc = 1 << dbcr.config; /* 1,2,4,8 */
189 p_dc->vipt = 0;
190 p_dc->alias = 0; /* PIPT so can't VIPT alias */
191 }
192
Vineet Gupta95d69762013-01-18 15:12:19 +0530193 p_dc->line_len = 16 << dbcr.line_len;
Vineet Guptada40ff42014-06-27 15:49:47 +0530194 p_dc->sz_k = 1 << (dbcr.sz - 1);
Vineet Guptad1f317d2015-04-06 17:23:57 +0530195
196slc_chk:
Vineet Guptafd0881a22015-08-21 15:06:43 +0530197 if (is_isa_arcv2())
198 read_decode_cache_bcr_arcv2(cpu);
Vineet Gupta95d69762013-01-18 15:12:19 +0530199}
200
201/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530202 * Line Operation on {I,D}-Cache
Vineet Gupta95d69762013-01-18 15:12:19 +0530203 */
Vineet Gupta95d69762013-01-18 15:12:19 +0530204
205#define OP_INV 0x1
206#define OP_FLUSH 0x2
207#define OP_FLUSH_N_INV 0x3
Vineet Guptabd129762013-09-05 13:43:03 +0530208#define OP_INV_IC 0x4
209
210/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530211 * I-Cache Aliasing in ARC700 VIPT caches (MMU v1-v3)
212 *
213 * ARC VIPT I-cache uses vaddr to index into cache and paddr to match the tag.
214 * The orig Cache Management Module "CDU" only required paddr to invalidate a
215 * certain line since it sufficed as index in Non-Aliasing VIPT cache-geometry.
216 * Infact for distinct V1,V2,P: all of {V1-P},{V2-P},{P-P} would end up fetching
217 * the exact same line.
218 *
219 * However for larger Caches (way-size > page-size) - i.e. in Aliasing config,
220 * paddr alone could not be used to correctly index the cache.
221 *
222 * ------------------
223 * MMU v1/v2 (Fixed Page Size 8k)
224 * ------------------
225 * The solution was to provide CDU with these additonal vaddr bits. These
226 * would be bits [x:13], x would depend on cache-geometry, 13 comes from
227 * standard page size of 8k.
228 * H/w folks chose [17:13] to be a future safe range, and moreso these 5 bits
229 * of vaddr could easily be "stuffed" in the paddr as bits [4:0] since the
230 * orig 5 bits of paddr were anyways ignored by CDU line ops, as they
231 * represent the offset within cache-line. The adv of using this "clumsy"
232 * interface for additional info was no new reg was needed in CDU programming
233 * model.
234 *
235 * 17:13 represented the max num of bits passable, actual bits needed were
236 * fewer, based on the num-of-aliases possible.
237 * -for 2 alias possibility, only bit 13 needed (32K cache)
238 * -for 4 alias possibility, bits 14:13 needed (64K cache)
239 *
240 * ------------------
241 * MMU v3
242 * ------------------
243 * This ver of MMU supports variable page sizes (1k-16k): although Linux will
244 * only support 8k (default), 16k and 4k.
Andrea Gelmini25474762016-05-21 13:45:35 +0200245 * However from hardware perspective, smaller page sizes aggravate aliasing
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530246 * meaning more vaddr bits needed to disambiguate the cache-line-op ;
247 * the existing scheme of piggybacking won't work for certain configurations.
248 * Two new registers IC_PTAG and DC_PTAG inttoduced.
249 * "tag" bits are provided in PTAG, index bits in existing IVIL/IVDL/FLDL regs
Vineet Guptabd129762013-09-05 13:43:03 +0530250 */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530251
Vineet Gupta11e14892014-08-04 08:32:31 -0700252static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700253void __cache_line_loop_v2(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800254 unsigned long sz, const int op, const int full_page)
Vineet Guptabd129762013-09-05 13:43:03 +0530255{
Vineet Gupta11e14892014-08-04 08:32:31 -0700256 unsigned int aux_cmd;
Vineet Guptabd129762013-09-05 13:43:03 +0530257 int num_lines;
258
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530259 if (op == OP_INV_IC) {
Vineet Guptabd129762013-09-05 13:43:03 +0530260 aux_cmd = ARC_REG_IC_IVIL;
Vineet Gupta11e14892014-08-04 08:32:31 -0700261 } else {
Vineet Guptabd129762013-09-05 13:43:03 +0530262 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530263 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
Vineet Guptabd129762013-09-05 13:43:03 +0530264 }
265
266 /* Ensure we properly floor/ceil the non-line aligned/sized requests
267 * and have @paddr - aligned to cache line and integral @num_lines.
268 * This however can be avoided for page sized since:
269 * -@paddr will be cache-line aligned already (being page aligned)
270 * -@sz will be integral multiple of line size (being page sized).
271 */
Vineet Gupta11e14892014-08-04 08:32:31 -0700272 if (!full_page) {
Vineet Guptabd129762013-09-05 13:43:03 +0530273 sz += paddr & ~CACHE_LINE_MASK;
274 paddr &= CACHE_LINE_MASK;
275 vaddr &= CACHE_LINE_MASK;
276 }
277
278 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
279
Vineet Guptabd129762013-09-05 13:43:03 +0530280 /* MMUv2 and before: paddr contains stuffed vaddrs bits */
281 paddr |= (vaddr >> PAGE_SHIFT) & 0x1F;
Vineet Guptabd129762013-09-05 13:43:03 +0530282
283 while (num_lines-- > 0) {
Vineet Gupta11e14892014-08-04 08:32:31 -0700284 write_aux_reg(aux_cmd, paddr);
285 paddr += L1_CACHE_BYTES;
286 }
287}
288
Vineet Gupta5a364c22015-02-06 18:44:57 +0300289/*
290 * For ARC700 MMUv3 I-cache and D-cache flushes
Vineet Guptafa84d732017-01-04 12:02:44 -0800291 * - ARC700 programming model requires paddr and vaddr be passed in seperate
292 * AUX registers (*_IV*L and *_PTAG respectively) irrespective of whether the
293 * caches actually alias or not.
294 * - For HS38, only the aliasing I-cache configuration uses the PTAG reg
295 * (non aliasing I-cache version doesn't; while D-cache can't possibly alias)
Vineet Gupta5a364c22015-02-06 18:44:57 +0300296 */
Vineet Gupta11e14892014-08-04 08:32:31 -0700297static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700298void __cache_line_loop_v3(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800299 unsigned long sz, const int op, const int full_page)
Vineet Gupta11e14892014-08-04 08:32:31 -0700300{
301 unsigned int aux_cmd, aux_tag;
302 int num_lines;
Vineet Gupta11e14892014-08-04 08:32:31 -0700303
304 if (op == OP_INV_IC) {
305 aux_cmd = ARC_REG_IC_IVIL;
306 aux_tag = ARC_REG_IC_PTAG;
307 } else {
308 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
309 aux_tag = ARC_REG_DC_PTAG;
310 }
311
312 /* Ensure we properly floor/ceil the non-line aligned/sized requests
313 * and have @paddr - aligned to cache line and integral @num_lines.
314 * This however can be avoided for page sized since:
315 * -@paddr will be cache-line aligned already (being page aligned)
316 * -@sz will be integral multiple of line size (being page sized).
317 */
318 if (!full_page) {
319 sz += paddr & ~CACHE_LINE_MASK;
320 paddr &= CACHE_LINE_MASK;
321 vaddr &= CACHE_LINE_MASK;
322 }
323 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
324
325 /*
326 * MMUv3, cache ops require paddr in PTAG reg
327 * if V-P const for loop, PTAG can be written once outside loop
328 */
329 if (full_page)
330 write_aux_reg(aux_tag, paddr);
331
Vineet Gupta5a364c22015-02-06 18:44:57 +0300332 /*
333 * This is technically for MMU v4, using the MMU v3 programming model
Andrea Gelmini25474762016-05-21 13:45:35 +0200334 * Special work for HS38 aliasing I-cache configuration with PAE40
Vineet Gupta5a364c22015-02-06 18:44:57 +0300335 * - upper 8 bits of paddr need to be written into PTAG_HI
336 * - (and needs to be written before the lower 32 bits)
337 * Note that PTAG_HI is hoisted outside the line loop
338 */
339 if (is_pae40_enabled() && op == OP_INV_IC)
340 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
341
Vineet Gupta11e14892014-08-04 08:32:31 -0700342 while (num_lines-- > 0) {
343 if (!full_page) {
Vineet Guptad4599ba2013-09-05 14:45:51 +0530344 write_aux_reg(aux_tag, paddr);
345 paddr += L1_CACHE_BYTES;
346 }
Vineet Guptabd129762013-09-05 13:43:03 +0530347
348 write_aux_reg(aux_cmd, vaddr);
349 vaddr += L1_CACHE_BYTES;
Vineet Guptabd129762013-09-05 13:43:03 +0530350 }
351}
Vineet Gupta95d69762013-01-18 15:12:19 +0530352
Vineet Gupta0d771172014-08-29 10:55:15 +0530353#ifndef USE_RGN_FLSH
354
Vineet Guptad1f317d2015-04-06 17:23:57 +0530355/*
Vineet Gupta5a364c22015-02-06 18:44:57 +0300356 * In HS38x (MMU v4), I-cache is VIPT (can alias), D-cache is PIPT
357 * Here's how cache ops are implemented
Vineet Guptad1f317d2015-04-06 17:23:57 +0530358 *
Vineet Gupta5a364c22015-02-06 18:44:57 +0300359 * - D-cache: only paddr needed (in DC_IVDL/DC_FLDL)
360 * - I-cache Non Aliasing: Despite VIPT, only paddr needed (in IC_IVIL)
361 * - I-cache Aliasing: Both vaddr and paddr needed (in IC_IVIL, IC_PTAG
362 * respectively, similar to MMU v3 programming model, hence
363 * __cache_line_loop_v3() is used)
364 *
365 * If PAE40 is enabled, independent of aliasing considerations, the higher bits
366 * needs to be written into PTAG_HI
Vineet Guptad1f317d2015-04-06 17:23:57 +0530367 */
368static inline
Vineet Gupta28b4af72015-09-14 18:43:42 -0700369void __cache_line_loop_v4(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800370 unsigned long sz, const int op, const int full_page)
Vineet Guptad1f317d2015-04-06 17:23:57 +0530371{
372 unsigned int aux_cmd;
373 int num_lines;
Vineet Guptad1f317d2015-04-06 17:23:57 +0530374
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800375 if (op == OP_INV_IC) {
Vineet Guptad1f317d2015-04-06 17:23:57 +0530376 aux_cmd = ARC_REG_IC_IVIL;
377 } else {
378 /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800379 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
Vineet Guptad1f317d2015-04-06 17:23:57 +0530380 }
381
382 /* Ensure we properly floor/ceil the non-line aligned/sized requests
383 * and have @paddr - aligned to cache line and integral @num_lines.
384 * This however can be avoided for page sized since:
385 * -@paddr will be cache-line aligned already (being page aligned)
386 * -@sz will be integral multiple of line size (being page sized).
387 */
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800388 if (!full_page) {
Vineet Guptad1f317d2015-04-06 17:23:57 +0530389 sz += paddr & ~CACHE_LINE_MASK;
390 paddr &= CACHE_LINE_MASK;
391 }
392
393 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
394
Vineet Gupta5a364c22015-02-06 18:44:57 +0300395 /*
396 * For HS38 PAE40 configuration
397 * - upper 8 bits of paddr need to be written into PTAG_HI
398 * - (and needs to be written before the lower 32 bits)
399 */
400 if (is_pae40_enabled()) {
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800401 if (op == OP_INV_IC)
Vineet Gupta5a364c22015-02-06 18:44:57 +0300402 /*
403 * Non aliasing I-cache in HS38,
404 * aliasing I-cache handled in __cache_line_loop_v3()
405 */
406 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
407 else
408 write_aux_reg(ARC_REG_DC_PTAG_HI, (u64)paddr >> 32);
409 }
410
Vineet Guptad1f317d2015-04-06 17:23:57 +0530411 while (num_lines-- > 0) {
412 write_aux_reg(aux_cmd, paddr);
413 paddr += L1_CACHE_BYTES;
414 }
415}
416
Vineet Gupta0d771172014-08-29 10:55:15 +0530417#else
418
419/*
420 * optimized flush operation which takes a region as opposed to iterating per line
421 */
422static inline
423void __cache_line_loop_v4(phys_addr_t paddr, unsigned long vaddr,
424 unsigned long sz, const int op, const int full_page)
425{
Vineet Guptaee40bd12017-05-02 15:28:12 -0700426 unsigned int s, e;
Vineet Gupta0d771172014-08-29 10:55:15 +0530427
428 /* Only for Non aliasing I-cache in HS38 */
429 if (op == OP_INV_IC) {
430 s = ARC_REG_IC_IVIR;
431 e = ARC_REG_IC_ENDR;
432 } else {
433 s = ARC_REG_DC_STARTR;
434 e = ARC_REG_DC_ENDR;
435 }
436
437 if (!full_page) {
438 /* for any leading gap between @paddr and start of cache line */
439 sz += paddr & ~CACHE_LINE_MASK;
440 paddr &= CACHE_LINE_MASK;
441
442 /*
443 * account for any trailing gap to end of cache line
444 * this is equivalent to DIV_ROUND_UP() in line ops above
445 */
446 sz += L1_CACHE_BYTES - 1;
447 }
448
449 if (is_pae40_enabled()) {
450 /* TBD: check if crossing 4TB boundary */
451 if (op == OP_INV_IC)
452 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
453 else
454 write_aux_reg(ARC_REG_DC_PTAG_HI, (u64)paddr >> 32);
455 }
456
Vineet Gupta0d771172014-08-29 10:55:15 +0530457 /* ENDR needs to be set ahead of START */
458 write_aux_reg(e, paddr + sz); /* ENDR is exclusive */
459 write_aux_reg(s, paddr);
460
461 /* caller waits on DC_CTRL.FS */
462}
463
464#endif
465
Vineet Gupta11e14892014-08-04 08:32:31 -0700466#if (CONFIG_ARC_MMU_VER < 3)
467#define __cache_line_loop __cache_line_loop_v2
468#elif (CONFIG_ARC_MMU_VER == 3)
469#define __cache_line_loop __cache_line_loop_v3
Vineet Guptad1f317d2015-04-06 17:23:57 +0530470#elif (CONFIG_ARC_MMU_VER > 3)
471#define __cache_line_loop __cache_line_loop_v4
Vineet Gupta11e14892014-08-04 08:32:31 -0700472#endif
473
Vineet Gupta95d69762013-01-18 15:12:19 +0530474#ifdef CONFIG_ARC_HAS_DCACHE
475
476/***************************************************************
477 * Machine specific helpers for Entire D-Cache or Per Line ops
478 */
479
Vineet Guptaee40bd12017-05-02 15:28:12 -0700480#ifndef USE_RGN_FLSH
481/*
482 * this version avoids extra read/write of DC_CTRL for flush or invalid ops
483 * in the non region flush regime (such as for ARCompact)
484 */
Vineet Gupta6c310682015-06-04 08:53:47 +0530485static inline void __before_dc_op(const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530486{
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530487 if (op == OP_FLUSH_N_INV) {
488 /* Dcache provides 2 cmd: FLUSH or INV
489 * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE
490 * flush-n-inv is achieved by INV cmd but with IM=1
491 * So toggle INV sub-mode depending on op request and default
492 */
Vineet Gupta6c310682015-06-04 08:53:47 +0530493 const unsigned int ctl = ARC_REG_DC_CTRL;
494 write_aux_reg(ctl, read_aux_reg(ctl) | DC_CTRL_INV_MODE_FLUSH);
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530495 }
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530496}
497
Vineet Guptaee40bd12017-05-02 15:28:12 -0700498#else
499
500static inline void __before_dc_op(const int op)
501{
502 const unsigned int ctl = ARC_REG_DC_CTRL;
503 unsigned int val = read_aux_reg(ctl);
504
505 if (op == OP_FLUSH_N_INV) {
506 val |= DC_CTRL_INV_MODE_FLUSH;
507 }
508
509 if (op != OP_INV_IC) {
510 /*
511 * Flush / Invalidate is provided by DC_CTRL.RNG_OP 0 or 1
512 * combined Flush-n-invalidate uses DC_CTRL.IM = 1 set above
513 */
514 val &= ~DC_CTRL_RGN_OP_MSK;
515 if (op & OP_INV)
516 val |= DC_CTRL_RGN_OP_INV;
517 }
518 write_aux_reg(ctl, val);
519}
520
521#endif
522
523
Vineet Gupta6c310682015-06-04 08:53:47 +0530524static inline void __after_dc_op(const int op)
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530525{
Vineet Gupta6c310682015-06-04 08:53:47 +0530526 if (op & OP_FLUSH) {
527 const unsigned int ctl = ARC_REG_DC_CTRL;
528 unsigned int reg;
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530529
Vineet Gupta6c310682015-06-04 08:53:47 +0530530 /* flush / flush-n-inv both wait */
531 while ((reg = read_aux_reg(ctl)) & DC_CTRL_FLUSH_STATUS)
532 ;
533
534 /* Switch back to default Invalidate mode */
535 if (op == OP_FLUSH_N_INV)
536 write_aux_reg(ctl, reg & ~DC_CTRL_INV_MODE_FLUSH);
537 }
Vineet Gupta95d69762013-01-18 15:12:19 +0530538}
539
540/*
541 * Operation on Entire D-Cache
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530542 * @op = {OP_INV, OP_FLUSH, OP_FLUSH_N_INV}
Vineet Gupta95d69762013-01-18 15:12:19 +0530543 * Note that constant propagation ensures all the checks are gone
544 * in generated code
545 */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530546static inline void __dc_entire_op(const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530547{
Vineet Gupta95d69762013-01-18 15:12:19 +0530548 int aux;
549
Vineet Gupta6c310682015-06-04 08:53:47 +0530550 __before_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530551
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530552 if (op & OP_INV) /* Inv or flush-n-inv use same cmd reg */
Vineet Gupta95d69762013-01-18 15:12:19 +0530553 aux = ARC_REG_DC_IVDC;
554 else
555 aux = ARC_REG_DC_FLSH;
556
557 write_aux_reg(aux, 0x1);
558
Vineet Gupta6c310682015-06-04 08:53:47 +0530559 __after_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530560}
561
Vineet Gupta8c47f832016-06-22 16:01:19 +0530562static inline void __dc_disable(void)
563{
564 const int r = ARC_REG_DC_CTRL;
565
566 __dc_entire_op(OP_FLUSH_N_INV);
567 write_aux_reg(r, read_aux_reg(r) | DC_CTRL_DIS);
568}
569
570static void __dc_enable(void)
571{
572 const int r = ARC_REG_DC_CTRL;
573
574 write_aux_reg(r, read_aux_reg(r) & ~DC_CTRL_DIS);
575}
576
Vineet Gupta4102b532013-05-09 21:54:51 +0530577/* For kernel mappings cache operation: index is same as paddr */
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530578#define __dc_line_op_k(p, sz, op) __dc_line_op(p, p, sz, op)
579
Vineet Gupta95d69762013-01-18 15:12:19 +0530580/*
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530581 * D-Cache Line ops: Per Line INV (discard or wback+discard) or FLUSH (wback)
Vineet Gupta95d69762013-01-18 15:12:19 +0530582 */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700583static inline void __dc_line_op(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530584 unsigned long sz, const int op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530585{
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800586 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
Vineet Gupta1b1a22b2014-06-29 19:03:58 +0530587 unsigned long flags;
Vineet Gupta95d69762013-01-18 15:12:19 +0530588
589 local_irq_save(flags);
590
Vineet Gupta6c310682015-06-04 08:53:47 +0530591 __before_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530592
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800593 __cache_line_loop(paddr, vaddr, sz, op, full_page);
Vineet Gupta95d69762013-01-18 15:12:19 +0530594
Vineet Gupta6c310682015-06-04 08:53:47 +0530595 __after_dc_op(op);
Vineet Gupta95d69762013-01-18 15:12:19 +0530596
597 local_irq_restore(flags);
598}
599
600#else
601
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530602#define __dc_entire_op(op)
Vineet Gupta8c47f832016-06-22 16:01:19 +0530603#define __dc_disable()
604#define __dc_enable()
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +0530605#define __dc_line_op(paddr, vaddr, sz, op)
606#define __dc_line_op_k(paddr, sz, op)
Vineet Gupta95d69762013-01-18 15:12:19 +0530607
608#endif /* CONFIG_ARC_HAS_DCACHE */
609
Vineet Gupta95d69762013-01-18 15:12:19 +0530610#ifdef CONFIG_ARC_HAS_ICACHE
611
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530612static inline void __ic_entire_inv(void)
613{
614 write_aux_reg(ARC_REG_IC_IVIC, 1);
615 read_aux_reg(ARC_REG_IC_CTRL); /* blocks */
616}
617
618static inline void
Vineet Gupta28b4af72015-09-14 18:43:42 -0700619__ic_line_inv_vaddr_local(phys_addr_t paddr, unsigned long vaddr,
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530620 unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530621{
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800622 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
Vineet Gupta95d69762013-01-18 15:12:19 +0530623 unsigned long flags;
Vineet Gupta95d69762013-01-18 15:12:19 +0530624
625 local_irq_save(flags);
Vineet Gupta7d3d1622017-01-23 19:32:23 -0800626 (*_cache_line_loop_ic_fn)(paddr, vaddr, sz, OP_INV_IC, full_page);
Vineet Gupta95d69762013-01-18 15:12:19 +0530627 local_irq_restore(flags);
628}
629
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530630#ifndef CONFIG_SMP
Vineet Gupta336e1992013-06-22 19:22:42 +0530631
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530632#define __ic_line_inv_vaddr(p, v, s) __ic_line_inv_vaddr_local(p, v, s)
633
634#else
635
636struct ic_inv_args {
Vineet Gupta28b4af72015-09-14 18:43:42 -0700637 phys_addr_t paddr, vaddr;
Vineet Gupta2328af02013-02-17 12:51:42 +0200638 int sz;
639};
640
641static void __ic_line_inv_vaddr_helper(void *info)
642{
Noam Camus014018e2014-09-03 14:41:11 +0300643 struct ic_inv_args *ic_inv = info;
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530644
Vineet Gupta2328af02013-02-17 12:51:42 +0200645 __ic_line_inv_vaddr_local(ic_inv->paddr, ic_inv->vaddr, ic_inv->sz);
646}
647
Vineet Gupta28b4af72015-09-14 18:43:42 -0700648static void __ic_line_inv_vaddr(phys_addr_t paddr, unsigned long vaddr,
Vineet Gupta2328af02013-02-17 12:51:42 +0200649 unsigned long sz)
650{
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530651 struct ic_inv_args ic_inv = {
652 .paddr = paddr,
653 .vaddr = vaddr,
654 .sz = sz
655 };
656
Vineet Gupta2328af02013-02-17 12:51:42 +0200657 on_each_cpu(__ic_line_inv_vaddr_helper, &ic_inv, 1);
658}
Vineet Guptaaf5abf12014-07-09 14:59:47 +0530659
660#endif /* CONFIG_SMP */
661
662#else /* !CONFIG_ARC_HAS_ICACHE */
Vineet Gupta95d69762013-01-18 15:12:19 +0530663
Vineet Gupta336e1992013-06-22 19:22:42 +0530664#define __ic_entire_inv()
Vineet Gupta95d69762013-01-18 15:12:19 +0530665#define __ic_line_inv_vaddr(pstart, vstart, sz)
666
667#endif /* CONFIG_ARC_HAS_ICACHE */
668
Vineet Guptaae0b63d2017-08-01 10:23:27 +0530669noinline void slc_op_rgn(phys_addr_t paddr, unsigned long sz, const int op)
Vineet Gupta795f4552015-04-03 12:37:07 +0300670{
671#ifdef CONFIG_ISA_ARCV2
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300672 /*
673 * SLC is shared between all cores and concurrent aux operations from
674 * multiple cores need to be serialized using a spinlock
675 * A concurrent operation can be silently ignored and/or the old/new
676 * operation can remain incomplete forever (lockup in SLC_CTRL_BUSY loop
677 * below)
678 */
679 static DEFINE_SPINLOCK(lock);
Vineet Gupta795f4552015-04-03 12:37:07 +0300680 unsigned long flags;
681 unsigned int ctrl;
Alexey Brodkin7d79cee2017-08-01 12:58:47 +0300682 phys_addr_t end;
Vineet Gupta795f4552015-04-03 12:37:07 +0300683
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300684 spin_lock_irqsave(&lock, flags);
Vineet Gupta795f4552015-04-03 12:37:07 +0300685
686 /*
687 * The Region Flush operation is specified by CTRL.RGN_OP[11..9]
688 * - b'000 (default) is Flush,
689 * - b'001 is Invalidate if CTRL.IM == 0
690 * - b'001 is Flush-n-Invalidate if CTRL.IM == 1
691 */
692 ctrl = read_aux_reg(ARC_REG_SLC_CTRL);
693
694 /* Don't rely on default value of IM bit */
695 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
696 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
697 else
698 ctrl |= SLC_CTRL_IM;
699
700 if (op & OP_INV)
701 ctrl |= SLC_CTRL_RGN_OP_INV; /* Inv or flush-n-inv */
702 else
703 ctrl &= ~SLC_CTRL_RGN_OP_INV;
704
705 write_aux_reg(ARC_REG_SLC_CTRL, ctrl);
706
707 /*
708 * Lower bits are ignored, no need to clip
709 * END needs to be setup before START (latter triggers the operation)
710 * END can't be same as START, so add (l2_line_sz - 1) to sz
711 */
Alexey Brodkin7d79cee2017-08-01 12:58:47 +0300712 end = paddr + sz + l2_line_sz - 1;
713 if (is_pae40_enabled())
714 write_aux_reg(ARC_REG_SLC_RGN_END1, upper_32_bits(end));
715
716 write_aux_reg(ARC_REG_SLC_RGN_END, lower_32_bits(end));
717
718 if (is_pae40_enabled())
719 write_aux_reg(ARC_REG_SLC_RGN_START1, upper_32_bits(paddr));
720
721 write_aux_reg(ARC_REG_SLC_RGN_START, lower_32_bits(paddr));
Vineet Gupta795f4552015-04-03 12:37:07 +0300722
Alexey Brodkinb37174d2017-07-07 12:25:14 +0300723 /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */
724 read_aux_reg(ARC_REG_SLC_CTRL);
725
Vineet Gupta795f4552015-04-03 12:37:07 +0300726 while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY);
727
Alexey Brodkinb607edd2015-06-29 15:24:37 +0300728 spin_unlock_irqrestore(&lock, flags);
Vineet Gupta795f4552015-04-03 12:37:07 +0300729#endif
730}
731
Vineet Guptaae0b63d2017-08-01 10:23:27 +0530732noinline void slc_op_line(phys_addr_t paddr, unsigned long sz, const int op)
733{
734#ifdef CONFIG_ISA_ARCV2
735 /*
736 * SLC is shared between all cores and concurrent aux operations from
737 * multiple cores need to be serialized using a spinlock
738 * A concurrent operation can be silently ignored and/or the old/new
739 * operation can remain incomplete forever (lockup in SLC_CTRL_BUSY loop
740 * below)
741 */
742 static DEFINE_SPINLOCK(lock);
743
744 const unsigned long SLC_LINE_MASK = ~(l2_line_sz - 1);
745 unsigned int ctrl, cmd;
746 unsigned long flags;
747 int num_lines;
748
749 spin_lock_irqsave(&lock, flags);
750
751 ctrl = read_aux_reg(ARC_REG_SLC_CTRL);
752
753 /* Don't rely on default value of IM bit */
754 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
755 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
756 else
757 ctrl |= SLC_CTRL_IM;
758
759 write_aux_reg(ARC_REG_SLC_CTRL, ctrl);
760
761 cmd = op & OP_INV ? ARC_AUX_SLC_IVDL : ARC_AUX_SLC_FLDL;
762
763 sz += paddr & ~SLC_LINE_MASK;
764 paddr &= SLC_LINE_MASK;
765
766 num_lines = DIV_ROUND_UP(sz, l2_line_sz);
767
768 while (num_lines-- > 0) {
769 write_aux_reg(cmd, paddr);
770 paddr += l2_line_sz;
771 }
772
773 /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */
774 read_aux_reg(ARC_REG_SLC_CTRL);
775
776 while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY);
777
778 spin_unlock_irqrestore(&lock, flags);
779#endif
780}
781
782#define slc_op(paddr, sz, op) slc_op_rgn(paddr, sz, op)
783
Vineet Guptad4911cd2016-06-22 15:43:22 +0530784noinline static void slc_entire_op(const int op)
785{
786 unsigned int ctrl, r = ARC_REG_SLC_CTRL;
787
788 ctrl = read_aux_reg(r);
789
790 if (!(op & OP_FLUSH)) /* i.e. OP_INV */
791 ctrl &= ~SLC_CTRL_IM; /* clear IM: Disable flush before Inv */
792 else
793 ctrl |= SLC_CTRL_IM;
794
795 write_aux_reg(r, ctrl);
796
Eugeniy Paltsev8bbfbc22018-01-17 16:39:17 +0300797 if (op & OP_INV) /* Inv or flush-n-inv use same cmd reg */
798 write_aux_reg(ARC_REG_SLC_INVALIDATE, 0x1);
799 else
800 write_aux_reg(ARC_REG_SLC_FLUSH, 0x1);
Vineet Guptad4911cd2016-06-22 15:43:22 +0530801
Alexey Brodkinc70c4732017-03-29 17:15:11 +0300802 /* Make sure "busy" bit reports correct stataus, see STAR 9001165532 */
803 read_aux_reg(r);
804
Vineet Guptad4911cd2016-06-22 15:43:22 +0530805 /* Important to wait for flush to complete */
806 while (read_aux_reg(r) & SLC_CTRL_BUSY);
807}
808
809static inline void arc_slc_disable(void)
810{
811 const int r = ARC_REG_SLC_CTRL;
812
813 slc_entire_op(OP_FLUSH_N_INV);
814 write_aux_reg(r, read_aux_reg(r) | SLC_CTRL_DIS);
815}
816
817static inline void arc_slc_enable(void)
818{
819 const int r = ARC_REG_SLC_CTRL;
820
821 write_aux_reg(r, read_aux_reg(r) & ~SLC_CTRL_DIS);
822}
823
Vineet Gupta95d69762013-01-18 15:12:19 +0530824/***********************************************************
825 * Exported APIs
826 */
827
Vineet Gupta4102b532013-05-09 21:54:51 +0530828/*
829 * Handle cache congruency of kernel and userspace mappings of page when kernel
830 * writes-to/reads-from
831 *
832 * The idea is to defer flushing of kernel mapping after a WRITE, possible if:
833 * -dcache is NOT aliasing, hence any U/K-mappings of page are congruent
834 * -U-mapping doesn't exist yet for page (finalised in update_mmu_cache)
835 * -In SMP, if hardware caches are coherent
836 *
837 * There's a corollary case, where kernel READs from a userspace mapped page.
838 * If the U-mapping is not congruent to to K-mapping, former needs flushing.
839 */
Vineet Gupta95d69762013-01-18 15:12:19 +0530840void flush_dcache_page(struct page *page)
841{
Vineet Gupta4102b532013-05-09 21:54:51 +0530842 struct address_space *mapping;
843
844 if (!cache_is_vipt_aliasing()) {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530845 clear_bit(PG_dc_clean, &page->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +0530846 return;
847 }
848
849 /* don't handle anon pages here */
Huang Yingcb9f7532018-04-05 16:24:39 -0700850 mapping = page_mapping_file(page);
Vineet Gupta4102b532013-05-09 21:54:51 +0530851 if (!mapping)
852 return;
853
854 /*
855 * pagecache page, file not yet mapped to userspace
856 * Make a note that K-mapping is dirty
857 */
858 if (!mapping_mapped(mapping)) {
Vineet Gupta2ed21da2013-05-13 17:23:58 +0530859 clear_bit(PG_dc_clean, &page->flags);
Kirill A. Shutemove1534ae2016-01-15 16:53:46 -0800860 } else if (page_mapcount(page)) {
Vineet Gupta4102b532013-05-09 21:54:51 +0530861
862 /* kernel reading from page with U-mapping */
Vineet Gupta28b4af72015-09-14 18:43:42 -0700863 phys_addr_t paddr = (unsigned long)page_address(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300864 unsigned long vaddr = page->index << PAGE_SHIFT;
Vineet Gupta4102b532013-05-09 21:54:51 +0530865
866 if (addr_not_cache_congruent(paddr, vaddr))
867 __flush_dcache_page(paddr, vaddr);
868 }
Vineet Gupta95d69762013-01-18 15:12:19 +0530869}
870EXPORT_SYMBOL(flush_dcache_page);
871
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300872/*
873 * DMA ops for systems with L1 cache only
874 * Make memory coherent with L1 cache by flushing/invalidating L1 lines
875 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530876static void __dma_cache_wback_inv_l1(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530877{
Vineet Gupta6ec18a82013-05-09 15:10:18 +0530878 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300879}
Vineet Gupta795f4552015-04-03 12:37:07 +0300880
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530881static void __dma_cache_inv_l1(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300882{
883 __dc_line_op_k(start, sz, OP_INV);
884}
885
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530886static void __dma_cache_wback_l1(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300887{
888 __dc_line_op_k(start, sz, OP_FLUSH);
889}
890
891/*
892 * DMA ops for systems with both L1 and L2 caches, but without IOC
Adam Buchbinder7423cc02016-02-23 15:24:55 -0800893 * Both L1 and L2 lines need to be explicitly flushed/invalidated
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300894 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530895static void __dma_cache_wback_inv_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300896{
897 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
898 slc_op(start, sz, OP_FLUSH_N_INV);
899}
900
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530901static void __dma_cache_inv_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300902{
903 __dc_line_op_k(start, sz, OP_INV);
904 slc_op(start, sz, OP_INV);
905}
906
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530907static void __dma_cache_wback_slc(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300908{
909 __dc_line_op_k(start, sz, OP_FLUSH);
910 slc_op(start, sz, OP_FLUSH);
911}
912
913/*
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300914 * Exported DMA API
915 */
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530916void dma_cache_wback_inv(phys_addr_t start, unsigned long sz)
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300917{
918 __dma_cache_wback_inv(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530919}
920EXPORT_SYMBOL(dma_cache_wback_inv);
921
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530922void dma_cache_inv(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530923{
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300924 __dma_cache_inv(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530925}
926EXPORT_SYMBOL(dma_cache_inv);
927
Vineet Guptaf5db19e2016-03-16 15:04:39 +0530928void dma_cache_wback(phys_addr_t start, unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530929{
Alexey Brodkinf2b0b252015-05-25 19:54:28 +0300930 __dma_cache_wback(start, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530931}
932EXPORT_SYMBOL(dma_cache_wback);
933
934/*
Vineet Gupta7586bf722013-04-12 12:18:25 +0530935 * This is API for making I/D Caches consistent when modifying
936 * kernel code (loadable modules, kprobes, kgdb...)
Vineet Gupta95d69762013-01-18 15:12:19 +0530937 * This is called on insmod, with kernel virtual address for CODE of
938 * the module. ARC cache maintenance ops require PHY address thus we
939 * need to convert vmalloc addr to PHY addr
940 */
941void flush_icache_range(unsigned long kstart, unsigned long kend)
942{
Vineet Guptac59414c2014-09-24 11:36:20 +0530943 unsigned int tot_sz;
Vineet Gupta95d69762013-01-18 15:12:19 +0530944
Vineet Guptac59414c2014-09-24 11:36:20 +0530945 WARN(kstart < TASK_SIZE, "%s() can't handle user vaddr", __func__);
Vineet Gupta95d69762013-01-18 15:12:19 +0530946
947 /* Shortcut for bigger flush ranges.
948 * Here we don't care if this was kernel virtual or phy addr
949 */
950 tot_sz = kend - kstart;
951 if (tot_sz > PAGE_SIZE) {
952 flush_cache_all();
953 return;
954 }
955
956 /* Case: Kernel Phy addr (0x8000_0000 onwards) */
957 if (likely(kstart > PAGE_OFFSET)) {
Vineet Gupta7586bf722013-04-12 12:18:25 +0530958 /*
959 * The 2nd arg despite being paddr will be used to index icache
960 * This is OK since no alternate virtual mappings will exist
961 * given the callers for this case: kprobe/kgdb in built-in
962 * kernel code only.
963 */
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530964 __sync_icache_dcache(kstart, kstart, kend - kstart);
Vineet Gupta95d69762013-01-18 15:12:19 +0530965 return;
966 }
967
968 /*
969 * Case: Kernel Vaddr (0x7000_0000 to 0x7fff_ffff)
970 * (1) ARC Cache Maintenance ops only take Phy addr, hence special
971 * handling of kernel vaddr.
972 *
973 * (2) Despite @tot_sz being < PAGE_SIZE (bigger cases handled already),
974 * it still needs to handle a 2 page scenario, where the range
975 * straddles across 2 virtual pages and hence need for loop
976 */
977 while (tot_sz > 0) {
Vineet Guptac59414c2014-09-24 11:36:20 +0530978 unsigned int off, sz;
979 unsigned long phy, pfn;
980
Vineet Gupta95d69762013-01-18 15:12:19 +0530981 off = kstart % PAGE_SIZE;
982 pfn = vmalloc_to_pfn((void *)kstart);
983 phy = (pfn << PAGE_SHIFT) + off;
984 sz = min_t(unsigned int, tot_sz, PAGE_SIZE - off);
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530985 __sync_icache_dcache(phy, kstart, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530986 kstart += sz;
987 tot_sz -= sz;
988 }
989}
Pranith Kumare3560302014-08-29 15:19:09 -0700990EXPORT_SYMBOL(flush_icache_range);
Vineet Gupta95d69762013-01-18 15:12:19 +0530991
992/*
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530993 * General purpose helper to make I and D cache lines consistent.
994 * @paddr is phy addr of region
Vineet Gupta4b06ff32013-07-10 11:40:27 +0530995 * @vaddr is typically user vaddr (breakpoint) or kernel vaddr (vmalloc)
996 * However in one instance, when called by kprobe (for a breakpt in
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530997 * builtin kernel code) @vaddr will be paddr only, meaning CDU operation will
998 * use a paddr to index the cache (despite VIPT). This is fine since since a
Vineet Gupta4b06ff32013-07-10 11:40:27 +0530999 * builtin kernel page will not have any virtual mappings.
1000 * kprobe on loadable module will be kernel vaddr.
Vineet Gupta95d69762013-01-18 15:12:19 +05301001 */
Vineet Gupta28b4af72015-09-14 18:43:42 -07001002void __sync_icache_dcache(phys_addr_t paddr, unsigned long vaddr, int len)
Vineet Gupta95d69762013-01-18 15:12:19 +05301003{
Vineet Guptaf5388812013-05-16 12:19:29 +05301004 __dc_line_op(paddr, vaddr, len, OP_FLUSH_N_INV);
Vineet Gupta2328af02013-02-17 12:51:42 +02001005 __ic_line_inv_vaddr(paddr, vaddr, len);
Vineet Gupta95d69762013-01-18 15:12:19 +05301006}
1007
Vineet Gupta24603fd2013-04-11 18:36:35 +05301008/* wrapper to compile time eliminate alignment checks in flush loop */
Vineet Gupta28b4af72015-09-14 18:43:42 -07001009void __inv_icache_page(phys_addr_t paddr, unsigned long vaddr)
Vineet Gupta95d69762013-01-18 15:12:19 +05301010{
Vineet Gupta24603fd2013-04-11 18:36:35 +05301011 __ic_line_inv_vaddr(paddr, vaddr, PAGE_SIZE);
Vineet Gupta95d69762013-01-18 15:12:19 +05301012}
1013
Vineet Gupta6ec18a82013-05-09 15:10:18 +05301014/*
1015 * wrapper to clearout kernel or userspace mappings of a page
1016 * For kernel mappings @vaddr == @paddr
1017 */
Vineet Gupta28b4af72015-09-14 18:43:42 -07001018void __flush_dcache_page(phys_addr_t paddr, unsigned long vaddr)
Vineet Guptaeacd0e92013-04-16 14:10:48 +05301019{
Vineet Gupta6ec18a82013-05-09 15:10:18 +05301020 __dc_line_op(paddr, vaddr & PAGE_MASK, PAGE_SIZE, OP_FLUSH_N_INV);
Vineet Guptaeacd0e92013-04-16 14:10:48 +05301021}
1022
Vineet Gupta95d69762013-01-18 15:12:19 +05301023noinline void flush_cache_all(void)
1024{
1025 unsigned long flags;
1026
1027 local_irq_save(flags);
1028
Vineet Gupta336e1992013-06-22 19:22:42 +05301029 __ic_entire_inv();
Vineet Gupta95d69762013-01-18 15:12:19 +05301030 __dc_entire_op(OP_FLUSH_N_INV);
1031
1032 local_irq_restore(flags);
1033
1034}
1035
Vineet Gupta4102b532013-05-09 21:54:51 +05301036#ifdef CONFIG_ARC_CACHE_VIPT_ALIASING
1037
1038void flush_cache_mm(struct mm_struct *mm)
1039{
1040 flush_cache_all();
1041}
1042
1043void flush_cache_page(struct vm_area_struct *vma, unsigned long u_vaddr,
1044 unsigned long pfn)
1045{
Randy Dunlapec837d62018-07-26 20:16:35 -07001046 phys_addr_t paddr = pfn << PAGE_SHIFT;
Vineet Gupta4102b532013-05-09 21:54:51 +05301047
Vineet Gupta5971bc72013-05-16 12:23:31 +05301048 u_vaddr &= PAGE_MASK;
1049
Vineet Gupta45309492015-05-18 12:46:37 +05301050 __flush_dcache_page(paddr, u_vaddr);
Vineet Gupta5971bc72013-05-16 12:23:31 +05301051
1052 if (vma->vm_flags & VM_EXEC)
1053 __inv_icache_page(paddr, u_vaddr);
Vineet Gupta4102b532013-05-09 21:54:51 +05301054}
1055
1056void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
1057 unsigned long end)
1058{
1059 flush_cache_all();
1060}
1061
Vineet Gupta7bb66f62013-05-25 14:04:25 +05301062void flush_anon_page(struct vm_area_struct *vma, struct page *page,
1063 unsigned long u_vaddr)
1064{
1065 /* TBD: do we really need to clear the kernel mapping */
Randy Dunlapec837d62018-07-26 20:16:35 -07001066 __flush_dcache_page((phys_addr_t)page_address(page), u_vaddr);
1067 __flush_dcache_page((phys_addr_t)page_address(page),
1068 (phys_addr_t)page_address(page));
Vineet Gupta7bb66f62013-05-25 14:04:25 +05301069
1070}
1071
1072#endif
1073
Vineet Gupta4102b532013-05-09 21:54:51 +05301074void copy_user_highpage(struct page *to, struct page *from,
1075 unsigned long u_vaddr, struct vm_area_struct *vma)
1076{
Vineet Gupta336e2132015-03-05 17:06:31 +05301077 void *kfrom = kmap_atomic(from);
1078 void *kto = kmap_atomic(to);
Vineet Gupta4102b532013-05-09 21:54:51 +05301079 int clean_src_k_mappings = 0;
1080
1081 /*
1082 * If SRC page was already mapped in userspace AND it's U-mapping is
1083 * not congruent with K-mapping, sync former to physical page so that
1084 * K-mapping in memcpy below, sees the right data
1085 *
1086 * Note that while @u_vaddr refers to DST page's userspace vaddr, it is
1087 * equally valid for SRC page as well
Vineet Gupta336e2132015-03-05 17:06:31 +05301088 *
1089 * For !VIPT cache, all of this gets compiled out as
1090 * addr_not_cache_congruent() is 0
Vineet Gupta4102b532013-05-09 21:54:51 +05301091 */
Kirill A. Shutemove1534ae2016-01-15 16:53:46 -08001092 if (page_mapcount(from) && addr_not_cache_congruent(kfrom, u_vaddr)) {
Vineet Gupta336e2132015-03-05 17:06:31 +05301093 __flush_dcache_page((unsigned long)kfrom, u_vaddr);
Vineet Gupta4102b532013-05-09 21:54:51 +05301094 clean_src_k_mappings = 1;
1095 }
1096
Vineet Gupta336e2132015-03-05 17:06:31 +05301097 copy_page(kto, kfrom);
Vineet Gupta4102b532013-05-09 21:54:51 +05301098
1099 /*
1100 * Mark DST page K-mapping as dirty for a later finalization by
1101 * update_mmu_cache(). Although the finalization could have been done
1102 * here as well (given that both vaddr/paddr are available).
1103 * But update_mmu_cache() already has code to do that for other
1104 * non copied user pages (e.g. read faults which wire in pagecache page
1105 * directly).
1106 */
Vineet Gupta2ed21da2013-05-13 17:23:58 +05301107 clear_bit(PG_dc_clean, &to->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +05301108
1109 /*
1110 * if SRC was already usermapped and non-congruent to kernel mapping
1111 * sync the kernel mapping back to physical page
1112 */
1113 if (clean_src_k_mappings) {
Vineet Gupta336e2132015-03-05 17:06:31 +05301114 __flush_dcache_page((unsigned long)kfrom, (unsigned long)kfrom);
Vineet Gupta2ed21da2013-05-13 17:23:58 +05301115 set_bit(PG_dc_clean, &from->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +05301116 } else {
Vineet Gupta2ed21da2013-05-13 17:23:58 +05301117 clear_bit(PG_dc_clean, &from->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +05301118 }
Vineet Gupta336e2132015-03-05 17:06:31 +05301119
1120 kunmap_atomic(kto);
1121 kunmap_atomic(kfrom);
Vineet Gupta4102b532013-05-09 21:54:51 +05301122}
1123
1124void clear_user_page(void *to, unsigned long u_vaddr, struct page *page)
1125{
1126 clear_page(to);
Vineet Gupta2ed21da2013-05-13 17:23:58 +05301127 clear_bit(PG_dc_clean, &page->flags);
Vineet Gupta4102b532013-05-09 21:54:51 +05301128}
1129
Vineet Gupta4102b532013-05-09 21:54:51 +05301130
Vineet Gupta95d69762013-01-18 15:12:19 +05301131/**********************************************************************
1132 * Explicit Cache flush request from user space via syscall
1133 * Needed for JITs which generate code on the fly
1134 */
1135SYSCALL_DEFINE3(cacheflush, uint32_t, start, uint32_t, sz, uint32_t, flags)
1136{
1137 /* TBD: optimize this */
1138 flush_cache_all();
1139 return 0;
1140}
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301141
Vineet Gupta8c47f832016-06-22 16:01:19 +05301142/*
1143 * IO-Coherency (IOC) setup rules:
1144 *
1145 * 1. Needs to be at system level, so only once by Master core
1146 * Non-Masters need not be accessing caches at that time
1147 * - They are either HALT_ON_RESET and kick started much later or
1148 * - if run on reset, need to ensure that arc_platform_smp_wait_to_boot()
1149 * doesn't perturb caches or coherency unit
1150 *
1151 * 2. caches (L1 and SLC) need to be purged (flush+inv) before setting up IOC,
1152 * otherwise any straggler data might behave strangely post IOC enabling
1153 *
1154 * 3. All Caches need to be disabled when setting up IOC to elide any in-flight
1155 * Coherency transactions
1156 */
Vineet Gupta76894a72017-01-18 15:10:52 -08001157noinline void __init arc_ioc_setup(void)
Vineet Guptad4911cd2016-06-22 15:43:22 +05301158{
Eugeniy Paltsevbee91c32017-08-15 21:13:53 +03001159 unsigned int ioc_base, mem_sz;
Vineet Guptae497c8e2017-01-18 12:59:21 -08001160
Eugeniy Paltsev2b720e92018-07-30 19:26:35 +03001161 /*
Eugeniy Paltsev36243792018-10-04 16:12:12 +03001162 * If IOC was already enabled (due to bootloader) it technically needs to
1163 * be reconfigured with aperture base,size corresponding to Linux memory map
1164 * which will certainly be different than uboot's. But disabling and
1165 * reenabling IOC when DMA might be potentially active is tricky business.
1166 * To avoid random memory issues later, just panic here and ask user to
1167 * upgrade bootloader to one which doesn't enable IOC
1168 */
1169 if (read_aux_reg(ARC_REG_IO_COH_ENABLE) & ARC_IO_COH_ENABLE_BIT)
1170 panic("IOC already enabled, please upgrade bootloader!\n");
1171
1172 if (!ioc_enable)
1173 return;
1174
Vineet Gupta8c47f832016-06-22 16:01:19 +05301175 /* Flush + invalidate + disable L1 dcache */
1176 __dc_disable();
1177
1178 /* Flush + invalidate SLC */
1179 if (read_aux_reg(ARC_REG_SLC_BCR))
1180 slc_entire_op(OP_FLUSH_N_INV);
1181
Vineet Guptae497c8e2017-01-18 12:59:21 -08001182 /*
Eugeniy Paltsevbee91c32017-08-15 21:13:53 +03001183 * currently IOC Aperture covers entire DDR
Vineet Guptae497c8e2017-01-18 12:59:21 -08001184 * TBD: fix for PGU + 1GB of low mem
1185 * TBD: fix for PAE
1186 */
Eugeniy Paltsevbee91c32017-08-15 21:13:53 +03001187 mem_sz = arc_get_mem_sz();
Vineet Gupta8c47f832016-06-22 16:01:19 +05301188
Eugeniy Paltsevbee91c32017-08-15 21:13:53 +03001189 if (!is_power_of_2(mem_sz) || mem_sz < 4096)
1190 panic("IOC Aperture size must be power of 2 larger than 4KB");
1191
1192 /*
1193 * IOC Aperture size decoded as 2 ^ (SIZE + 2) KB,
1194 * so setting 0x11 implies 512MB, 0x12 implies 1GB...
1195 */
1196 write_aux_reg(ARC_REG_IO_COH_AP0_SIZE, order_base_2(mem_sz >> 10) - 2);
1197
1198 /* for now assume kernel base is start of IOC aperture */
Eugeniy Paltsev9ed68782017-08-15 21:13:54 +03001199 ioc_base = CONFIG_LINUX_RAM_BASE;
Eugeniy Paltsevbee91c32017-08-15 21:13:53 +03001200
1201 if (ioc_base % mem_sz != 0)
1202 panic("IOC Aperture start must be aligned to the size of the aperture");
1203
1204 write_aux_reg(ARC_REG_IO_COH_AP0_BASE, ioc_base >> 12);
Eugeniy Paltsev36243792018-10-04 16:12:12 +03001205 write_aux_reg(ARC_REG_IO_COH_PARTIAL, ARC_IO_COH_PARTIAL_BIT);
1206 write_aux_reg(ARC_REG_IO_COH_ENABLE, ARC_IO_COH_ENABLE_BIT);
Vineet Gupta8c47f832016-06-22 16:01:19 +05301207
1208 /* Re-enable L1 dcache */
1209 __dc_enable();
Vineet Guptad4911cd2016-06-22 15:43:22 +05301210}
1211
Vineet Guptab5ddb6d52017-08-03 17:45:44 +05301212/*
1213 * Cache related boot time checks/setups only needed on master CPU:
1214 * - Geometry checks (kernel build and hardware agree: e.g. L1_CACHE_BYTES)
1215 * Assume SMP only, so all cores will have same cache config. A check on
1216 * one core suffices for all
1217 * - IOC setup / dma callbacks only need to be done once
1218 */
Vineet Gupta76894a72017-01-18 15:10:52 -08001219void __init arc_cache_init_master(void)
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301220{
1221 unsigned int __maybe_unused cpu = smp_processor_id();
Vineet Gupta45c3b082016-06-13 16:38:27 +02001222
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301223 if (IS_ENABLED(CONFIG_ARC_HAS_ICACHE)) {
1224 struct cpuinfo_arc_cache *ic = &cpuinfo_arc700[cpu].icache;
1225
Vineet Guptaf64915b2016-12-19 11:24:08 -08001226 if (!ic->line_len)
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301227 panic("cache support enabled but non-existent cache\n");
1228
1229 if (ic->line_len != L1_CACHE_BYTES)
1230 panic("ICache line [%d] != kernel Config [%d]",
1231 ic->line_len, L1_CACHE_BYTES);
1232
Vineet Guptabcc4d652015-06-04 14:39:15 +05301233 /*
Andrea Gelmini25474762016-05-21 13:45:35 +02001234 * In MMU v4 (HS38x) the aliasing icache config uses IVIL/PTAG
Vineet Guptabcc4d652015-06-04 14:39:15 +05301235 * pair to provide vaddr/paddr respectively, just as in MMU v3
1236 */
1237 if (is_isa_arcv2() && ic->alias)
1238 _cache_line_loop_ic_fn = __cache_line_loop_v3;
1239 else
1240 _cache_line_loop_ic_fn = __cache_line_loop;
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301241 }
1242
1243 if (IS_ENABLED(CONFIG_ARC_HAS_DCACHE)) {
1244 struct cpuinfo_arc_cache *dc = &cpuinfo_arc700[cpu].dcache;
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301245
Vineet Guptaf64915b2016-12-19 11:24:08 -08001246 if (!dc->line_len)
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301247 panic("cache support enabled but non-existent cache\n");
1248
1249 if (dc->line_len != L1_CACHE_BYTES)
1250 panic("DCache line [%d] != kernel Config [%d]",
1251 dc->line_len, L1_CACHE_BYTES);
1252
Vineet Guptad1f317d2015-04-06 17:23:57 +05301253 /* check for D-Cache aliasing on ARCompact: ARCv2 has PIPT */
1254 if (is_isa_arcompact()) {
1255 int handled = IS_ENABLED(CONFIG_ARC_CACHE_VIPT_ALIASING);
Vineet Gupta08fe0072016-12-19 11:38:38 -08001256 int num_colors = dc->sz_k/dc->assoc/TO_KB(PAGE_SIZE);
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301257
Vineet Gupta08fe0072016-12-19 11:38:38 -08001258 if (dc->alias) {
1259 if (!handled)
1260 panic("Enable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
1261 if (CACHE_COLORS_NUM != num_colors)
1262 panic("CACHE_COLORS_NUM not optimized for config\n");
1263 } else if (!dc->alias && handled) {
Vineet Guptad1f317d2015-04-06 17:23:57 +05301264 panic("Disable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
Vineet Gupta08fe0072016-12-19 11:38:38 -08001265 }
Vineet Guptad1f317d2015-04-06 17:23:57 +05301266 }
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301267 }
Alexey Brodkinf2b0b252015-05-25 19:54:28 +03001268
Eugeniy Paltsev386177d2018-07-26 16:15:44 +03001269 /*
1270 * Check that SMP_CACHE_BYTES (and hence ARCH_DMA_MINALIGN) is larger
1271 * or equal to any cache line length.
1272 */
1273 BUILD_BUG_ON_MSG(L1_CACHE_BYTES > SMP_CACHE_BYTES,
1274 "SMP_CACHE_BYTES must be >= any cache line length");
1275 if (is_isa_arcv2() && (l2_line_sz > SMP_CACHE_BYTES))
1276 panic("L2 Cache line [%d] > kernel Config [%d]\n",
1277 l2_line_sz, SMP_CACHE_BYTES);
1278
Vineet Guptad4911cd2016-06-22 15:43:22 +05301279 /* Note that SLC disable not formally supported till HS 3.0 */
1280 if (is_isa_arcv2() && l2_line_sz && !slc_enable)
1281 arc_slc_disable();
Vineet Gupta79335a22015-06-04 18:30:23 +05301282
Eugeniy Paltsev36243792018-10-04 16:12:12 +03001283 if (is_isa_arcv2() && ioc_exists)
Vineet Guptad4911cd2016-06-22 15:43:22 +05301284 arc_ioc_setup();
Vineet Gupta79335a22015-06-04 18:30:23 +05301285
Eugeniy Paltsev2820a702018-07-30 19:26:34 +03001286 if (is_isa_arcv2() && l2_line_sz && slc_enable) {
Alexey Brodkinf2b0b252015-05-25 19:54:28 +03001287 __dma_cache_wback_inv = __dma_cache_wback_inv_slc;
1288 __dma_cache_inv = __dma_cache_inv_slc;
1289 __dma_cache_wback = __dma_cache_wback_slc;
1290 } else {
1291 __dma_cache_wback_inv = __dma_cache_wback_inv_l1;
1292 __dma_cache_inv = __dma_cache_inv_l1;
1293 __dma_cache_wback = __dma_cache_wback_l1;
1294 }
Eugeniy Paltsev2820a702018-07-30 19:26:34 +03001295 /*
1296 * In case of IOC (say IOC+SLC case), pointers above could still be set
1297 * but end up not being relevant as the first function in chain is not
Christoph Hellwig356da6d2018-12-06 13:39:32 -08001298 * called at all for devices using coherent DMA.
Eugeniy Paltsev2820a702018-07-30 19:26:34 +03001299 * arch_sync_dma_for_cpu() -> dma_cache_*() -> __dma_cache_*()
1300 */
Vineet Gupta8ea2ddf2015-06-04 15:35:53 +05301301}
Vineet Gupta76894a72017-01-18 15:10:52 -08001302
1303void __ref arc_cache_init(void)
1304{
1305 unsigned int __maybe_unused cpu = smp_processor_id();
1306 char str[256];
1307
Noam Camus18ee4be2017-06-15 11:43:51 +03001308 pr_info("%s", arc_cache_mumbojumbo(0, str, sizeof(str)));
Vineet Gupta76894a72017-01-18 15:10:52 -08001309
Vineet Gupta76894a72017-01-18 15:10:52 -08001310 if (!cpu)
1311 arc_cache_init_master();
Vineet Guptab5ddb6d52017-08-03 17:45:44 +05301312
1313 /*
1314 * In PAE regime, TLB and cache maintenance ops take wider addresses
1315 * And even if PAE is not enabled in kernel, the upper 32-bits still need
1316 * to be zeroed to keep the ops sane.
1317 * As an optimization for more common !PAE enabled case, zero them out
1318 * once at init, rather than checking/setting to 0 for every runtime op
1319 */
1320 if (is_isa_arcv2() && pae40_exist_but_not_enab()) {
1321
1322 if (IS_ENABLED(CONFIG_ARC_HAS_ICACHE))
1323 write_aux_reg(ARC_REG_IC_PTAG_HI, 0);
1324
1325 if (IS_ENABLED(CONFIG_ARC_HAS_DCACHE))
1326 write_aux_reg(ARC_REG_DC_PTAG_HI, 0);
1327
1328 if (l2_line_sz) {
1329 write_aux_reg(ARC_REG_SLC_RGN_END1, 0);
1330 write_aux_reg(ARC_REG_SLC_RGN_START1, 0);
1331 }
1332 }
Vineet Gupta76894a72017-01-18 15:10:52 -08001333}