blob: 8a760e2c0341265f465943f08c59cbe62eaa27fb [file] [log] [blame]
Vineet Gupta95d69762013-01-18 15:12:19 +05301/*
2 * ARC700 VIPT Cache Management
3 *
4 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * vineetg: May 2011: for Non-aliasing VIPT D-cache following can be NOPs
11 * -flush_cache_dup_mm (fork)
12 * -likewise for flush_cache_mm (exit/execve)
13 * -likewise for flush_cache_range,flush_cache_page (munmap, exit, COW-break)
14 *
15 * vineetg: Apr 2011
16 * -Now that MMU can support larger pg sz (16K), the determiniation of
17 * aliasing shd not be based on assumption of 8k pg
18 *
19 * vineetg: Mar 2011
20 * -optimised version of flush_icache_range( ) for making I/D coherent
21 * when vaddr is available (agnostic of num of aliases)
22 *
23 * vineetg: Mar 2011
24 * -Added documentation about I-cache aliasing on ARC700 and the way it
25 * was handled up until MMU V2.
26 * -Spotted a three year old bug when killing the 4 aliases, which needs
27 * bottom 2 bits, so we need to do paddr | {0x00, 0x01, 0x02, 0x03}
28 * instead of paddr | {0x00, 0x01, 0x10, 0x11}
29 * (Rajesh you owe me one now)
30 *
31 * vineetg: Dec 2010
32 * -Off-by-one error when computing num_of_lines to flush
33 * This broke signal handling with bionic which uses synthetic sigret stub
34 *
35 * vineetg: Mar 2010
36 * -GCC can't generate ZOL for core cache flush loops.
37 * Conv them into iterations based as opposed to while (start < end) types
38 *
39 * Vineetg: July 2009
40 * -In I-cache flush routine we used to chk for aliasing for every line INV.
41 * Instead now we setup routines per cache geometry and invoke them
42 * via function pointers.
43 *
44 * Vineetg: Jan 2009
45 * -Cache Line flush routines used to flush an extra line beyond end addr
46 * because check was while (end >= start) instead of (end > start)
47 * =Some call sites had to work around by doing -1, -4 etc to end param
48 * =Some callers didnt care. This was spec bad in case of INV routines
49 * which would discard valid data (cause of the horrible ext2 bug
50 * in ARC IDE driver)
51 *
52 * vineetg: June 11th 2008: Fixed flush_icache_range( )
53 * -Since ARC700 caches are not coherent (I$ doesnt snoop D$) both need
54 * to be flushed, which it was not doing.
55 * -load_module( ) passes vmalloc addr (Kernel Virtual Addr) to the API,
56 * however ARC cache maintenance OPs require PHY addr. Thus need to do
57 * vmalloc_to_phy.
58 * -Also added optimisation there, that for range > PAGE SIZE we flush the
59 * entire cache in one shot rather than line by line. For e.g. a module
60 * with Code sz 600k, old code flushed 600k worth of cache (line-by-line),
61 * while cache is only 16 or 32k.
62 */
63
64#include <linux/module.h>
65#include <linux/mm.h>
66#include <linux/sched.h>
67#include <linux/cache.h>
68#include <linux/mmu_context.h>
69#include <linux/syscalls.h>
70#include <linux/uaccess.h>
71#include <asm/cacheflush.h>
72#include <asm/cachectl.h>
73#include <asm/setup.h>
74
Vineet Guptaaf617422013-01-18 15:12:24 +053075char *arc_cache_mumbojumbo(int cpu_id, char *buf, int len)
76{
77 int n = 0;
78 unsigned int c = smp_processor_id();
79
80#define PR_CACHE(p, enb, str) \
81{ \
82 if (!(p)->ver) \
83 n += scnprintf(buf + n, len - n, str"\t\t: N/A\n"); \
84 else \
85 n += scnprintf(buf + n, len - n, \
86 str"\t\t: (%uK) VIPT, %dway set-asc, %ub Line %s\n", \
87 TO_KB((p)->sz), (p)->assoc, (p)->line_len, \
88 enb ? "" : "DISABLED (kernel-build)"); \
89}
90
91 PR_CACHE(&cpuinfo_arc700[c].icache, __CONFIG_ARC_HAS_ICACHE, "I-Cache");
92 PR_CACHE(&cpuinfo_arc700[c].dcache, __CONFIG_ARC_HAS_DCACHE, "D-Cache");
93
94 return buf;
95}
96
Vineet Gupta95d69762013-01-18 15:12:19 +053097/*
98 * Read the Cache Build Confuration Registers, Decode them and save into
99 * the cpuinfo structure for later use.
100 * No Validation done here, simply read/convert the BCRs
101 */
Vineet Gupta30ecee82013-04-09 17:18:12 +0530102void __cpuinit read_decode_cache_bcr(void)
Vineet Gupta95d69762013-01-18 15:12:19 +0530103{
104 struct bcr_cache ibcr, dbcr;
105 struct cpuinfo_arc_cache *p_ic, *p_dc;
106 unsigned int cpu = smp_processor_id();
107
108 p_ic = &cpuinfo_arc700[cpu].icache;
109 READ_BCR(ARC_REG_IC_BCR, ibcr);
110
111 if (ibcr.config == 0x3)
112 p_ic->assoc = 2;
113 p_ic->line_len = 8 << ibcr.line_len;
114 p_ic->sz = 0x200 << ibcr.sz;
115 p_ic->ver = ibcr.ver;
116
117 p_dc = &cpuinfo_arc700[cpu].dcache;
118 READ_BCR(ARC_REG_DC_BCR, dbcr);
119
120 if (dbcr.config == 0x2)
121 p_dc->assoc = 4;
122 p_dc->line_len = 16 << dbcr.line_len;
123 p_dc->sz = 0x200 << dbcr.sz;
124 p_dc->ver = dbcr.ver;
125}
126
127/*
128 * 1. Validate the Cache Geomtery (compile time config matches hardware)
129 * 2. If I-cache suffers from aliasing, setup work arounds (difft flush rtn)
130 * (aliasing D-cache configurations are not supported YET)
131 * 3. Enable the Caches, setup default flush mode for D-Cache
132 * 3. Calculate the SHMLBA used by user space
133 */
Vineet Gupta30ecee82013-04-09 17:18:12 +0530134void __cpuinit arc_cache_init(void)
Vineet Gupta95d69762013-01-18 15:12:19 +0530135{
136 unsigned int temp;
Vineet Gupta95d69762013-01-18 15:12:19 +0530137 unsigned int cpu = smp_processor_id();
Vineet Guptad626f542013-01-28 15:07:31 +0530138 struct cpuinfo_arc_cache *ic = &cpuinfo_arc700[cpu].icache;
139 struct cpuinfo_arc_cache *dc = &cpuinfo_arc700[cpu].dcache;
Vineet Gupta95d69762013-01-18 15:12:19 +0530140 int way_pg_ratio = way_pg_ratio;
Vineet Guptaaf617422013-01-18 15:12:24 +0530141 char str[256];
142
143 printk(arc_cache_mumbojumbo(0, str, sizeof(str)));
Vineet Gupta95d69762013-01-18 15:12:19 +0530144
Vineet Guptad626f542013-01-28 15:07:31 +0530145 if (!ic->ver)
146 goto chk_dc;
Vineet Gupta95d69762013-01-18 15:12:19 +0530147
Vineet Guptad626f542013-01-28 15:07:31 +0530148#ifdef CONFIG_ARC_HAS_ICACHE
Vineet Guptaaf617422013-01-18 15:12:24 +0530149 /* 1. Confirm some of I-cache params which Linux assumes */
150 if ((ic->assoc != ARC_ICACHE_WAYS) ||
151 (ic->line_len != ARC_ICACHE_LINE_LEN)) {
152 panic("Cache H/W doesn't match kernel Config");
153 }
154#if (CONFIG_ARC_MMU_VER > 2)
155 if (ic->ver != 3) {
156 if (running_on_hw)
157 panic("Cache ver doesn't match MMU ver\n");
158
159 /* For ISS - suggest the toggles to use */
160 pr_err("Use -prop=icache_version=3,-prop=dcache_version=3\n");
161
162 }
163#endif
Vineet Gupta95d69762013-01-18 15:12:19 +0530164#endif
165
166 /* Enable/disable I-Cache */
167 temp = read_aux_reg(ARC_REG_IC_CTRL);
168
169#ifdef CONFIG_ARC_HAS_ICACHE
170 temp &= ~IC_CTRL_CACHE_DISABLE;
171#else
172 temp |= IC_CTRL_CACHE_DISABLE;
173#endif
174
175 write_aux_reg(ARC_REG_IC_CTRL, temp);
176
Vineet Guptad626f542013-01-28 15:07:31 +0530177chk_dc:
178 if (!dc->ver)
179 return;
Vineet Gupta95d69762013-01-18 15:12:19 +0530180
Vineet Guptad626f542013-01-28 15:07:31 +0530181#ifdef CONFIG_ARC_HAS_DCACHE
Vineet Guptaaf617422013-01-18 15:12:24 +0530182 if ((dc->assoc != ARC_DCACHE_WAYS) ||
183 (dc->line_len != ARC_DCACHE_LINE_LEN)) {
184 panic("Cache H/W doesn't match kernel Config");
185 }
186
Vineet Gupta95d69762013-01-18 15:12:19 +0530187 /* check for D-Cache aliasing */
188 if ((dc->sz / ARC_DCACHE_WAYS) > PAGE_SIZE)
189 panic("D$ aliasing not handled right now\n");
190#endif
191
192 /* Set the default Invalidate Mode to "simpy discard dirty lines"
193 * as this is more frequent then flush before invalidate
194 * Ofcourse we toggle this default behviour when desired
195 */
196 temp = read_aux_reg(ARC_REG_DC_CTRL);
197 temp &= ~DC_CTRL_INV_MODE_FLUSH;
198
199#ifdef CONFIG_ARC_HAS_DCACHE
200 /* Enable D-Cache: Clear Bit 0 */
201 write_aux_reg(ARC_REG_DC_CTRL, temp & ~IC_CTRL_CACHE_DISABLE);
202#else
203 /* Flush D cache */
204 write_aux_reg(ARC_REG_DC_FLSH, 0x1);
205 /* Disable D cache */
206 write_aux_reg(ARC_REG_DC_CTRL, temp | IC_CTRL_CACHE_DISABLE);
207#endif
208
209 return;
210}
211
212#define OP_INV 0x1
213#define OP_FLUSH 0x2
214#define OP_FLUSH_N_INV 0x3
215
216#ifdef CONFIG_ARC_HAS_DCACHE
217
218/***************************************************************
219 * Machine specific helpers for Entire D-Cache or Per Line ops
220 */
221
222static inline void wait_for_flush(void)
223{
224 while (read_aux_reg(ARC_REG_DC_CTRL) & DC_CTRL_FLUSH_STATUS)
225 ;
226}
227
228/*
229 * Operation on Entire D-Cache
230 * @cacheop = {OP_INV, OP_FLUSH, OP_FLUSH_N_INV}
231 * Note that constant propagation ensures all the checks are gone
232 * in generated code
233 */
234static inline void __dc_entire_op(const int cacheop)
235{
236 unsigned long flags, tmp = tmp;
237 int aux;
238
239 local_irq_save(flags);
240
241 if (cacheop == OP_FLUSH_N_INV) {
242 /* Dcache provides 2 cmd: FLUSH or INV
243 * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE
244 * flush-n-inv is achieved by INV cmd but with IM=1
245 * Default INV sub-mode is DISCARD, which needs to be toggled
246 */
247 tmp = read_aux_reg(ARC_REG_DC_CTRL);
248 write_aux_reg(ARC_REG_DC_CTRL, tmp | DC_CTRL_INV_MODE_FLUSH);
249 }
250
251 if (cacheop & OP_INV) /* Inv or flush-n-inv use same cmd reg */
252 aux = ARC_REG_DC_IVDC;
253 else
254 aux = ARC_REG_DC_FLSH;
255
256 write_aux_reg(aux, 0x1);
257
258 if (cacheop & OP_FLUSH) /* flush / flush-n-inv both wait */
259 wait_for_flush();
260
261 /* Switch back the DISCARD ONLY Invalidate mode */
262 if (cacheop == OP_FLUSH_N_INV)
263 write_aux_reg(ARC_REG_DC_CTRL, tmp & ~DC_CTRL_INV_MODE_FLUSH);
264
265 local_irq_restore(flags);
266}
267
268/*
269 * Per Line Operation on D-Cache
270 * Doesn't deal with type-of-op/IRQ-disabling/waiting-for-flush-to-complete
271 * It's sole purpose is to help gcc generate ZOL
272 */
Vineet Guptaa6909842013-05-09 14:00:51 +0530273static inline void __dc_line_loop(unsigned long paddr, unsigned long sz,
274 int aux_reg)
Vineet Gupta95d69762013-01-18 15:12:19 +0530275{
Vineet Guptaa6909842013-05-09 14:00:51 +0530276 int num_lines;
Vineet Gupta95d69762013-01-18 15:12:19 +0530277
278 /* Ensure we properly floor/ceil the non-line aligned/sized requests
Vineet Guptaa6909842013-05-09 14:00:51 +0530279 * and have @paddr - aligned to cache line and integral @num_lines.
Vineet Gupta95d69762013-01-18 15:12:19 +0530280 * This however can be avoided for page sized since:
Vineet Guptaa6909842013-05-09 14:00:51 +0530281 * -@paddr will be cache-line aligned already (being page aligned)
Vineet Gupta95d69762013-01-18 15:12:19 +0530282 * -@sz will be integral multiple of line size (being page sized).
283 */
284 if (!(__builtin_constant_p(sz) && sz == PAGE_SIZE)) {
Vineet Guptaa6909842013-05-09 14:00:51 +0530285 sz += paddr & ~DCACHE_LINE_MASK;
286 paddr &= DCACHE_LINE_MASK;
Vineet Gupta95d69762013-01-18 15:12:19 +0530287 }
288
289 num_lines = DIV_ROUND_UP(sz, ARC_DCACHE_LINE_LEN);
290
291 while (num_lines-- > 0) {
292#if (CONFIG_ARC_MMU_VER > 2)
293 /*
294 * Just as for I$, in MMU v3, D$ ops also require
295 * "tag" bits in DC_PTAG, "index" bits in FLDL,IVDL ops
296 * But we pass phy addr for both. This works since Linux
297 * doesn't support aliasing configs for D$, yet.
298 * Thus paddr is enough to provide both tag and index.
299 */
Vineet Guptaa6909842013-05-09 14:00:51 +0530300 write_aux_reg(ARC_REG_DC_PTAG, paddr);
Vineet Gupta95d69762013-01-18 15:12:19 +0530301#endif
Vineet Guptaa6909842013-05-09 14:00:51 +0530302 write_aux_reg(aux_reg, paddr);
303 paddr += ARC_DCACHE_LINE_LEN;
Vineet Gupta95d69762013-01-18 15:12:19 +0530304 }
305}
306
307/*
308 * D-Cache : Per Line INV (discard or wback+discard) or FLUSH (wback)
309 */
Vineet Guptaa6909842013-05-09 14:00:51 +0530310static inline void __dc_line_op(unsigned long paddr, unsigned long sz,
Vineet Gupta95d69762013-01-18 15:12:19 +0530311 const int cacheop)
312{
313 unsigned long flags, tmp = tmp;
314 int aux;
315
316 local_irq_save(flags);
317
318 if (cacheop == OP_FLUSH_N_INV) {
319 /*
320 * Dcache provides 2 cmd: FLUSH or INV
321 * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE
322 * flush-n-inv is achieved by INV cmd but with IM=1
323 * Default INV sub-mode is DISCARD, which needs to be toggled
324 */
325 tmp = read_aux_reg(ARC_REG_DC_CTRL);
326 write_aux_reg(ARC_REG_DC_CTRL, tmp | DC_CTRL_INV_MODE_FLUSH);
327 }
328
329 if (cacheop & OP_INV) /* Inv / flush-n-inv use same cmd reg */
330 aux = ARC_REG_DC_IVDL;
331 else
332 aux = ARC_REG_DC_FLDL;
333
Vineet Guptaa6909842013-05-09 14:00:51 +0530334 __dc_line_loop(paddr, sz, aux);
Vineet Gupta95d69762013-01-18 15:12:19 +0530335
336 if (cacheop & OP_FLUSH) /* flush / flush-n-inv both wait */
337 wait_for_flush();
338
339 /* Switch back the DISCARD ONLY Invalidate mode */
340 if (cacheop == OP_FLUSH_N_INV)
341 write_aux_reg(ARC_REG_DC_CTRL, tmp & ~DC_CTRL_INV_MODE_FLUSH);
342
343 local_irq_restore(flags);
344}
345
346#else
347
348#define __dc_entire_op(cacheop)
Vineet Guptaa6909842013-05-09 14:00:51 +0530349#define __dc_line_op(paddr, sz, cacheop)
Vineet Gupta95d69762013-01-18 15:12:19 +0530350
351#endif /* CONFIG_ARC_HAS_DCACHE */
352
353
354#ifdef CONFIG_ARC_HAS_ICACHE
355
356/*
357 * I-Cache Aliasing in ARC700 VIPT caches
358 *
Vineet Gupta7f250a02013-04-12 13:08:06 +0530359 * ARC VIPT I-cache uses vaddr to index into cache and paddr to match the tag.
360 * The orig Cache Management Module "CDU" only required paddr to invalidate a
361 * certain line since it sufficed as index in Non-Aliasing VIPT cache-geometry.
362 * Infact for distinct V1,V2,P: all of {V1-P},{V2-P},{P-P} would end up fetching
363 * the exact same line.
Vineet Gupta95d69762013-01-18 15:12:19 +0530364 *
Vineet Gupta7f250a02013-04-12 13:08:06 +0530365 * However for larger Caches (way-size > page-size) - i.e. in Aliasing config,
366 * paddr alone could not be used to correctly index the cache.
Vineet Gupta95d69762013-01-18 15:12:19 +0530367 *
368 * ------------------
369 * MMU v1/v2 (Fixed Page Size 8k)
370 * ------------------
371 * The solution was to provide CDU with these additonal vaddr bits. These
Vineet Gupta7f250a02013-04-12 13:08:06 +0530372 * would be bits [x:13], x would depend on cache-geometry, 13 comes from
373 * standard page size of 8k.
Vineet Gupta95d69762013-01-18 15:12:19 +0530374 * H/w folks chose [17:13] to be a future safe range, and moreso these 5 bits
375 * of vaddr could easily be "stuffed" in the paddr as bits [4:0] since the
376 * orig 5 bits of paddr were anyways ignored by CDU line ops, as they
377 * represent the offset within cache-line. The adv of using this "clumsy"
Vineet Gupta7f250a02013-04-12 13:08:06 +0530378 * interface for additional info was no new reg was needed in CDU programming
379 * model.
Vineet Gupta95d69762013-01-18 15:12:19 +0530380 *
381 * 17:13 represented the max num of bits passable, actual bits needed were
382 * fewer, based on the num-of-aliases possible.
383 * -for 2 alias possibility, only bit 13 needed (32K cache)
384 * -for 4 alias possibility, bits 14:13 needed (64K cache)
385 *
Vineet Gupta95d69762013-01-18 15:12:19 +0530386 * ------------------
387 * MMU v3
388 * ------------------
Vineet Gupta7f250a02013-04-12 13:08:06 +0530389 * This ver of MMU supports variable page sizes (1k-16k): although Linux will
390 * only support 8k (default), 16k and 4k.
Vineet Gupta95d69762013-01-18 15:12:19 +0530391 * However from hardware perspective, smaller page sizes aggrevate aliasing
392 * meaning more vaddr bits needed to disambiguate the cache-line-op ;
393 * the existing scheme of piggybacking won't work for certain configurations.
394 * Two new registers IC_PTAG and DC_PTAG inttoduced.
395 * "tag" bits are provided in PTAG, index bits in existing IVIL/IVDL/FLDL regs
396 */
397
398/***********************************************************
Vineet Gupta7f250a02013-04-12 13:08:06 +0530399 * Machine specific helper for per line I-Cache invalidate.
Vineet Gupta95d69762013-01-18 15:12:19 +0530400 */
Vineet Guptaa6909842013-05-09 14:00:51 +0530401static void __ic_line_inv_vaddr(unsigned long paddr, unsigned long vaddr,
Vineet Gupta7f250a02013-04-12 13:08:06 +0530402 unsigned long sz)
Vineet Gupta95d69762013-01-18 15:12:19 +0530403{
404 unsigned long flags;
Vineet Guptaa6909842013-05-09 14:00:51 +0530405 int num_lines;
Vineet Gupta95d69762013-01-18 15:12:19 +0530406
Vineet Gupta764531c2013-04-12 15:32:06 +0530407 /*
408 * Ensure we properly floor/ceil the non-line aligned/sized requests:
409 * However page sized flushes can be compile time optimised.
Vineet Guptaa6909842013-05-09 14:00:51 +0530410 * -@paddr will be cache-line aligned already (being page aligned)
Vineet Gupta764531c2013-04-12 15:32:06 +0530411 * -@sz will be integral multiple of line size (being page sized).
412 */
413 if (!(__builtin_constant_p(sz) && sz == PAGE_SIZE)) {
Vineet Guptaa6909842013-05-09 14:00:51 +0530414 sz += paddr & ~ICACHE_LINE_MASK;
415 paddr &= ICACHE_LINE_MASK;
416 vaddr &= ICACHE_LINE_MASK;
Vineet Gupta764531c2013-04-12 15:32:06 +0530417 }
418
Vineet Gupta95d69762013-01-18 15:12:19 +0530419 num_lines = DIV_ROUND_UP(sz, ARC_ICACHE_LINE_LEN);
420
Vineet Guptaa6909842013-05-09 14:00:51 +0530421#if (CONFIG_ARC_MMU_VER <= 2)
Vineet Gupta95d69762013-01-18 15:12:19 +0530422 /* bits 17:13 of vaddr go as bits 4:0 of paddr */
Vineet Guptaa6909842013-05-09 14:00:51 +0530423 paddr |= (vaddr >> PAGE_SHIFT) & 0x1F;
Vineet Gupta95d69762013-01-18 15:12:19 +0530424#endif
425
426 local_irq_save(flags);
427 while (num_lines-- > 0) {
428#if (CONFIG_ARC_MMU_VER > 2)
429 /* tag comes from phy addr */
Vineet Guptaa6909842013-05-09 14:00:51 +0530430 write_aux_reg(ARC_REG_IC_PTAG, paddr);
Vineet Gupta95d69762013-01-18 15:12:19 +0530431
432 /* index bits come from vaddr */
433 write_aux_reg(ARC_REG_IC_IVIL, vaddr);
434 vaddr += ARC_ICACHE_LINE_LEN;
435#else
Vineet Gupta7f250a02013-04-12 13:08:06 +0530436 /* paddr contains stuffed vaddrs bits */
Vineet Guptaa6909842013-05-09 14:00:51 +0530437 write_aux_reg(ARC_REG_IC_IVIL, paddr);
Vineet Gupta95d69762013-01-18 15:12:19 +0530438#endif
Vineet Guptaa6909842013-05-09 14:00:51 +0530439 paddr += ARC_ICACHE_LINE_LEN;
Vineet Gupta95d69762013-01-18 15:12:19 +0530440 }
441 local_irq_restore(flags);
442}
443
444#else
445
Vineet Gupta95d69762013-01-18 15:12:19 +0530446#define __ic_line_inv_vaddr(pstart, vstart, sz)
447
448#endif /* CONFIG_ARC_HAS_ICACHE */
449
450
451/***********************************************************
452 * Exported APIs
453 */
454
Vineet Gupta95d69762013-01-18 15:12:19 +0530455void flush_dcache_page(struct page *page)
456{
Vineet Guptaeacd0e952013-04-16 14:10:48 +0530457 /* Make a note that dcache is not yet flushed for this page */
458 set_bit(PG_arch_1, &page->flags);
Vineet Gupta95d69762013-01-18 15:12:19 +0530459}
460EXPORT_SYMBOL(flush_dcache_page);
461
462
463void dma_cache_wback_inv(unsigned long start, unsigned long sz)
464{
465 __dc_line_op(start, sz, OP_FLUSH_N_INV);
466}
467EXPORT_SYMBOL(dma_cache_wback_inv);
468
469void dma_cache_inv(unsigned long start, unsigned long sz)
470{
471 __dc_line_op(start, sz, OP_INV);
472}
473EXPORT_SYMBOL(dma_cache_inv);
474
475void dma_cache_wback(unsigned long start, unsigned long sz)
476{
477 __dc_line_op(start, sz, OP_FLUSH);
478}
479EXPORT_SYMBOL(dma_cache_wback);
480
481/*
Vineet Gupta7586bf722013-04-12 12:18:25 +0530482 * This is API for making I/D Caches consistent when modifying
483 * kernel code (loadable modules, kprobes, kgdb...)
Vineet Gupta95d69762013-01-18 15:12:19 +0530484 * This is called on insmod, with kernel virtual address for CODE of
485 * the module. ARC cache maintenance ops require PHY address thus we
486 * need to convert vmalloc addr to PHY addr
487 */
488void flush_icache_range(unsigned long kstart, unsigned long kend)
489{
490 unsigned int tot_sz, off, sz;
491 unsigned long phy, pfn;
Vineet Gupta95d69762013-01-18 15:12:19 +0530492
493 /* printk("Kernel Cache Cohenercy: %lx to %lx\n",kstart, kend); */
494
495 /* This is not the right API for user virtual address */
496 if (kstart < TASK_SIZE) {
497 BUG_ON("Flush icache range for user virtual addr space");
498 return;
499 }
500
501 /* Shortcut for bigger flush ranges.
502 * Here we don't care if this was kernel virtual or phy addr
503 */
504 tot_sz = kend - kstart;
505 if (tot_sz > PAGE_SIZE) {
506 flush_cache_all();
507 return;
508 }
509
510 /* Case: Kernel Phy addr (0x8000_0000 onwards) */
511 if (likely(kstart > PAGE_OFFSET)) {
Vineet Gupta7586bf722013-04-12 12:18:25 +0530512 /*
513 * The 2nd arg despite being paddr will be used to index icache
514 * This is OK since no alternate virtual mappings will exist
515 * given the callers for this case: kprobe/kgdb in built-in
516 * kernel code only.
517 */
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530518 __sync_icache_dcache(kstart, kstart, kend - kstart);
Vineet Gupta95d69762013-01-18 15:12:19 +0530519 return;
520 }
521
522 /*
523 * Case: Kernel Vaddr (0x7000_0000 to 0x7fff_ffff)
524 * (1) ARC Cache Maintenance ops only take Phy addr, hence special
525 * handling of kernel vaddr.
526 *
527 * (2) Despite @tot_sz being < PAGE_SIZE (bigger cases handled already),
528 * it still needs to handle a 2 page scenario, where the range
529 * straddles across 2 virtual pages and hence need for loop
530 */
531 while (tot_sz > 0) {
532 off = kstart % PAGE_SIZE;
533 pfn = vmalloc_to_pfn((void *)kstart);
534 phy = (pfn << PAGE_SHIFT) + off;
535 sz = min_t(unsigned int, tot_sz, PAGE_SIZE - off);
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530536 __sync_icache_dcache(phy, kstart, sz);
Vineet Gupta95d69762013-01-18 15:12:19 +0530537 kstart += sz;
538 tot_sz -= sz;
539 }
540}
541
542/*
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530543 * General purpose helper to make I and D cache lines consistent.
544 * @paddr is phy addr of region
545 * @vaddr is typically user or kernel vaddr (vmalloc)
546 * Howver in one instance, flush_icache_range() by kprobe (for a breakpt in
547 * builtin kernel code) @vaddr will be paddr only, meaning CDU operation will
548 * use a paddr to index the cache (despite VIPT). This is fine since since a
549 * built-in kernel page will not have any virtual mappings (not even kernel)
550 * kprobe on loadable module is different as it will have kvaddr.
Vineet Gupta95d69762013-01-18 15:12:19 +0530551 */
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530552void __sync_icache_dcache(unsigned long paddr, unsigned long vaddr, int len)
Vineet Gupta95d69762013-01-18 15:12:19 +0530553{
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530554 unsigned long flags;
555
556 local_irq_save(flags);
557 __ic_line_inv_vaddr(paddr, vaddr, len);
Vineet Gupta95d69762013-01-18 15:12:19 +0530558 __dc_line_op(paddr, len, OP_FLUSH);
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530559 local_irq_restore(flags);
Vineet Gupta95d69762013-01-18 15:12:19 +0530560}
561
Vineet Gupta24603fd2013-04-11 18:36:35 +0530562/* wrapper to compile time eliminate alignment checks in flush loop */
563void __inv_icache_page(unsigned long paddr, unsigned long vaddr)
Vineet Gupta95d69762013-01-18 15:12:19 +0530564{
Vineet Gupta24603fd2013-04-11 18:36:35 +0530565 __ic_line_inv_vaddr(paddr, vaddr, PAGE_SIZE);
Vineet Gupta95d69762013-01-18 15:12:19 +0530566}
567
Vineet Guptaeacd0e952013-04-16 14:10:48 +0530568void __flush_dcache_page(unsigned long paddr)
569{
570 __dc_line_op(paddr, PAGE_SIZE, OP_FLUSH_N_INV);
571}
572
Vineet Gupta95d69762013-01-18 15:12:19 +0530573void flush_icache_all(void)
574{
575 unsigned long flags;
576
577 local_irq_save(flags);
578
579 write_aux_reg(ARC_REG_IC_IVIC, 1);
580
581 /* lr will not complete till the icache inv operation is not over */
582 read_aux_reg(ARC_REG_IC_CTRL);
583 local_irq_restore(flags);
584}
585
586noinline void flush_cache_all(void)
587{
588 unsigned long flags;
589
590 local_irq_save(flags);
591
592 flush_icache_all();
593 __dc_entire_op(OP_FLUSH_N_INV);
594
595 local_irq_restore(flags);
596
597}
598
599/**********************************************************************
600 * Explicit Cache flush request from user space via syscall
601 * Needed for JITs which generate code on the fly
602 */
603SYSCALL_DEFINE3(cacheflush, uint32_t, start, uint32_t, sz, uint32_t, flags)
604{
605 /* TBD: optimize this */
606 flush_cache_all();
607 return 0;
608}