1
2
3
4
5
6
7
8
9#include <linux/module.h>
10#include <linux/mm.h>
11#include <linux/sched.h>
12#include <linux/cache.h>
13#include <linux/mmu_context.h>
14#include <linux/syscalls.h>
15#include <linux/uaccess.h>
16#include <linux/pagemap.h>
17#include <asm/cacheflush.h>
18#include <asm/cachectl.h>
19#include <asm/setup.h>
20
21#ifdef CONFIG_ISA_ARCV2
22#define USE_RGN_FLSH 1
23#endif
24
25static int l2_line_sz;
26static int ioc_exists;
27int slc_enable = 1, ioc_enable = 1;
28unsigned long perip_base = ARC_UNCACHED_ADDR_SPACE;
29unsigned long perip_end = 0xFFFFFFFF;
30
31void (*_cache_line_loop_ic_fn)(phys_addr_t paddr, unsigned long vaddr,
32 unsigned long sz, const int op, const int full_page);
33
34void (*__dma_cache_wback_inv)(phys_addr_t start, unsigned long sz);
35void (*__dma_cache_inv)(phys_addr_t start, unsigned long sz);
36void (*__dma_cache_wback)(phys_addr_t start, unsigned long sz);
37
38char *arc_cache_mumbojumbo(int c, char *buf, int len)
39{
40 int n = 0;
41 struct cpuinfo_arc_cache *p;
42
43#define PR_CACHE(p, cfg, str) \
44 if (!(p)->line_len) \
45 n += scnprintf(buf + n, len - n, str"\t\t: N/A\n"); \
46 else \
47 n += scnprintf(buf + n, len - n, \
48 str"\t\t: %uK, %dway/set, %uB Line, %s%s%s\n", \
49 (p)->sz_k, (p)->assoc, (p)->line_len, \
50 (p)->vipt ? "VIPT" : "PIPT", \
51 (p)->alias ? " aliasing" : "", \
52 IS_USED_CFG(cfg));
53
54 PR_CACHE(&cpuinfo_arc700[c].icache, CONFIG_ARC_HAS_ICACHE, "I-Cache");
55 PR_CACHE(&cpuinfo_arc700[c].dcache, CONFIG_ARC_HAS_DCACHE, "D-Cache");
56
57 p = &cpuinfo_arc700[c].slc;
58 if (p->line_len)
59 n += scnprintf(buf + n, len - n,
60 "SLC\t\t: %uK, %uB Line%s\n",
61 p->sz_k, p->line_len, IS_USED_RUN(slc_enable));
62
63 n += scnprintf(buf + n, len - n, "Peripherals\t: %#lx%s%s\n",
64 perip_base,
65 IS_AVAIL3(ioc_exists, ioc_enable, ", IO-Coherency (per-device) "));
66
67 return buf;
68}
69
70
71
72
73
74
75static void read_decode_cache_bcr_arcv2(int cpu)
76{
77 struct cpuinfo_arc_cache *p_slc = &cpuinfo_arc700[cpu].slc;
78 struct bcr_generic sbcr;
79
80 struct bcr_slc_cfg {
81#ifdef CONFIG_CPU_BIG_ENDIAN
82 unsigned int pad:24, way:2, lsz:2, sz:4;
83#else
84 unsigned int sz:4, lsz:2, way:2, pad:24;
85#endif
86 } slc_cfg;
87
88 struct bcr_clust_cfg {
89#ifdef CONFIG_CPU_BIG_ENDIAN
90 unsigned int pad:7, c:1, num_entries:8, num_cores:8, ver:8;
91#else
92 unsigned int ver:8, num_cores:8, num_entries:8, c:1, pad:7;
93#endif
94 } cbcr;
95
96 struct bcr_volatile {
97#ifdef CONFIG_CPU_BIG_ENDIAN
98 unsigned int start:4, limit:4, pad:22, order:1, disable:1;
99#else
100 unsigned int disable:1, order:1, pad:22, limit:4, start:4;
101#endif
102 } vol;
103
104
105 READ_BCR(ARC_REG_SLC_BCR, sbcr);
106 if (sbcr.ver) {
107 READ_BCR(ARC_REG_SLC_CFG, slc_cfg);
108 p_slc->sz_k = 128 << slc_cfg.sz;
109 l2_line_sz = p_slc->line_len = (slc_cfg.lsz == 0) ? 128 : 64;
110 }
111
112 READ_BCR(ARC_REG_CLUSTER_BCR, cbcr);
113 if (cbcr.c) {
114 ioc_exists = 1;
115
116
117
118
119
120
121
122
123
124
125
126 if (IS_ENABLED(CONFIG_HIGHMEM) || is_pae40_enabled())
127 ioc_enable = 0;
128 } else {
129 ioc_enable = 0;
130 }
131
132
133 if (cpuinfo_arc700[cpu].core.family > 0x51) {
134 READ_BCR(AUX_VOL, vol);
135 perip_base = vol.start << 28;
136
137 if (cpuinfo_arc700[cpu].core.family > 0x52)
138 perip_end = (vol.limit << 28) - 1;
139 }
140}
141
142void read_decode_cache_bcr(void)
143{
144 struct cpuinfo_arc_cache *p_ic, *p_dc;
145 unsigned int cpu = smp_processor_id();
146 struct bcr_cache {
147#ifdef CONFIG_CPU_BIG_ENDIAN
148 unsigned int pad:12, line_len:4, sz:4, config:4, ver:8;
149#else
150 unsigned int ver:8, config:4, sz:4, line_len:4, pad:12;
151#endif
152 } ibcr, dbcr;
153
154 p_ic = &cpuinfo_arc700[cpu].icache;
155 READ_BCR(ARC_REG_IC_BCR, ibcr);
156
157 if (!ibcr.ver)
158 goto dc_chk;
159
160 if (ibcr.ver <= 3) {
161 BUG_ON(ibcr.config != 3);
162 p_ic->assoc = 2;
163 } else if (ibcr.ver >= 4) {
164 p_ic->assoc = 1 << ibcr.config;
165 }
166
167 p_ic->line_len = 8 << ibcr.line_len;
168 p_ic->sz_k = 1 << (ibcr.sz - 1);
169 p_ic->vipt = 1;
170 p_ic->alias = p_ic->sz_k/p_ic->assoc/TO_KB(PAGE_SIZE) > 1;
171
172dc_chk:
173 p_dc = &cpuinfo_arc700[cpu].dcache;
174 READ_BCR(ARC_REG_DC_BCR, dbcr);
175
176 if (!dbcr.ver)
177 goto slc_chk;
178
179 if (dbcr.ver <= 3) {
180 BUG_ON(dbcr.config != 2);
181 p_dc->assoc = 4;
182 p_dc->vipt = 1;
183 p_dc->alias = p_dc->sz_k/p_dc->assoc/TO_KB(PAGE_SIZE) > 1;
184 } else if (dbcr.ver >= 4) {
185 p_dc->assoc = 1 << dbcr.config;
186 p_dc->vipt = 0;
187 p_dc->alias = 0;
188 }
189
190 p_dc->line_len = 16 << dbcr.line_len;
191 p_dc->sz_k = 1 << (dbcr.sz - 1);
192
193slc_chk:
194 if (is_isa_arcv2())
195 read_decode_cache_bcr_arcv2(cpu);
196}
197
198
199
200
201
202#define OP_INV 0x1
203#define OP_FLUSH 0x2
204#define OP_FLUSH_N_INV 0x3
205#define OP_INV_IC 0x4
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225static inline
226void __cache_line_loop_v3(phys_addr_t paddr, unsigned long vaddr,
227 unsigned long sz, const int op, const int full_page)
228{
229 unsigned int aux_cmd, aux_tag;
230 int num_lines;
231
232 if (op == OP_INV_IC) {
233 aux_cmd = ARC_REG_IC_IVIL;
234 aux_tag = ARC_REG_IC_PTAG;
235 } else {
236 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
237 aux_tag = ARC_REG_DC_PTAG;
238 }
239
240
241
242
243
244
245
246 if (!full_page) {
247 sz += paddr & ~CACHE_LINE_MASK;
248 paddr &= CACHE_LINE_MASK;
249 vaddr &= CACHE_LINE_MASK;
250 }
251 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
252
253
254
255
256
257 if (full_page)
258 write_aux_reg(aux_tag, paddr);
259
260
261
262
263
264
265
266
267 if (is_pae40_enabled() && op == OP_INV_IC)
268 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
269
270 while (num_lines-- > 0) {
271 if (!full_page) {
272 write_aux_reg(aux_tag, paddr);
273 paddr += L1_CACHE_BYTES;
274 }
275
276 write_aux_reg(aux_cmd, vaddr);
277 vaddr += L1_CACHE_BYTES;
278 }
279}
280
281#ifndef USE_RGN_FLSH
282
283
284
285static inline
286void __cache_line_loop_v4(phys_addr_t paddr, unsigned long vaddr,
287 unsigned long sz, const int op, const int full_page)
288{
289 unsigned int aux_cmd;
290 int num_lines;
291
292 if (op == OP_INV_IC) {
293 aux_cmd = ARC_REG_IC_IVIL;
294 } else {
295
296 aux_cmd = op & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL;
297 }
298
299
300
301
302
303
304
305 if (!full_page) {
306 sz += paddr & ~CACHE_LINE_MASK;
307 paddr &= CACHE_LINE_MASK;
308 }
309
310 num_lines = DIV_ROUND_UP(sz, L1_CACHE_BYTES);
311
312
313
314
315
316
317 if (is_pae40_enabled()) {
318 if (op == OP_INV_IC)
319
320
321
322
323 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
324 else
325 write_aux_reg(ARC_REG_DC_PTAG_HI, (u64)paddr >> 32);
326 }
327
328 while (num_lines-- > 0) {
329 write_aux_reg(aux_cmd, paddr);
330 paddr += L1_CACHE_BYTES;
331 }
332}
333
334#else
335
336
337
338
339static inline
340void __cache_line_loop_v4(phys_addr_t paddr, unsigned long vaddr,
341 unsigned long sz, const int op, const int full_page)
342{
343 unsigned int s, e;
344
345
346 if (op == OP_INV_IC) {
347 s = ARC_REG_IC_IVIR;
348 e = ARC_REG_IC_ENDR;
349 } else {
350 s = ARC_REG_DC_STARTR;
351 e = ARC_REG_DC_ENDR;
352 }
353
354 if (!full_page) {
355
356 sz += paddr & ~CACHE_LINE_MASK;
357 paddr &= CACHE_LINE_MASK;
358
359
360
361
362
363 sz += L1_CACHE_BYTES - 1;
364 }
365
366 if (is_pae40_enabled()) {
367
368 if (op == OP_INV_IC)
369 write_aux_reg(ARC_REG_IC_PTAG_HI, (u64)paddr >> 32);
370 else
371 write_aux_reg(ARC_REG_DC_PTAG_HI, (u64)paddr >> 32);
372 }
373
374
375 write_aux_reg(e, paddr + sz);
376 write_aux_reg(s, paddr);
377
378
379}
380
381#endif
382
383#ifdef CONFIG_ARC_MMU_V3
384#define __cache_line_loop __cache_line_loop_v3
385#else
386#define __cache_line_loop __cache_line_loop_v4
387#endif
388
389#ifdef CONFIG_ARC_HAS_DCACHE
390
391
392
393
394
395#ifndef USE_RGN_FLSH
396
397
398
399
400static inline void __before_dc_op(const int op)
401{
402 if (op == OP_FLUSH_N_INV) {
403
404
405
406
407
408 const unsigned int ctl = ARC_REG_DC_CTRL;
409 write_aux_reg(ctl, read_aux_reg(ctl) | DC_CTRL_INV_MODE_FLUSH);
410 }
411}
412
413#else
414
415static inline void __before_dc_op(const int op)
416{
417 const unsigned int ctl = ARC_REG_DC_CTRL;
418 unsigned int val = read_aux_reg(ctl);
419
420 if (op == OP_FLUSH_N_INV) {
421 val |= DC_CTRL_INV_MODE_FLUSH;
422 }
423
424 if (op != OP_INV_IC) {
425
426
427
428
429 val &= ~DC_CTRL_RGN_OP_MSK;
430 if (op & OP_INV)
431 val |= DC_CTRL_RGN_OP_INV;
432 }
433 write_aux_reg(ctl, val);
434}
435
436#endif
437
438
439static inline void __after_dc_op(const int op)
440{
441 if (op & OP_FLUSH) {
442 const unsigned int ctl = ARC_REG_DC_CTRL;
443 unsigned int reg;
444
445
446 while ((reg = read_aux_reg(ctl)) & DC_CTRL_FLUSH_STATUS)
447 ;
448
449
450 if (op == OP_FLUSH_N_INV)
451 write_aux_reg(ctl, reg & ~DC_CTRL_INV_MODE_FLUSH);
452 }
453}
454
455
456
457
458
459
460
461static inline void __dc_entire_op(const int op)
462{
463 int aux;
464
465 __before_dc_op(op);
466
467 if (op & OP_INV)
468 aux = ARC_REG_DC_IVDC;
469 else
470 aux = ARC_REG_DC_FLSH;
471
472 write_aux_reg(aux, 0x1);
473
474 __after_dc_op(op);
475}
476
477static inline void __dc_disable(void)
478{
479 const int r = ARC_REG_DC_CTRL;
480
481 __dc_entire_op(OP_FLUSH_N_INV);
482 write_aux_reg(r, read_aux_reg(r) | DC_CTRL_DIS);
483}
484
485static void __dc_enable(void)
486{
487 const int r = ARC_REG_DC_CTRL;
488
489 write_aux_reg(r, read_aux_reg(r) & ~DC_CTRL_DIS);
490}
491
492
493#define __dc_line_op_k(p, sz, op) __dc_line_op(p, p, sz, op)
494
495
496
497
498static inline void __dc_line_op(phys_addr_t paddr, unsigned long vaddr,
499 unsigned long sz, const int op)
500{
501 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
502 unsigned long flags;
503
504 local_irq_save(flags);
505
506 __before_dc_op(op);
507
508 __cache_line_loop(paddr, vaddr, sz, op, full_page);
509
510 __after_dc_op(op);
511
512 local_irq_restore(flags);
513}
514
515#else
516
517#define __dc_entire_op(op)
518#define __dc_disable()
519#define __dc_enable()
520#define __dc_line_op(paddr, vaddr, sz, op)
521#define __dc_line_op_k(paddr, sz, op)
522
523#endif
524
525#ifdef CONFIG_ARC_HAS_ICACHE
526
527static inline void __ic_entire_inv(void)
528{
529 write_aux_reg(ARC_REG_IC_IVIC, 1);
530 read_aux_reg(ARC_REG_IC_CTRL);
531}
532
533static inline void
534__ic_line_inv_vaddr_local(phys_addr_t paddr, unsigned long vaddr,
535 unsigned long sz)
536{
537 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
538 unsigned long flags;
539
540 local_irq_save(flags);
541 (*_cache_line_loop_ic_fn)(paddr, vaddr, sz, OP_INV_IC, full_page);
542 local_irq_restore(flags);
543}
544
545#ifndef CONFIG_SMP
546
547#define __ic_line_inv_vaddr(p, v, s) __ic_line_inv_vaddr_local(p, v, s)
548
549#else
550
551struct ic_inv_args {
552 phys_addr_t paddr, vaddr;
553 int sz;
554};
555
556static void __ic_line_inv_vaddr_helper(void *info)
557{
558 struct ic_inv_args *ic_inv = info;
559
560 __ic_line_inv_vaddr_local(ic_inv->paddr, ic_inv->vaddr, ic_inv->sz);
561}
562
563static void __ic_line_inv_vaddr(phys_addr_t paddr, unsigned long vaddr,
564 unsigned long sz)
565{
566 struct ic_inv_args ic_inv = {
567 .paddr = paddr,
568 .vaddr = vaddr,
569 .sz = sz
570 };
571
572 on_each_cpu(__ic_line_inv_vaddr_helper, &ic_inv, 1);
573}
574
575#endif
576
577#else
578
579#define __ic_entire_inv()
580#define __ic_line_inv_vaddr(pstart, vstart, sz)
581
582#endif
583
584noinline void slc_op_rgn(phys_addr_t paddr, unsigned long sz, const int op)
585{
586#ifdef CONFIG_ISA_ARCV2
587
588
589
590
591
592
593
594 static DEFINE_SPINLOCK(lock);
595 unsigned long flags;
596 unsigned int ctrl;
597 phys_addr_t end;
598
599 spin_lock_irqsave(&lock, flags);
600
601
602
603
604
605
606
607 ctrl = read_aux_reg(ARC_REG_SLC_CTRL);
608
609
610 if (!(op & OP_FLUSH))
611 ctrl &= ~SLC_CTRL_IM;
612 else
613 ctrl |= SLC_CTRL_IM;
614
615 if (op & OP_INV)
616 ctrl |= SLC_CTRL_RGN_OP_INV;
617 else
618 ctrl &= ~SLC_CTRL_RGN_OP_INV;
619
620 write_aux_reg(ARC_REG_SLC_CTRL, ctrl);
621
622
623
624
625
626
627 end = paddr + sz + l2_line_sz - 1;
628 if (is_pae40_enabled())
629 write_aux_reg(ARC_REG_SLC_RGN_END1, upper_32_bits(end));
630
631 write_aux_reg(ARC_REG_SLC_RGN_END, lower_32_bits(end));
632
633 if (is_pae40_enabled())
634 write_aux_reg(ARC_REG_SLC_RGN_START1, upper_32_bits(paddr));
635
636 write_aux_reg(ARC_REG_SLC_RGN_START, lower_32_bits(paddr));
637
638
639 read_aux_reg(ARC_REG_SLC_CTRL);
640
641 while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY);
642
643 spin_unlock_irqrestore(&lock, flags);
644#endif
645}
646
647noinline void slc_op_line(phys_addr_t paddr, unsigned long sz, const int op)
648{
649#ifdef CONFIG_ISA_ARCV2
650
651
652
653
654
655
656
657 static DEFINE_SPINLOCK(lock);
658
659 const unsigned long SLC_LINE_MASK = ~(l2_line_sz - 1);
660 unsigned int ctrl, cmd;
661 unsigned long flags;
662 int num_lines;
663
664 spin_lock_irqsave(&lock, flags);
665
666 ctrl = read_aux_reg(ARC_REG_SLC_CTRL);
667
668
669 if (!(op & OP_FLUSH))
670 ctrl &= ~SLC_CTRL_IM;
671 else
672 ctrl |= SLC_CTRL_IM;
673
674 write_aux_reg(ARC_REG_SLC_CTRL, ctrl);
675
676 cmd = op & OP_INV ? ARC_AUX_SLC_IVDL : ARC_AUX_SLC_FLDL;
677
678 sz += paddr & ~SLC_LINE_MASK;
679 paddr &= SLC_LINE_MASK;
680
681 num_lines = DIV_ROUND_UP(sz, l2_line_sz);
682
683 while (num_lines-- > 0) {
684 write_aux_reg(cmd, paddr);
685 paddr += l2_line_sz;
686 }
687
688
689 read_aux_reg(ARC_REG_SLC_CTRL);
690
691 while (read_aux_reg(ARC_REG_SLC_CTRL) & SLC_CTRL_BUSY);
692
693 spin_unlock_irqrestore(&lock, flags);
694#endif
695}
696
697#define slc_op(paddr, sz, op) slc_op_rgn(paddr, sz, op)
698
699noinline static void slc_entire_op(const int op)
700{
701 unsigned int ctrl, r = ARC_REG_SLC_CTRL;
702
703 ctrl = read_aux_reg(r);
704
705 if (!(op & OP_FLUSH))
706 ctrl &= ~SLC_CTRL_IM;
707 else
708 ctrl |= SLC_CTRL_IM;
709
710 write_aux_reg(r, ctrl);
711
712 if (op & OP_INV)
713 write_aux_reg(ARC_REG_SLC_INVALIDATE, 0x1);
714 else
715 write_aux_reg(ARC_REG_SLC_FLUSH, 0x1);
716
717
718 read_aux_reg(r);
719
720
721 while (read_aux_reg(r) & SLC_CTRL_BUSY);
722}
723
724static inline void arc_slc_disable(void)
725{
726 const int r = ARC_REG_SLC_CTRL;
727
728 slc_entire_op(OP_FLUSH_N_INV);
729 write_aux_reg(r, read_aux_reg(r) | SLC_CTRL_DIS);
730}
731
732static inline void arc_slc_enable(void)
733{
734 const int r = ARC_REG_SLC_CTRL;
735
736 write_aux_reg(r, read_aux_reg(r) & ~SLC_CTRL_DIS);
737}
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755void flush_dcache_page(struct page *page)
756{
757 struct address_space *mapping;
758
759 if (!cache_is_vipt_aliasing()) {
760 clear_bit(PG_dc_clean, &page->flags);
761 return;
762 }
763
764
765 mapping = page_mapping_file(page);
766 if (!mapping)
767 return;
768
769
770
771
772
773 if (!mapping_mapped(mapping)) {
774 clear_bit(PG_dc_clean, &page->flags);
775 } else if (page_mapcount(page)) {
776
777
778 phys_addr_t paddr = (unsigned long)page_address(page);
779 unsigned long vaddr = page->index << PAGE_SHIFT;
780
781 if (addr_not_cache_congruent(paddr, vaddr))
782 __flush_dcache_page(paddr, vaddr);
783 }
784}
785EXPORT_SYMBOL(flush_dcache_page);
786
787
788
789
790
791static void __dma_cache_wback_inv_l1(phys_addr_t start, unsigned long sz)
792{
793 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
794}
795
796static void __dma_cache_inv_l1(phys_addr_t start, unsigned long sz)
797{
798 __dc_line_op_k(start, sz, OP_INV);
799}
800
801static void __dma_cache_wback_l1(phys_addr_t start, unsigned long sz)
802{
803 __dc_line_op_k(start, sz, OP_FLUSH);
804}
805
806
807
808
809
810static void __dma_cache_wback_inv_slc(phys_addr_t start, unsigned long sz)
811{
812 __dc_line_op_k(start, sz, OP_FLUSH_N_INV);
813 slc_op(start, sz, OP_FLUSH_N_INV);
814}
815
816static void __dma_cache_inv_slc(phys_addr_t start, unsigned long sz)
817{
818 __dc_line_op_k(start, sz, OP_INV);
819 slc_op(start, sz, OP_INV);
820}
821
822static void __dma_cache_wback_slc(phys_addr_t start, unsigned long sz)
823{
824 __dc_line_op_k(start, sz, OP_FLUSH);
825 slc_op(start, sz, OP_FLUSH);
826}
827
828
829
830
831void dma_cache_wback_inv(phys_addr_t start, unsigned long sz)
832{
833 __dma_cache_wback_inv(start, sz);
834}
835EXPORT_SYMBOL(dma_cache_wback_inv);
836
837void dma_cache_inv(phys_addr_t start, unsigned long sz)
838{
839 __dma_cache_inv(start, sz);
840}
841EXPORT_SYMBOL(dma_cache_inv);
842
843void dma_cache_wback(phys_addr_t start, unsigned long sz)
844{
845 __dma_cache_wback(start, sz);
846}
847EXPORT_SYMBOL(dma_cache_wback);
848
849
850
851
852
853
854
855
856void flush_icache_range(unsigned long kstart, unsigned long kend)
857{
858 unsigned int tot_sz;
859
860 WARN(kstart < TASK_SIZE, "%s() can't handle user vaddr", __func__);
861
862
863
864
865 tot_sz = kend - kstart;
866 if (tot_sz > PAGE_SIZE) {
867 flush_cache_all();
868 return;
869 }
870
871
872 if (likely(kstart > PAGE_OFFSET)) {
873
874
875
876
877
878
879 __sync_icache_dcache(kstart, kstart, kend - kstart);
880 return;
881 }
882
883
884
885
886
887
888
889
890
891
892 while (tot_sz > 0) {
893 unsigned int off, sz;
894 unsigned long phy, pfn;
895
896 off = kstart % PAGE_SIZE;
897 pfn = vmalloc_to_pfn((void *)kstart);
898 phy = (pfn << PAGE_SHIFT) + off;
899 sz = min_t(unsigned int, tot_sz, PAGE_SIZE - off);
900 __sync_icache_dcache(phy, kstart, sz);
901 kstart += sz;
902 tot_sz -= sz;
903 }
904}
905EXPORT_SYMBOL(flush_icache_range);
906
907
908
909
910
911
912
913
914
915
916
917void __sync_icache_dcache(phys_addr_t paddr, unsigned long vaddr, int len)
918{
919 __dc_line_op(paddr, vaddr, len, OP_FLUSH_N_INV);
920 __ic_line_inv_vaddr(paddr, vaddr, len);
921}
922
923
924void __inv_icache_page(phys_addr_t paddr, unsigned long vaddr)
925{
926 __ic_line_inv_vaddr(paddr, vaddr, PAGE_SIZE);
927}
928
929
930
931
932
933void __flush_dcache_page(phys_addr_t paddr, unsigned long vaddr)
934{
935 __dc_line_op(paddr, vaddr & PAGE_MASK, PAGE_SIZE, OP_FLUSH_N_INV);
936}
937
938noinline void flush_cache_all(void)
939{
940 unsigned long flags;
941
942 local_irq_save(flags);
943
944 __ic_entire_inv();
945 __dc_entire_op(OP_FLUSH_N_INV);
946
947 local_irq_restore(flags);
948
949}
950
951#ifdef CONFIG_ARC_CACHE_VIPT_ALIASING
952
953void flush_cache_mm(struct mm_struct *mm)
954{
955 flush_cache_all();
956}
957
958void flush_cache_page(struct vm_area_struct *vma, unsigned long u_vaddr,
959 unsigned long pfn)
960{
961 phys_addr_t paddr = pfn << PAGE_SHIFT;
962
963 u_vaddr &= PAGE_MASK;
964
965 __flush_dcache_page(paddr, u_vaddr);
966
967 if (vma->vm_flags & VM_EXEC)
968 __inv_icache_page(paddr, u_vaddr);
969}
970
971void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
972 unsigned long end)
973{
974 flush_cache_all();
975}
976
977void flush_anon_page(struct vm_area_struct *vma, struct page *page,
978 unsigned long u_vaddr)
979{
980
981 __flush_dcache_page((phys_addr_t)page_address(page), u_vaddr);
982 __flush_dcache_page((phys_addr_t)page_address(page),
983 (phys_addr_t)page_address(page));
984
985}
986
987#endif
988
989void copy_user_highpage(struct page *to, struct page *from,
990 unsigned long u_vaddr, struct vm_area_struct *vma)
991{
992 void *kfrom = kmap_atomic(from);
993 void *kto = kmap_atomic(to);
994 int clean_src_k_mappings = 0;
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007 if (page_mapcount(from) && addr_not_cache_congruent(kfrom, u_vaddr)) {
1008 __flush_dcache_page((unsigned long)kfrom, u_vaddr);
1009 clean_src_k_mappings = 1;
1010 }
1011
1012 copy_page(kto, kfrom);
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022 clear_bit(PG_dc_clean, &to->flags);
1023
1024
1025
1026
1027
1028 if (clean_src_k_mappings) {
1029 __flush_dcache_page((unsigned long)kfrom, (unsigned long)kfrom);
1030 set_bit(PG_dc_clean, &from->flags);
1031 } else {
1032 clear_bit(PG_dc_clean, &from->flags);
1033 }
1034
1035 kunmap_atomic(kto);
1036 kunmap_atomic(kfrom);
1037}
1038
1039void clear_user_page(void *to, unsigned long u_vaddr, struct page *page)
1040{
1041 clear_page(to);
1042 clear_bit(PG_dc_clean, &page->flags);
1043}
1044EXPORT_SYMBOL(clear_user_page);
1045
1046
1047
1048
1049
1050SYSCALL_DEFINE3(cacheflush, uint32_t, start, uint32_t, sz, uint32_t, flags)
1051{
1052
1053 flush_cache_all();
1054 return 0;
1055}
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072noinline void __init arc_ioc_setup(void)
1073{
1074 unsigned int ioc_base, mem_sz;
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084 if (read_aux_reg(ARC_REG_IO_COH_ENABLE) & ARC_IO_COH_ENABLE_BIT)
1085 panic("IOC already enabled, please upgrade bootloader!\n");
1086
1087 if (!ioc_enable)
1088 return;
1089
1090
1091 __dc_disable();
1092
1093
1094 if (read_aux_reg(ARC_REG_SLC_BCR))
1095 slc_entire_op(OP_FLUSH_N_INV);
1096
1097
1098
1099
1100
1101
1102 mem_sz = arc_get_mem_sz();
1103
1104 if (!is_power_of_2(mem_sz) || mem_sz < 4096)
1105 panic("IOC Aperture size must be power of 2 larger than 4KB");
1106
1107
1108
1109
1110
1111 write_aux_reg(ARC_REG_IO_COH_AP0_SIZE, order_base_2(mem_sz >> 10) - 2);
1112
1113
1114 ioc_base = CONFIG_LINUX_RAM_BASE;
1115
1116 if (ioc_base % mem_sz != 0)
1117 panic("IOC Aperture start must be aligned to the size of the aperture");
1118
1119 write_aux_reg(ARC_REG_IO_COH_AP0_BASE, ioc_base >> 12);
1120 write_aux_reg(ARC_REG_IO_COH_PARTIAL, ARC_IO_COH_PARTIAL_BIT);
1121 write_aux_reg(ARC_REG_IO_COH_ENABLE, ARC_IO_COH_ENABLE_BIT);
1122
1123
1124 __dc_enable();
1125}
1126
1127
1128
1129
1130
1131
1132
1133
1134void __init arc_cache_init_master(void)
1135{
1136 unsigned int __maybe_unused cpu = smp_processor_id();
1137
1138 if (IS_ENABLED(CONFIG_ARC_HAS_ICACHE)) {
1139 struct cpuinfo_arc_cache *ic = &cpuinfo_arc700[cpu].icache;
1140
1141 if (!ic->line_len)
1142 panic("cache support enabled but non-existent cache\n");
1143
1144 if (ic->line_len != L1_CACHE_BYTES)
1145 panic("ICache line [%d] != kernel Config [%d]",
1146 ic->line_len, L1_CACHE_BYTES);
1147
1148
1149
1150
1151
1152 if (is_isa_arcv2() && ic->alias)
1153 _cache_line_loop_ic_fn = __cache_line_loop_v3;
1154 else
1155 _cache_line_loop_ic_fn = __cache_line_loop;
1156 }
1157
1158 if (IS_ENABLED(CONFIG_ARC_HAS_DCACHE)) {
1159 struct cpuinfo_arc_cache *dc = &cpuinfo_arc700[cpu].dcache;
1160
1161 if (!dc->line_len)
1162 panic("cache support enabled but non-existent cache\n");
1163
1164 if (dc->line_len != L1_CACHE_BYTES)
1165 panic("DCache line [%d] != kernel Config [%d]",
1166 dc->line_len, L1_CACHE_BYTES);
1167
1168
1169 if (is_isa_arcompact()) {
1170 int handled = IS_ENABLED(CONFIG_ARC_CACHE_VIPT_ALIASING);
1171 int num_colors = dc->sz_k/dc->assoc/TO_KB(PAGE_SIZE);
1172
1173 if (dc->alias) {
1174 if (!handled)
1175 panic("Enable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
1176 if (CACHE_COLORS_NUM != num_colors)
1177 panic("CACHE_COLORS_NUM not optimized for config\n");
1178 } else if (!dc->alias && handled) {
1179 panic("Disable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
1180 }
1181 }
1182 }
1183
1184
1185
1186
1187
1188 BUILD_BUG_ON_MSG(L1_CACHE_BYTES > SMP_CACHE_BYTES,
1189 "SMP_CACHE_BYTES must be >= any cache line length");
1190 if (is_isa_arcv2() && (l2_line_sz > SMP_CACHE_BYTES))
1191 panic("L2 Cache line [%d] > kernel Config [%d]\n",
1192 l2_line_sz, SMP_CACHE_BYTES);
1193
1194
1195 if (is_isa_arcv2() && l2_line_sz && !slc_enable)
1196 arc_slc_disable();
1197
1198 if (is_isa_arcv2() && ioc_exists)
1199 arc_ioc_setup();
1200
1201 if (is_isa_arcv2() && l2_line_sz && slc_enable) {
1202 __dma_cache_wback_inv = __dma_cache_wback_inv_slc;
1203 __dma_cache_inv = __dma_cache_inv_slc;
1204 __dma_cache_wback = __dma_cache_wback_slc;
1205 } else {
1206 __dma_cache_wback_inv = __dma_cache_wback_inv_l1;
1207 __dma_cache_inv = __dma_cache_inv_l1;
1208 __dma_cache_wback = __dma_cache_wback_l1;
1209 }
1210
1211
1212
1213
1214
1215
1216}
1217
1218void __ref arc_cache_init(void)
1219{
1220 unsigned int __maybe_unused cpu = smp_processor_id();
1221 char str[256];
1222
1223 pr_info("%s", arc_cache_mumbojumbo(0, str, sizeof(str)));
1224
1225 if (!cpu)
1226 arc_cache_init_master();
1227
1228
1229
1230
1231
1232
1233
1234
1235 if (is_isa_arcv2() && pae40_exist_but_not_enab()) {
1236
1237 if (IS_ENABLED(CONFIG_ARC_HAS_ICACHE))
1238 write_aux_reg(ARC_REG_IC_PTAG_HI, 0);
1239
1240 if (IS_ENABLED(CONFIG_ARC_HAS_DCACHE))
1241 write_aux_reg(ARC_REG_DC_PTAG_HI, 0);
1242
1243 if (l2_line_sz) {
1244 write_aux_reg(ARC_REG_SLC_RGN_END1, 0);
1245 write_aux_reg(ARC_REG_SLC_RGN_START1, 0);
1246 }
1247 }
1248}
1249