Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 1 | /* |
| 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> |
Vineet Gupta | 4102b53 | 2013-05-09 21:54:51 +0530 | [diff] [blame] | 71 | #include <linux/pagemap.h> |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 72 | #include <asm/cacheflush.h> |
| 73 | #include <asm/cachectl.h> |
| 74 | #include <asm/setup.h> |
| 75 | |
Vineet Gupta | da1677b | 2013-05-14 13:28:17 +0530 | [diff] [blame] | 76 | /* Instruction cache related Auxiliary registers */ |
| 77 | #define ARC_REG_IC_BCR 0x77 /* Build Config reg */ |
| 78 | #define ARC_REG_IC_IVIC 0x10 |
| 79 | #define ARC_REG_IC_CTRL 0x11 |
| 80 | #define ARC_REG_IC_IVIL 0x19 |
| 81 | #if (CONFIG_ARC_MMU_VER > 2) |
| 82 | #define ARC_REG_IC_PTAG 0x1E |
| 83 | #endif |
| 84 | |
| 85 | /* Bit val in IC_CTRL */ |
| 86 | #define IC_CTRL_CACHE_DISABLE 0x1 |
| 87 | |
| 88 | /* Data cache related Auxiliary registers */ |
| 89 | #define ARC_REG_DC_BCR 0x72 /* Build Config reg */ |
| 90 | #define ARC_REG_DC_IVDC 0x47 |
| 91 | #define ARC_REG_DC_CTRL 0x48 |
| 92 | #define ARC_REG_DC_IVDL 0x4A |
| 93 | #define ARC_REG_DC_FLSH 0x4B |
| 94 | #define ARC_REG_DC_FLDL 0x4C |
| 95 | #if (CONFIG_ARC_MMU_VER > 2) |
| 96 | #define ARC_REG_DC_PTAG 0x5C |
| 97 | #endif |
| 98 | |
| 99 | /* Bit val in DC_CTRL */ |
| 100 | #define DC_CTRL_INV_MODE_FLUSH 0x40 |
| 101 | #define DC_CTRL_FLUSH_STATUS 0x100 |
| 102 | |
Vineet Gupta | af61742 | 2013-01-18 15:12:24 +0530 | [diff] [blame] | 103 | char *arc_cache_mumbojumbo(int cpu_id, char *buf, int len) |
| 104 | { |
| 105 | int n = 0; |
| 106 | unsigned int c = smp_processor_id(); |
| 107 | |
| 108 | #define PR_CACHE(p, enb, str) \ |
| 109 | { \ |
| 110 | if (!(p)->ver) \ |
| 111 | n += scnprintf(buf + n, len - n, str"\t\t: N/A\n"); \ |
| 112 | else \ |
| 113 | n += scnprintf(buf + n, len - n, \ |
| 114 | str"\t\t: (%uK) VIPT, %dway set-asc, %ub Line %s\n", \ |
| 115 | TO_KB((p)->sz), (p)->assoc, (p)->line_len, \ |
| 116 | enb ? "" : "DISABLED (kernel-build)"); \ |
| 117 | } |
| 118 | |
Vineet Gupta | 8235703 | 2013-06-01 12:55:42 +0530 | [diff] [blame] | 119 | PR_CACHE(&cpuinfo_arc700[c].icache, IS_ENABLED(CONFIG_ARC_HAS_ICACHE), |
| 120 | "I-Cache"); |
| 121 | PR_CACHE(&cpuinfo_arc700[c].dcache, IS_ENABLED(CONFIG_ARC_HAS_DCACHE), |
| 122 | "D-Cache"); |
Vineet Gupta | af61742 | 2013-01-18 15:12:24 +0530 | [diff] [blame] | 123 | |
| 124 | return buf; |
| 125 | } |
| 126 | |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 127 | /* |
| 128 | * Read the Cache Build Confuration Registers, Decode them and save into |
| 129 | * the cpuinfo structure for later use. |
| 130 | * No Validation done here, simply read/convert the BCRs |
| 131 | */ |
Vineet Gupta | 30ecee8 | 2013-04-09 17:18:12 +0530 | [diff] [blame] | 132 | void __cpuinit read_decode_cache_bcr(void) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 133 | { |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 134 | struct cpuinfo_arc_cache *p_ic, *p_dc; |
| 135 | unsigned int cpu = smp_processor_id(); |
Vineet Gupta | da1677b | 2013-05-14 13:28:17 +0530 | [diff] [blame] | 136 | struct bcr_cache { |
| 137 | #ifdef CONFIG_CPU_BIG_ENDIAN |
| 138 | unsigned int pad:12, line_len:4, sz:4, config:4, ver:8; |
| 139 | #else |
| 140 | unsigned int ver:8, config:4, sz:4, line_len:4, pad:12; |
| 141 | #endif |
| 142 | } ibcr, dbcr; |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 143 | |
| 144 | p_ic = &cpuinfo_arc700[cpu].icache; |
| 145 | READ_BCR(ARC_REG_IC_BCR, ibcr); |
| 146 | |
Vineet Gupta | 3049918 | 2013-06-15 10:21:51 +0530 | [diff] [blame^] | 147 | BUG_ON(ibcr.config != 3); |
| 148 | p_ic->assoc = 2; /* Fixed to 2w set assoc */ |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 149 | p_ic->line_len = 8 << ibcr.line_len; |
| 150 | p_ic->sz = 0x200 << ibcr.sz; |
| 151 | p_ic->ver = ibcr.ver; |
| 152 | |
| 153 | p_dc = &cpuinfo_arc700[cpu].dcache; |
| 154 | READ_BCR(ARC_REG_DC_BCR, dbcr); |
| 155 | |
Vineet Gupta | 3049918 | 2013-06-15 10:21:51 +0530 | [diff] [blame^] | 156 | BUG_ON(dbcr.config != 2); |
| 157 | p_dc->assoc = 4; /* Fixed to 4w set assoc */ |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 158 | p_dc->line_len = 16 << dbcr.line_len; |
| 159 | p_dc->sz = 0x200 << dbcr.sz; |
| 160 | p_dc->ver = dbcr.ver; |
| 161 | } |
| 162 | |
| 163 | /* |
| 164 | * 1. Validate the Cache Geomtery (compile time config matches hardware) |
| 165 | * 2. If I-cache suffers from aliasing, setup work arounds (difft flush rtn) |
| 166 | * (aliasing D-cache configurations are not supported YET) |
| 167 | * 3. Enable the Caches, setup default flush mode for D-Cache |
| 168 | * 3. Calculate the SHMLBA used by user space |
| 169 | */ |
Vineet Gupta | 30ecee8 | 2013-04-09 17:18:12 +0530 | [diff] [blame] | 170 | void __cpuinit arc_cache_init(void) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 171 | { |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 172 | unsigned int cpu = smp_processor_id(); |
Vineet Gupta | d626f54 | 2013-01-28 15:07:31 +0530 | [diff] [blame] | 173 | struct cpuinfo_arc_cache *ic = &cpuinfo_arc700[cpu].icache; |
| 174 | struct cpuinfo_arc_cache *dc = &cpuinfo_arc700[cpu].dcache; |
Vineet Gupta | da1677b | 2013-05-14 13:28:17 +0530 | [diff] [blame] | 175 | unsigned int dcache_does_alias, temp; |
Vineet Gupta | af61742 | 2013-01-18 15:12:24 +0530 | [diff] [blame] | 176 | char str[256]; |
| 177 | |
| 178 | printk(arc_cache_mumbojumbo(0, str, sizeof(str))); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 179 | |
Vineet Gupta | d626f54 | 2013-01-28 15:07:31 +0530 | [diff] [blame] | 180 | if (!ic->ver) |
| 181 | goto chk_dc; |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 182 | |
Vineet Gupta | d626f54 | 2013-01-28 15:07:31 +0530 | [diff] [blame] | 183 | #ifdef CONFIG_ARC_HAS_ICACHE |
Vineet Gupta | af61742 | 2013-01-18 15:12:24 +0530 | [diff] [blame] | 184 | /* 1. Confirm some of I-cache params which Linux assumes */ |
Vineet Gupta | 3049918 | 2013-06-15 10:21:51 +0530 | [diff] [blame^] | 185 | if (ic->line_len != ARC_ICACHE_LINE_LEN) |
Vineet Gupta | af61742 | 2013-01-18 15:12:24 +0530 | [diff] [blame] | 186 | panic("Cache H/W doesn't match kernel Config"); |
Vineet Gupta | af61742 | 2013-01-18 15:12:24 +0530 | [diff] [blame] | 187 | |
Vineet Gupta | 3049918 | 2013-06-15 10:21:51 +0530 | [diff] [blame^] | 188 | if (ic->ver != CONFIG_ARC_MMU_VER) |
| 189 | panic("Cache ver doesn't match MMU ver\n"); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 190 | #endif |
| 191 | |
| 192 | /* Enable/disable I-Cache */ |
| 193 | temp = read_aux_reg(ARC_REG_IC_CTRL); |
| 194 | |
| 195 | #ifdef CONFIG_ARC_HAS_ICACHE |
| 196 | temp &= ~IC_CTRL_CACHE_DISABLE; |
| 197 | #else |
| 198 | temp |= IC_CTRL_CACHE_DISABLE; |
| 199 | #endif |
| 200 | |
| 201 | write_aux_reg(ARC_REG_IC_CTRL, temp); |
| 202 | |
Vineet Gupta | d626f54 | 2013-01-28 15:07:31 +0530 | [diff] [blame] | 203 | chk_dc: |
| 204 | if (!dc->ver) |
| 205 | return; |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 206 | |
Vineet Gupta | d626f54 | 2013-01-28 15:07:31 +0530 | [diff] [blame] | 207 | #ifdef CONFIG_ARC_HAS_DCACHE |
Vineet Gupta | 3049918 | 2013-06-15 10:21:51 +0530 | [diff] [blame^] | 208 | if (dc->line_len != ARC_DCACHE_LINE_LEN) |
Vineet Gupta | af61742 | 2013-01-18 15:12:24 +0530 | [diff] [blame] | 209 | panic("Cache H/W doesn't match kernel Config"); |
Vineet Gupta | 4102b53 | 2013-05-09 21:54:51 +0530 | [diff] [blame] | 210 | |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 211 | /* check for D-Cache aliasing */ |
Vineet Gupta | 3049918 | 2013-06-15 10:21:51 +0530 | [diff] [blame^] | 212 | dcache_does_alias = (dc->sz / dc->assoc) > PAGE_SIZE; |
| 213 | |
Vineet Gupta | 4102b53 | 2013-05-09 21:54:51 +0530 | [diff] [blame] | 214 | if (dcache_does_alias && !cache_is_vipt_aliasing()) |
| 215 | panic("Enable CONFIG_ARC_CACHE_VIPT_ALIASING\n"); |
| 216 | else if (!dcache_does_alias && cache_is_vipt_aliasing()) |
| 217 | panic("Don't need CONFIG_ARC_CACHE_VIPT_ALIASING\n"); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 218 | #endif |
| 219 | |
| 220 | /* Set the default Invalidate Mode to "simpy discard dirty lines" |
| 221 | * as this is more frequent then flush before invalidate |
| 222 | * Ofcourse we toggle this default behviour when desired |
| 223 | */ |
| 224 | temp = read_aux_reg(ARC_REG_DC_CTRL); |
| 225 | temp &= ~DC_CTRL_INV_MODE_FLUSH; |
| 226 | |
| 227 | #ifdef CONFIG_ARC_HAS_DCACHE |
| 228 | /* Enable D-Cache: Clear Bit 0 */ |
| 229 | write_aux_reg(ARC_REG_DC_CTRL, temp & ~IC_CTRL_CACHE_DISABLE); |
| 230 | #else |
| 231 | /* Flush D cache */ |
| 232 | write_aux_reg(ARC_REG_DC_FLSH, 0x1); |
| 233 | /* Disable D cache */ |
| 234 | write_aux_reg(ARC_REG_DC_CTRL, temp | IC_CTRL_CACHE_DISABLE); |
| 235 | #endif |
| 236 | |
| 237 | return; |
| 238 | } |
| 239 | |
| 240 | #define OP_INV 0x1 |
| 241 | #define OP_FLUSH 0x2 |
| 242 | #define OP_FLUSH_N_INV 0x3 |
| 243 | |
| 244 | #ifdef CONFIG_ARC_HAS_DCACHE |
| 245 | |
| 246 | /*************************************************************** |
| 247 | * Machine specific helpers for Entire D-Cache or Per Line ops |
| 248 | */ |
| 249 | |
| 250 | static inline void wait_for_flush(void) |
| 251 | { |
| 252 | while (read_aux_reg(ARC_REG_DC_CTRL) & DC_CTRL_FLUSH_STATUS) |
| 253 | ; |
| 254 | } |
| 255 | |
| 256 | /* |
| 257 | * Operation on Entire D-Cache |
| 258 | * @cacheop = {OP_INV, OP_FLUSH, OP_FLUSH_N_INV} |
| 259 | * Note that constant propagation ensures all the checks are gone |
| 260 | * in generated code |
| 261 | */ |
| 262 | static inline void __dc_entire_op(const int cacheop) |
| 263 | { |
| 264 | unsigned long flags, tmp = tmp; |
| 265 | int aux; |
| 266 | |
| 267 | local_irq_save(flags); |
| 268 | |
| 269 | if (cacheop == OP_FLUSH_N_INV) { |
| 270 | /* Dcache provides 2 cmd: FLUSH or INV |
| 271 | * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE |
| 272 | * flush-n-inv is achieved by INV cmd but with IM=1 |
| 273 | * Default INV sub-mode is DISCARD, which needs to be toggled |
| 274 | */ |
| 275 | tmp = read_aux_reg(ARC_REG_DC_CTRL); |
| 276 | write_aux_reg(ARC_REG_DC_CTRL, tmp | DC_CTRL_INV_MODE_FLUSH); |
| 277 | } |
| 278 | |
| 279 | if (cacheop & OP_INV) /* Inv or flush-n-inv use same cmd reg */ |
| 280 | aux = ARC_REG_DC_IVDC; |
| 281 | else |
| 282 | aux = ARC_REG_DC_FLSH; |
| 283 | |
| 284 | write_aux_reg(aux, 0x1); |
| 285 | |
| 286 | if (cacheop & OP_FLUSH) /* flush / flush-n-inv both wait */ |
| 287 | wait_for_flush(); |
| 288 | |
| 289 | /* Switch back the DISCARD ONLY Invalidate mode */ |
| 290 | if (cacheop == OP_FLUSH_N_INV) |
| 291 | write_aux_reg(ARC_REG_DC_CTRL, tmp & ~DC_CTRL_INV_MODE_FLUSH); |
| 292 | |
| 293 | local_irq_restore(flags); |
| 294 | } |
| 295 | |
| 296 | /* |
| 297 | * Per Line Operation on D-Cache |
| 298 | * Doesn't deal with type-of-op/IRQ-disabling/waiting-for-flush-to-complete |
| 299 | * It's sole purpose is to help gcc generate ZOL |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 300 | * (aliasing VIPT dcache flushing needs both vaddr and paddr) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 301 | */ |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 302 | static inline void __dc_line_loop(unsigned long paddr, unsigned long vaddr, |
| 303 | unsigned long sz, const int aux_reg) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 304 | { |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 305 | int num_lines; |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 306 | |
| 307 | /* Ensure we properly floor/ceil the non-line aligned/sized requests |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 308 | * and have @paddr - aligned to cache line and integral @num_lines. |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 309 | * This however can be avoided for page sized since: |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 310 | * -@paddr will be cache-line aligned already (being page aligned) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 311 | * -@sz will be integral multiple of line size (being page sized). |
| 312 | */ |
| 313 | if (!(__builtin_constant_p(sz) && sz == PAGE_SIZE)) { |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 314 | sz += paddr & ~DCACHE_LINE_MASK; |
| 315 | paddr &= DCACHE_LINE_MASK; |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 316 | vaddr &= DCACHE_LINE_MASK; |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | num_lines = DIV_ROUND_UP(sz, ARC_DCACHE_LINE_LEN); |
| 320 | |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 321 | #if (CONFIG_ARC_MMU_VER <= 2) |
| 322 | paddr |= (vaddr >> PAGE_SHIFT) & 0x1F; |
| 323 | #endif |
| 324 | |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 325 | while (num_lines-- > 0) { |
| 326 | #if (CONFIG_ARC_MMU_VER > 2) |
| 327 | /* |
| 328 | * Just as for I$, in MMU v3, D$ ops also require |
| 329 | * "tag" bits in DC_PTAG, "index" bits in FLDL,IVDL ops |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 330 | */ |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 331 | write_aux_reg(ARC_REG_DC_PTAG, paddr); |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 332 | |
| 333 | write_aux_reg(aux_reg, vaddr); |
| 334 | vaddr += ARC_DCACHE_LINE_LEN; |
| 335 | #else |
| 336 | /* paddr contains stuffed vaddrs bits */ |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 337 | write_aux_reg(aux_reg, paddr); |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 338 | #endif |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 339 | paddr += ARC_DCACHE_LINE_LEN; |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 340 | } |
| 341 | } |
| 342 | |
Vineet Gupta | 4102b53 | 2013-05-09 21:54:51 +0530 | [diff] [blame] | 343 | /* For kernel mappings cache operation: index is same as paddr */ |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 344 | #define __dc_line_op_k(p, sz, op) __dc_line_op(p, p, sz, op) |
| 345 | |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 346 | /* |
| 347 | * D-Cache : Per Line INV (discard or wback+discard) or FLUSH (wback) |
| 348 | */ |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 349 | static inline void __dc_line_op(unsigned long paddr, unsigned long vaddr, |
| 350 | unsigned long sz, const int cacheop) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 351 | { |
| 352 | unsigned long flags, tmp = tmp; |
| 353 | int aux; |
| 354 | |
| 355 | local_irq_save(flags); |
| 356 | |
| 357 | if (cacheop == OP_FLUSH_N_INV) { |
| 358 | /* |
| 359 | * Dcache provides 2 cmd: FLUSH or INV |
| 360 | * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE |
| 361 | * flush-n-inv is achieved by INV cmd but with IM=1 |
| 362 | * Default INV sub-mode is DISCARD, which needs to be toggled |
| 363 | */ |
| 364 | tmp = read_aux_reg(ARC_REG_DC_CTRL); |
| 365 | write_aux_reg(ARC_REG_DC_CTRL, tmp | DC_CTRL_INV_MODE_FLUSH); |
| 366 | } |
| 367 | |
| 368 | if (cacheop & OP_INV) /* Inv / flush-n-inv use same cmd reg */ |
| 369 | aux = ARC_REG_DC_IVDL; |
| 370 | else |
| 371 | aux = ARC_REG_DC_FLDL; |
| 372 | |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 373 | __dc_line_loop(paddr, vaddr, sz, aux); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 374 | |
| 375 | if (cacheop & OP_FLUSH) /* flush / flush-n-inv both wait */ |
| 376 | wait_for_flush(); |
| 377 | |
| 378 | /* Switch back the DISCARD ONLY Invalidate mode */ |
| 379 | if (cacheop == OP_FLUSH_N_INV) |
| 380 | write_aux_reg(ARC_REG_DC_CTRL, tmp & ~DC_CTRL_INV_MODE_FLUSH); |
| 381 | |
| 382 | local_irq_restore(flags); |
| 383 | } |
| 384 | |
| 385 | #else |
| 386 | |
| 387 | #define __dc_entire_op(cacheop) |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 388 | #define __dc_line_op(paddr, vaddr, sz, cacheop) |
| 389 | #define __dc_line_op_k(paddr, sz, cacheop) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 390 | |
| 391 | #endif /* CONFIG_ARC_HAS_DCACHE */ |
| 392 | |
| 393 | |
| 394 | #ifdef CONFIG_ARC_HAS_ICACHE |
| 395 | |
| 396 | /* |
| 397 | * I-Cache Aliasing in ARC700 VIPT caches |
| 398 | * |
Vineet Gupta | 7f250a0 | 2013-04-12 13:08:06 +0530 | [diff] [blame] | 399 | * ARC VIPT I-cache uses vaddr to index into cache and paddr to match the tag. |
| 400 | * The orig Cache Management Module "CDU" only required paddr to invalidate a |
| 401 | * certain line since it sufficed as index in Non-Aliasing VIPT cache-geometry. |
| 402 | * Infact for distinct V1,V2,P: all of {V1-P},{V2-P},{P-P} would end up fetching |
| 403 | * the exact same line. |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 404 | * |
Vineet Gupta | 7f250a0 | 2013-04-12 13:08:06 +0530 | [diff] [blame] | 405 | * However for larger Caches (way-size > page-size) - i.e. in Aliasing config, |
| 406 | * paddr alone could not be used to correctly index the cache. |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 407 | * |
| 408 | * ------------------ |
| 409 | * MMU v1/v2 (Fixed Page Size 8k) |
| 410 | * ------------------ |
| 411 | * The solution was to provide CDU with these additonal vaddr bits. These |
Vineet Gupta | 7f250a0 | 2013-04-12 13:08:06 +0530 | [diff] [blame] | 412 | * would be bits [x:13], x would depend on cache-geometry, 13 comes from |
| 413 | * standard page size of 8k. |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 414 | * H/w folks chose [17:13] to be a future safe range, and moreso these 5 bits |
| 415 | * of vaddr could easily be "stuffed" in the paddr as bits [4:0] since the |
| 416 | * orig 5 bits of paddr were anyways ignored by CDU line ops, as they |
| 417 | * represent the offset within cache-line. The adv of using this "clumsy" |
Vineet Gupta | 7f250a0 | 2013-04-12 13:08:06 +0530 | [diff] [blame] | 418 | * interface for additional info was no new reg was needed in CDU programming |
| 419 | * model. |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 420 | * |
| 421 | * 17:13 represented the max num of bits passable, actual bits needed were |
| 422 | * fewer, based on the num-of-aliases possible. |
| 423 | * -for 2 alias possibility, only bit 13 needed (32K cache) |
| 424 | * -for 4 alias possibility, bits 14:13 needed (64K cache) |
| 425 | * |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 426 | * ------------------ |
| 427 | * MMU v3 |
| 428 | * ------------------ |
Vineet Gupta | 7f250a0 | 2013-04-12 13:08:06 +0530 | [diff] [blame] | 429 | * This ver of MMU supports variable page sizes (1k-16k): although Linux will |
| 430 | * only support 8k (default), 16k and 4k. |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 431 | * However from hardware perspective, smaller page sizes aggrevate aliasing |
| 432 | * meaning more vaddr bits needed to disambiguate the cache-line-op ; |
| 433 | * the existing scheme of piggybacking won't work for certain configurations. |
| 434 | * Two new registers IC_PTAG and DC_PTAG inttoduced. |
| 435 | * "tag" bits are provided in PTAG, index bits in existing IVIL/IVDL/FLDL regs |
| 436 | */ |
| 437 | |
| 438 | /*********************************************************** |
Vineet Gupta | 7f250a0 | 2013-04-12 13:08:06 +0530 | [diff] [blame] | 439 | * Machine specific helper for per line I-Cache invalidate. |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 440 | */ |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 441 | static void __ic_line_inv_vaddr(unsigned long paddr, unsigned long vaddr, |
Vineet Gupta | 7f250a0 | 2013-04-12 13:08:06 +0530 | [diff] [blame] | 442 | unsigned long sz) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 443 | { |
| 444 | unsigned long flags; |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 445 | int num_lines; |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 446 | |
Vineet Gupta | 764531c | 2013-04-12 15:32:06 +0530 | [diff] [blame] | 447 | /* |
| 448 | * Ensure we properly floor/ceil the non-line aligned/sized requests: |
| 449 | * However page sized flushes can be compile time optimised. |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 450 | * -@paddr will be cache-line aligned already (being page aligned) |
Vineet Gupta | 764531c | 2013-04-12 15:32:06 +0530 | [diff] [blame] | 451 | * -@sz will be integral multiple of line size (being page sized). |
| 452 | */ |
| 453 | if (!(__builtin_constant_p(sz) && sz == PAGE_SIZE)) { |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 454 | sz += paddr & ~ICACHE_LINE_MASK; |
| 455 | paddr &= ICACHE_LINE_MASK; |
| 456 | vaddr &= ICACHE_LINE_MASK; |
Vineet Gupta | 764531c | 2013-04-12 15:32:06 +0530 | [diff] [blame] | 457 | } |
| 458 | |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 459 | num_lines = DIV_ROUND_UP(sz, ARC_ICACHE_LINE_LEN); |
| 460 | |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 461 | #if (CONFIG_ARC_MMU_VER <= 2) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 462 | /* bits 17:13 of vaddr go as bits 4:0 of paddr */ |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 463 | paddr |= (vaddr >> PAGE_SHIFT) & 0x1F; |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 464 | #endif |
| 465 | |
| 466 | local_irq_save(flags); |
| 467 | while (num_lines-- > 0) { |
| 468 | #if (CONFIG_ARC_MMU_VER > 2) |
| 469 | /* tag comes from phy addr */ |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 470 | write_aux_reg(ARC_REG_IC_PTAG, paddr); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 471 | |
| 472 | /* index bits come from vaddr */ |
| 473 | write_aux_reg(ARC_REG_IC_IVIL, vaddr); |
| 474 | vaddr += ARC_ICACHE_LINE_LEN; |
| 475 | #else |
Vineet Gupta | 7f250a0 | 2013-04-12 13:08:06 +0530 | [diff] [blame] | 476 | /* paddr contains stuffed vaddrs bits */ |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 477 | write_aux_reg(ARC_REG_IC_IVIL, paddr); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 478 | #endif |
Vineet Gupta | a690984 | 2013-05-09 14:00:51 +0530 | [diff] [blame] | 479 | paddr += ARC_ICACHE_LINE_LEN; |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 480 | } |
| 481 | local_irq_restore(flags); |
| 482 | } |
| 483 | |
| 484 | #else |
| 485 | |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 486 | #define __ic_line_inv_vaddr(pstart, vstart, sz) |
| 487 | |
| 488 | #endif /* CONFIG_ARC_HAS_ICACHE */ |
| 489 | |
| 490 | |
| 491 | /*********************************************************** |
| 492 | * Exported APIs |
| 493 | */ |
| 494 | |
Vineet Gupta | 4102b53 | 2013-05-09 21:54:51 +0530 | [diff] [blame] | 495 | /* |
| 496 | * Handle cache congruency of kernel and userspace mappings of page when kernel |
| 497 | * writes-to/reads-from |
| 498 | * |
| 499 | * The idea is to defer flushing of kernel mapping after a WRITE, possible if: |
| 500 | * -dcache is NOT aliasing, hence any U/K-mappings of page are congruent |
| 501 | * -U-mapping doesn't exist yet for page (finalised in update_mmu_cache) |
| 502 | * -In SMP, if hardware caches are coherent |
| 503 | * |
| 504 | * There's a corollary case, where kernel READs from a userspace mapped page. |
| 505 | * If the U-mapping is not congruent to to K-mapping, former needs flushing. |
| 506 | */ |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 507 | void flush_dcache_page(struct page *page) |
| 508 | { |
Vineet Gupta | 4102b53 | 2013-05-09 21:54:51 +0530 | [diff] [blame] | 509 | struct address_space *mapping; |
| 510 | |
| 511 | if (!cache_is_vipt_aliasing()) { |
| 512 | set_bit(PG_arch_1, &page->flags); |
| 513 | return; |
| 514 | } |
| 515 | |
| 516 | /* don't handle anon pages here */ |
| 517 | mapping = page_mapping(page); |
| 518 | if (!mapping) |
| 519 | return; |
| 520 | |
| 521 | /* |
| 522 | * pagecache page, file not yet mapped to userspace |
| 523 | * Make a note that K-mapping is dirty |
| 524 | */ |
| 525 | if (!mapping_mapped(mapping)) { |
| 526 | set_bit(PG_arch_1, &page->flags); |
| 527 | } else if (page_mapped(page)) { |
| 528 | |
| 529 | /* kernel reading from page with U-mapping */ |
| 530 | void *paddr = page_address(page); |
| 531 | unsigned long vaddr = page->index << PAGE_CACHE_SHIFT; |
| 532 | |
| 533 | if (addr_not_cache_congruent(paddr, vaddr)) |
| 534 | __flush_dcache_page(paddr, vaddr); |
| 535 | } |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 536 | } |
| 537 | EXPORT_SYMBOL(flush_dcache_page); |
| 538 | |
| 539 | |
| 540 | void dma_cache_wback_inv(unsigned long start, unsigned long sz) |
| 541 | { |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 542 | __dc_line_op_k(start, sz, OP_FLUSH_N_INV); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 543 | } |
| 544 | EXPORT_SYMBOL(dma_cache_wback_inv); |
| 545 | |
| 546 | void dma_cache_inv(unsigned long start, unsigned long sz) |
| 547 | { |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 548 | __dc_line_op_k(start, sz, OP_INV); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 549 | } |
| 550 | EXPORT_SYMBOL(dma_cache_inv); |
| 551 | |
| 552 | void dma_cache_wback(unsigned long start, unsigned long sz) |
| 553 | { |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 554 | __dc_line_op_k(start, sz, OP_FLUSH); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 555 | } |
| 556 | EXPORT_SYMBOL(dma_cache_wback); |
| 557 | |
| 558 | /* |
Vineet Gupta | 7586bf72 | 2013-04-12 12:18:25 +0530 | [diff] [blame] | 559 | * This is API for making I/D Caches consistent when modifying |
| 560 | * kernel code (loadable modules, kprobes, kgdb...) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 561 | * This is called on insmod, with kernel virtual address for CODE of |
| 562 | * the module. ARC cache maintenance ops require PHY address thus we |
| 563 | * need to convert vmalloc addr to PHY addr |
| 564 | */ |
| 565 | void flush_icache_range(unsigned long kstart, unsigned long kend) |
| 566 | { |
| 567 | unsigned int tot_sz, off, sz; |
| 568 | unsigned long phy, pfn; |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 569 | |
| 570 | /* printk("Kernel Cache Cohenercy: %lx to %lx\n",kstart, kend); */ |
| 571 | |
| 572 | /* This is not the right API for user virtual address */ |
| 573 | if (kstart < TASK_SIZE) { |
| 574 | BUG_ON("Flush icache range for user virtual addr space"); |
| 575 | return; |
| 576 | } |
| 577 | |
| 578 | /* Shortcut for bigger flush ranges. |
| 579 | * Here we don't care if this was kernel virtual or phy addr |
| 580 | */ |
| 581 | tot_sz = kend - kstart; |
| 582 | if (tot_sz > PAGE_SIZE) { |
| 583 | flush_cache_all(); |
| 584 | return; |
| 585 | } |
| 586 | |
| 587 | /* Case: Kernel Phy addr (0x8000_0000 onwards) */ |
| 588 | if (likely(kstart > PAGE_OFFSET)) { |
Vineet Gupta | 7586bf72 | 2013-04-12 12:18:25 +0530 | [diff] [blame] | 589 | /* |
| 590 | * The 2nd arg despite being paddr will be used to index icache |
| 591 | * This is OK since no alternate virtual mappings will exist |
| 592 | * given the callers for this case: kprobe/kgdb in built-in |
| 593 | * kernel code only. |
| 594 | */ |
Vineet Gupta | 94bad1a | 2013-04-12 12:20:23 +0530 | [diff] [blame] | 595 | __sync_icache_dcache(kstart, kstart, kend - kstart); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 596 | return; |
| 597 | } |
| 598 | |
| 599 | /* |
| 600 | * Case: Kernel Vaddr (0x7000_0000 to 0x7fff_ffff) |
| 601 | * (1) ARC Cache Maintenance ops only take Phy addr, hence special |
| 602 | * handling of kernel vaddr. |
| 603 | * |
| 604 | * (2) Despite @tot_sz being < PAGE_SIZE (bigger cases handled already), |
| 605 | * it still needs to handle a 2 page scenario, where the range |
| 606 | * straddles across 2 virtual pages and hence need for loop |
| 607 | */ |
| 608 | while (tot_sz > 0) { |
| 609 | off = kstart % PAGE_SIZE; |
| 610 | pfn = vmalloc_to_pfn((void *)kstart); |
| 611 | phy = (pfn << PAGE_SHIFT) + off; |
| 612 | sz = min_t(unsigned int, tot_sz, PAGE_SIZE - off); |
Vineet Gupta | 94bad1a | 2013-04-12 12:20:23 +0530 | [diff] [blame] | 613 | __sync_icache_dcache(phy, kstart, sz); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 614 | kstart += sz; |
| 615 | tot_sz -= sz; |
| 616 | } |
| 617 | } |
| 618 | |
| 619 | /* |
Vineet Gupta | 94bad1a | 2013-04-12 12:20:23 +0530 | [diff] [blame] | 620 | * General purpose helper to make I and D cache lines consistent. |
| 621 | * @paddr is phy addr of region |
| 622 | * @vaddr is typically user or kernel vaddr (vmalloc) |
| 623 | * Howver in one instance, flush_icache_range() by kprobe (for a breakpt in |
| 624 | * builtin kernel code) @vaddr will be paddr only, meaning CDU operation will |
| 625 | * use a paddr to index the cache (despite VIPT). This is fine since since a |
| 626 | * built-in kernel page will not have any virtual mappings (not even kernel) |
| 627 | * kprobe on loadable module is different as it will have kvaddr. |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 628 | */ |
Vineet Gupta | 94bad1a | 2013-04-12 12:20:23 +0530 | [diff] [blame] | 629 | void __sync_icache_dcache(unsigned long paddr, unsigned long vaddr, int len) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 630 | { |
Vineet Gupta | 94bad1a | 2013-04-12 12:20:23 +0530 | [diff] [blame] | 631 | unsigned long flags; |
| 632 | |
| 633 | local_irq_save(flags); |
| 634 | __ic_line_inv_vaddr(paddr, vaddr, len); |
Vineet Gupta | f538881 | 2013-05-16 12:19:29 +0530 | [diff] [blame] | 635 | __dc_line_op(paddr, vaddr, len, OP_FLUSH_N_INV); |
Vineet Gupta | 94bad1a | 2013-04-12 12:20:23 +0530 | [diff] [blame] | 636 | local_irq_restore(flags); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 637 | } |
| 638 | |
Vineet Gupta | 24603fd | 2013-04-11 18:36:35 +0530 | [diff] [blame] | 639 | /* wrapper to compile time eliminate alignment checks in flush loop */ |
| 640 | void __inv_icache_page(unsigned long paddr, unsigned long vaddr) |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 641 | { |
Vineet Gupta | 24603fd | 2013-04-11 18:36:35 +0530 | [diff] [blame] | 642 | __ic_line_inv_vaddr(paddr, vaddr, PAGE_SIZE); |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 643 | } |
| 644 | |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 645 | /* |
| 646 | * wrapper to clearout kernel or userspace mappings of a page |
| 647 | * For kernel mappings @vaddr == @paddr |
| 648 | */ |
Vineet Gupta | de2a852 | 2013-05-09 21:55:27 +0530 | [diff] [blame] | 649 | void ___flush_dcache_page(unsigned long paddr, unsigned long vaddr) |
Vineet Gupta | eacd0e95 | 2013-04-16 14:10:48 +0530 | [diff] [blame] | 650 | { |
Vineet Gupta | 6ec18a8 | 2013-05-09 15:10:18 +0530 | [diff] [blame] | 651 | __dc_line_op(paddr, vaddr & PAGE_MASK, PAGE_SIZE, OP_FLUSH_N_INV); |
Vineet Gupta | eacd0e95 | 2013-04-16 14:10:48 +0530 | [diff] [blame] | 652 | } |
| 653 | |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 654 | void flush_icache_all(void) |
| 655 | { |
| 656 | unsigned long flags; |
| 657 | |
| 658 | local_irq_save(flags); |
| 659 | |
| 660 | write_aux_reg(ARC_REG_IC_IVIC, 1); |
| 661 | |
| 662 | /* lr will not complete till the icache inv operation is not over */ |
| 663 | read_aux_reg(ARC_REG_IC_CTRL); |
| 664 | local_irq_restore(flags); |
| 665 | } |
| 666 | |
| 667 | noinline void flush_cache_all(void) |
| 668 | { |
| 669 | unsigned long flags; |
| 670 | |
| 671 | local_irq_save(flags); |
| 672 | |
| 673 | flush_icache_all(); |
| 674 | __dc_entire_op(OP_FLUSH_N_INV); |
| 675 | |
| 676 | local_irq_restore(flags); |
| 677 | |
| 678 | } |
| 679 | |
Vineet Gupta | 4102b53 | 2013-05-09 21:54:51 +0530 | [diff] [blame] | 680 | #ifdef CONFIG_ARC_CACHE_VIPT_ALIASING |
| 681 | |
| 682 | void flush_cache_mm(struct mm_struct *mm) |
| 683 | { |
| 684 | flush_cache_all(); |
| 685 | } |
| 686 | |
| 687 | void flush_cache_page(struct vm_area_struct *vma, unsigned long u_vaddr, |
| 688 | unsigned long pfn) |
| 689 | { |
| 690 | unsigned int paddr = pfn << PAGE_SHIFT; |
| 691 | |
| 692 | __sync_icache_dcache(paddr, u_vaddr, PAGE_SIZE); |
| 693 | } |
| 694 | |
| 695 | void flush_cache_range(struct vm_area_struct *vma, unsigned long start, |
| 696 | unsigned long end) |
| 697 | { |
| 698 | flush_cache_all(); |
| 699 | } |
| 700 | |
Vineet Gupta | 7bb66f6 | 2013-05-25 14:04:25 +0530 | [diff] [blame] | 701 | void flush_anon_page(struct vm_area_struct *vma, struct page *page, |
| 702 | unsigned long u_vaddr) |
| 703 | { |
| 704 | /* TBD: do we really need to clear the kernel mapping */ |
| 705 | __flush_dcache_page(page_address(page), u_vaddr); |
| 706 | __flush_dcache_page(page_address(page), page_address(page)); |
| 707 | |
| 708 | } |
| 709 | |
| 710 | #endif |
| 711 | |
Vineet Gupta | 4102b53 | 2013-05-09 21:54:51 +0530 | [diff] [blame] | 712 | void copy_user_highpage(struct page *to, struct page *from, |
| 713 | unsigned long u_vaddr, struct vm_area_struct *vma) |
| 714 | { |
| 715 | void *kfrom = page_address(from); |
| 716 | void *kto = page_address(to); |
| 717 | int clean_src_k_mappings = 0; |
| 718 | |
| 719 | /* |
| 720 | * If SRC page was already mapped in userspace AND it's U-mapping is |
| 721 | * not congruent with K-mapping, sync former to physical page so that |
| 722 | * K-mapping in memcpy below, sees the right data |
| 723 | * |
| 724 | * Note that while @u_vaddr refers to DST page's userspace vaddr, it is |
| 725 | * equally valid for SRC page as well |
| 726 | */ |
| 727 | if (page_mapped(from) && addr_not_cache_congruent(kfrom, u_vaddr)) { |
| 728 | __flush_dcache_page(kfrom, u_vaddr); |
| 729 | clean_src_k_mappings = 1; |
| 730 | } |
| 731 | |
| 732 | copy_page(kto, kfrom); |
| 733 | |
| 734 | /* |
| 735 | * Mark DST page K-mapping as dirty for a later finalization by |
| 736 | * update_mmu_cache(). Although the finalization could have been done |
| 737 | * here as well (given that both vaddr/paddr are available). |
| 738 | * But update_mmu_cache() already has code to do that for other |
| 739 | * non copied user pages (e.g. read faults which wire in pagecache page |
| 740 | * directly). |
| 741 | */ |
| 742 | set_bit(PG_arch_1, &to->flags); |
| 743 | |
| 744 | /* |
| 745 | * if SRC was already usermapped and non-congruent to kernel mapping |
| 746 | * sync the kernel mapping back to physical page |
| 747 | */ |
| 748 | if (clean_src_k_mappings) { |
| 749 | __flush_dcache_page(kfrom, kfrom); |
| 750 | } else { |
| 751 | set_bit(PG_arch_1, &from->flags); |
| 752 | } |
| 753 | } |
| 754 | |
| 755 | void clear_user_page(void *to, unsigned long u_vaddr, struct page *page) |
| 756 | { |
| 757 | clear_page(to); |
| 758 | set_bit(PG_arch_1, &page->flags); |
| 759 | } |
| 760 | |
Vineet Gupta | 4102b53 | 2013-05-09 21:54:51 +0530 | [diff] [blame] | 761 | |
Vineet Gupta | 95d6976 | 2013-01-18 15:12:19 +0530 | [diff] [blame] | 762 | /********************************************************************** |
| 763 | * Explicit Cache flush request from user space via syscall |
| 764 | * Needed for JITs which generate code on the fly |
| 765 | */ |
| 766 | SYSCALL_DEFINE3(cacheflush, uint32_t, start, uint32_t, sz, uint32_t, flags) |
| 767 | { |
| 768 | /* TBD: optimize this */ |
| 769 | flush_cache_all(); |
| 770 | return 0; |
| 771 | } |