vserver 1.9.5.x5
[linux-2.6.git] / arch / mips / mm / c-sb1.c
1 /*
2  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
3  * Copyright (C) 1997, 2001 Ralf Baechle (ralf@gnu.org)
4  * Copyright (C) 2000, 2001, 2002, 2003 Broadcom Corporation
5  * Copyright (C) 2004  Maciej W. Rozycki
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20  */
21 #include <linux/config.h>
22 #include <linux/init.h>
23
24 #include <asm/asm.h>
25 #include <asm/bootinfo.h>
26 #include <asm/cacheops.h>
27 #include <asm/cpu.h>
28 #include <asm/mipsregs.h>
29 #include <asm/mmu_context.h>
30 #include <asm/uaccess.h>
31
32 extern void sb1_dma_init(void);
33
34 /* These are probed at ld_mmu time */
35 static unsigned long icache_size;
36 static unsigned long dcache_size;
37
38 static unsigned short icache_line_size;
39 static unsigned short dcache_line_size;
40
41 static unsigned int icache_index_mask;
42 static unsigned int dcache_index_mask;
43
44 static unsigned short icache_assoc;
45 static unsigned short dcache_assoc;
46
47 static unsigned short icache_sets;
48 static unsigned short dcache_sets;
49
50 static unsigned int icache_range_cutoff;
51 static unsigned int dcache_range_cutoff;
52
53 /*
54  * The dcache is fully coherent to the system, with one
55  * big caveat:  the instruction stream.  In other words,
56  * if we miss in the icache, and have dirty data in the
57  * L1 dcache, then we'll go out to memory (or the L2) and
58  * get the not-as-recent data.
59  *
60  * So the only time we have to flush the dcache is when
61  * we're flushing the icache.  Since the L2 is fully
62  * coherent to everything, including I/O, we never have
63  * to flush it
64  */
65
66 #define cache_set_op(op, addr)                                          \
67         __asm__ __volatile__(                                           \
68         "       .set    noreorder               \n"                     \
69         "       .set    mips64\n\t              \n"                     \
70         "       cache   %0, (0<<13)(%1)         \n"                     \
71         "       cache   %0, (1<<13)(%1)         \n"                     \
72         "       cache   %0, (2<<13)(%1)         \n"                     \
73         "       cache   %0, (3<<13)(%1)         \n"                     \
74         "       .set    mips0                   \n"                     \
75         "       .set    reorder"                                        \
76         :                                                               \
77         : "i" (op), "r" (addr))
78
79 #define sync()                                                          \
80         __asm__ __volatile(                                             \
81         "       .set    mips64\n\t              \n"                     \
82         "       sync                            \n"                     \
83         "       .set    mips0")
84
85 #define mispredict()                                                    \
86         __asm__ __volatile__(                                           \
87         "       bnezl  $0, 1f           \n" /* Force mispredict */      \
88         "1:                             \n");
89
90 /*
91  * Writeback and invalidate the entire dcache
92  */
93 static inline void __sb1_writeback_inv_dcache_all(void)
94 {
95         unsigned long addr = 0;
96
97         while (addr < dcache_line_size * dcache_sets) {
98                 cache_set_op(Index_Writeback_Inv_D, addr);
99                 addr += dcache_line_size;
100         }
101 }
102
103 /*
104  * Writeback and invalidate a range of the dcache.  The addresses are
105  * virtual, and since we're using index ops and bit 12 is part of both
106  * the virtual frame and physical index, we have to clear both sets
107  * (bit 12 set and cleared).
108  */
109 static inline void __sb1_writeback_inv_dcache_range(unsigned long start,
110         unsigned long end)
111 {
112         unsigned long index;
113
114         start &= ~(dcache_line_size - 1);
115         end = (end + dcache_line_size - 1) & ~(dcache_line_size - 1);
116
117         while (start != end) {
118                 index = start & dcache_index_mask;
119                 cache_set_op(Index_Writeback_Inv_D, index);
120                 cache_set_op(Index_Writeback_Inv_D, index ^ (1<<12));
121                 start += dcache_line_size;
122         }
123         sync();
124 }
125
126 /*
127  * Writeback and invalidate a range of the dcache.  With physical
128  * addresseses, we don't have to worry about possible bit 12 aliasing.
129  * XXXKW is it worth turning on KX and using hit ops with xkphys?
130  */
131 static inline void __sb1_writeback_inv_dcache_phys_range(unsigned long start,
132         unsigned long end)
133 {
134         start &= ~(dcache_line_size - 1);
135         end = (end + dcache_line_size - 1) & ~(dcache_line_size - 1);
136
137         while (start != end) {
138                 cache_set_op(Index_Writeback_Inv_D, start & dcache_index_mask);
139                 start += dcache_line_size;
140         }
141         sync();
142 }
143
144
145 /*
146  * Invalidate the entire icache
147  */
148 static inline void __sb1_flush_icache_all(void)
149 {
150         unsigned long addr = 0;
151
152         while (addr < icache_line_size * icache_sets) {
153                 cache_set_op(Index_Invalidate_I, addr);
154                 addr += icache_line_size;
155         }
156 }
157
158 /*
159  * Flush the icache for a given physical page.  Need to writeback the
160  * dcache first, then invalidate the icache.  If the page isn't
161  * executable, nothing is required.
162  */
163 static void local_sb1_flush_cache_page(struct vm_area_struct *vma,
164         unsigned long addr)
165 {
166         int cpu = smp_processor_id();
167
168 #ifndef CONFIG_SMP
169         if (!(vma->vm_flags & VM_EXEC))
170                 return;
171 #endif
172
173         __sb1_writeback_inv_dcache_range(addr, addr + PAGE_SIZE);
174
175         /*
176          * Bumping the ASID is probably cheaper than the flush ...
177          */
178         if (cpu_context(cpu, vma->vm_mm) != 0)
179                 drop_mmu_context(vma->vm_mm, cpu);
180 }
181
182 #ifdef CONFIG_SMP
183 struct flush_cache_page_args {
184         struct vm_area_struct *vma;
185         unsigned long addr;
186 };
187
188 static void sb1_flush_cache_page_ipi(void *info)
189 {
190         struct flush_cache_page_args *args = info;
191
192         local_sb1_flush_cache_page(args->vma, args->addr);
193 }
194
195 /* Dirty dcache could be on another CPU, so do the IPIs */
196 static void sb1_flush_cache_page(struct vm_area_struct *vma, unsigned long addr)
197 {
198         struct flush_cache_page_args args;
199
200         if (!(vma->vm_flags & VM_EXEC))
201                 return;
202
203         addr &= PAGE_MASK;
204         args.vma = vma;
205         args.addr = addr;
206         on_each_cpu(sb1_flush_cache_page_ipi, (void *) &args, 1, 1);
207 }
208 #else
209 void sb1_flush_cache_page(struct vm_area_struct *vma, unsigned long addr)
210         __attribute__((alias("local_sb1_flush_cache_page")));
211 #endif
212
213 /*
214  * Invalidate a range of the icache.  The addresses are virtual, and
215  * the cache is virtually indexed and tagged.  However, we don't
216  * necessarily have the right ASID context, so use index ops instead
217  * of hit ops.
218  */
219 static inline void __sb1_flush_icache_range(unsigned long start,
220         unsigned long end)
221 {
222         start &= ~(icache_line_size - 1);
223         end = (end + icache_line_size - 1) & ~(icache_line_size - 1);
224
225         while (start != end) {
226                 cache_set_op(Index_Invalidate_I, start & icache_index_mask);
227                 start += icache_line_size;
228         }
229         mispredict();
230         sync();
231 }
232
233
234 /*
235  * Invalidate all caches on this CPU
236  */
237 static void local_sb1___flush_cache_all(void)
238 {
239         __sb1_writeback_inv_dcache_all();
240         __sb1_flush_icache_all();
241 }
242
243 #ifdef CONFIG_SMP
244 void sb1___flush_cache_all_ipi(void *ignored)
245         __attribute__((alias("local_sb1___flush_cache_all")));
246
247 static void sb1___flush_cache_all(void)
248 {
249         on_each_cpu(sb1___flush_cache_all_ipi, 0, 1, 1);
250 }
251 #else
252 void sb1___flush_cache_all(void)
253         __attribute__((alias("local_sb1___flush_cache_all")));
254 #endif
255
256 /*
257  * When flushing a range in the icache, we have to first writeback
258  * the dcache for the same range, so new ifetches will see any
259  * data that was dirty in the dcache.
260  *
261  * The start/end arguments are Kseg addresses (possibly mapped Kseg).
262  */
263
264 static void local_sb1_flush_icache_range(unsigned long start,
265         unsigned long end)
266 {
267         /* Just wb-inv the whole dcache if the range is big enough */
268         if ((end - start) > dcache_range_cutoff)
269                 __sb1_writeback_inv_dcache_all();
270         else
271                 __sb1_writeback_inv_dcache_range(start, end);
272         
273         /* Just flush the whole icache if the range is big enough */
274         if ((end - start) > icache_range_cutoff)
275                 __sb1_flush_icache_all();
276         else
277                 __sb1_flush_icache_range(start, end);
278 }
279
280 #ifdef CONFIG_SMP
281 struct flush_icache_range_args {
282         unsigned long start;
283         unsigned long end;
284 };
285
286 static void sb1_flush_icache_range_ipi(void *info)
287 {
288         struct flush_icache_range_args *args = info;
289
290         local_sb1_flush_icache_range(args->start, args->end);
291 }
292
293 void sb1_flush_icache_range(unsigned long start, unsigned long end)
294 {
295         struct flush_icache_range_args args;
296
297         args.start = start;
298         args.end = end;
299         on_each_cpu(sb1_flush_icache_range_ipi, &args, 1, 1);
300 }
301 #else
302 void sb1_flush_icache_range(unsigned long start, unsigned long end)
303         __attribute__((alias("local_sb1_flush_icache_range")));
304 #endif
305
306 /*
307  * Flush the icache for a given physical page.  Need to writeback the
308  * dcache first, then invalidate the icache.  If the page isn't
309  * executable, nothing is required.
310  */
311 static void local_sb1_flush_icache_page(struct vm_area_struct *vma,
312         struct page *page)
313 {
314         unsigned long start;
315         int cpu = smp_processor_id();
316
317 #ifndef CONFIG_SMP
318         if (!(vma->vm_flags & VM_EXEC))
319                 return;
320 #endif
321
322         /* Need to writeback any dirty data for that page, we have the PA */
323         start = (unsigned long)(page-mem_map) << PAGE_SHIFT;
324         __sb1_writeback_inv_dcache_phys_range(start, start + PAGE_SIZE);
325         /*
326          * If there's a context, bump the ASID (cheaper than a flush,
327          * since we don't know VAs!)
328          */
329         if (cpu_context(cpu, vma->vm_mm) != 0) {
330                 drop_mmu_context(vma->vm_mm, cpu);
331         }
332 }
333
334 #ifdef CONFIG_SMP
335 struct flush_icache_page_args {
336         struct vm_area_struct *vma;
337         struct page *page;
338 };
339
340 static void sb1_flush_icache_page_ipi(void *info)
341 {
342         struct flush_icache_page_args *args = info;
343         local_sb1_flush_icache_page(args->vma, args->page);
344 }
345
346 /* Dirty dcache could be on another CPU, so do the IPIs */
347 static void sb1_flush_icache_page(struct vm_area_struct *vma,
348         struct page *page)
349 {
350         struct flush_icache_page_args args;
351
352         if (!(vma->vm_flags & VM_EXEC))
353                 return;
354         args.vma = vma;
355         args.page = page;
356         on_each_cpu(sb1_flush_icache_page_ipi, (void *) &args, 1, 1);
357 }
358 #else
359 void sb1_flush_icache_page(struct vm_area_struct *vma, struct page *page)
360         __attribute__((alias("local_sb1_flush_icache_page")));
361 #endif
362
363 /*
364  * A signal trampoline must fit into a single cacheline.
365  */
366 static void local_sb1_flush_cache_sigtramp(unsigned long addr)
367 {
368         cache_set_op(Index_Writeback_Inv_D, addr & dcache_index_mask);
369         cache_set_op(Index_Writeback_Inv_D, (addr ^ (1<<12)) & dcache_index_mask);
370         cache_set_op(Index_Invalidate_I, addr & icache_index_mask);
371         mispredict();
372 }
373
374 #ifdef CONFIG_SMP
375 static void sb1_flush_cache_sigtramp_ipi(void *info)
376 {
377         unsigned long iaddr = (unsigned long) info;
378         local_sb1_flush_cache_sigtramp(iaddr);
379 }
380
381 static void sb1_flush_cache_sigtramp(unsigned long addr)
382 {
383         on_each_cpu(sb1_flush_cache_sigtramp_ipi, (void *) addr, 1, 1);
384 }
385 #else
386 void sb1_flush_cache_sigtramp(unsigned long addr)
387         __attribute__((alias("local_sb1_flush_cache_sigtramp")));
388 #endif
389
390
391 /*
392  * Anything that just flushes dcache state can be ignored, as we're always
393  * coherent in dcache space.  This is just a dummy function that all the
394  * nop'ed routines point to
395  */
396 static void sb1_nop(void)
397 {
398 }
399
400 /*
401  *  Cache set values (from the mips64 spec)
402  * 0 - 64
403  * 1 - 128
404  * 2 - 256
405  * 3 - 512
406  * 4 - 1024
407  * 5 - 2048
408  * 6 - 4096
409  * 7 - Reserved
410  */
411
412 static unsigned int decode_cache_sets(unsigned int config_field)
413 {
414         if (config_field == 7) {
415                 /* JDCXXX - Find a graceful way to abort. */
416                 return 0;
417         }
418         return (1<<(config_field + 6));
419 }
420
421 /*
422  *  Cache line size values (from the mips64 spec)
423  * 0 - No cache present.
424  * 1 - 4 bytes
425  * 2 - 8 bytes
426  * 3 - 16 bytes
427  * 4 - 32 bytes
428  * 5 - 64 bytes
429  * 6 - 128 bytes
430  * 7 - Reserved
431  */
432
433 static unsigned int decode_cache_line_size(unsigned int config_field)
434 {
435         if (config_field == 0) {
436                 return 0;
437         } else if (config_field == 7) {
438                 /* JDCXXX - Find a graceful way to abort. */
439                 return 0;
440         }
441         return (1<<(config_field + 1));
442 }
443
444 /*
445  * Relevant bits of the config1 register format (from the MIPS32/MIPS64 specs)
446  *
447  * 24:22 Icache sets per way
448  * 21:19 Icache line size
449  * 18:16 Icache Associativity
450  * 15:13 Dcache sets per way
451  * 12:10 Dcache line size
452  * 9:7   Dcache Associativity
453  */
454
455 static char *way_string[] = {
456         "direct mapped", "2-way", "3-way", "4-way",
457         "5-way", "6-way", "7-way", "8-way",
458 };
459
460 static __init void probe_cache_sizes(void)
461 {
462         u32 config1;
463
464         config1 = read_c0_config1();
465         icache_line_size = decode_cache_line_size((config1 >> 19) & 0x7);
466         dcache_line_size = decode_cache_line_size((config1 >> 10) & 0x7);
467         icache_sets = decode_cache_sets((config1 >> 22) & 0x7);
468         dcache_sets = decode_cache_sets((config1 >> 13) & 0x7);
469         icache_assoc = ((config1 >> 16) & 0x7) + 1;
470         dcache_assoc = ((config1 >> 7) & 0x7) + 1;
471         icache_size = icache_line_size * icache_sets * icache_assoc;
472         dcache_size = dcache_line_size * dcache_sets * dcache_assoc;
473         /* Need to remove non-index bits for index ops */
474         icache_index_mask = (icache_sets - 1) * icache_line_size;
475         dcache_index_mask = (dcache_sets - 1) * dcache_line_size;
476         /*
477          * These are for choosing range (index ops) versus all.
478          * icache flushes all ways for each set, so drop icache_assoc.
479          * dcache flushes all ways and each setting of bit 12 for each
480          * index, so drop dcache_assoc and halve the dcache_sets.
481          */
482         icache_range_cutoff = icache_sets * icache_line_size;
483         dcache_range_cutoff = (dcache_sets / 2) * icache_line_size;
484
485         printk("Primary instruction cache %ldkB, %s, linesize %d bytes.\n",
486                icache_size >> 10, way_string[icache_assoc - 1],
487                icache_line_size);
488         printk("Primary data cache %ldkB, %s, linesize %d bytes.\n",
489                dcache_size >> 10, way_string[dcache_assoc - 1],
490                dcache_line_size);
491 }
492
493 /*
494  * This is called from loadmmu.c.  We have to set up all the
495  * memory management function pointers, as well as initialize
496  * the caches and tlbs
497  */
498 void ld_mmu_sb1(void)
499 {
500         extern char except_vec2_sb1;
501         extern char handle_vec2_sb1;
502
503         /* Special cache error handler for SB1 */
504         memcpy((void *)(CAC_BASE   + 0x100), &except_vec2_sb1, 0x80);
505         memcpy((void *)(UNCAC_BASE + 0x100), &except_vec2_sb1, 0x80);
506         memcpy((void *)CKSEG1ADDR(&handle_vec2_sb1), &handle_vec2_sb1, 0x80);
507
508         probe_cache_sizes();
509
510 #ifdef CONFIG_SIBYTE_DMA_PAGEOPS
511         sb1_dma_init();
512 #endif
513
514         /*
515          * None of these are needed for the SB1 - the Dcache is
516          * physically indexed and tagged, so no virtual aliasing can
517          * occur
518          */
519         flush_cache_range = (void *) sb1_nop;
520         flush_cache_mm = (void (*)(struct mm_struct *))sb1_nop;
521         flush_cache_all = sb1_nop;
522
523         /* These routines are for Icache coherence with the Dcache */
524         flush_icache_range = sb1_flush_icache_range;
525         flush_icache_page = sb1_flush_icache_page;
526         flush_icache_all = __sb1_flush_icache_all; /* local only */
527
528         /* This implies an Icache flush too, so can't be nop'ed */
529         flush_cache_page = sb1_flush_cache_page;
530
531         flush_cache_sigtramp = sb1_flush_cache_sigtramp;
532         flush_data_cache_page = (void *) sb1_nop;
533
534         /* Full flush */
535         __flush_cache_all = sb1___flush_cache_all;
536
537         change_c0_config(CONF_CM_CMASK, CONF_CM_DEFAULT);
538
539         /*
540          * This is the only way to force the update of K0 to complete
541          * before subsequent instruction fetch.
542          */
543         __asm__ __volatile__(
544                 ".set   push                    \n"
545         "       .set    noat                    \n"
546         "       .set    noreorder               \n"
547         "       .set    mips3                   \n"
548         "       " STR(PTR_LA) " $1, 1f          \n"
549         "       " STR(MTC0) "   $1, $14         \n"
550         "       eret                            \n"
551         "1:     .set    pop"
552         :
553         :
554         : "memory");
555
556         flush_cache_all();
557 }