1
2
3
4
5
6
7
8
9
10
11#define NR_TASK_BUCKETS 512
12
13#include <linux/config.h>
14#include <linux/kernel.h>
15#include <linux/mm.h>
16#include <linux/init.h>
17#include <linux/bootmem.h>
18#include <linux/highmem.h>
19#include <linux/fs.h>
20#include <linux/seq_file.h>
21
22#include <asm/scatterlist.h>
23#include <asm/page.h>
24#include <asm/pgalloc.h>
25#include <asm/pgtable.h>
26#include <asm/vaddrs.h>
27#include <asm/idprom.h>
28#include <asm/machines.h>
29#include <asm/memreg.h>
30#include <asm/processor.h>
31#include <asm/auxio.h>
32#include <asm/io.h>
33#include <asm/oplib.h>
34#include <asm/openprom.h>
35#include <asm/mmu_context.h>
36#include <asm/sun4paddr.h>
37#include <asm/highmem.h>
38#include <asm/btfixup.h>
39#include <asm/cacheflush.h>
40#include <asm/tlbflush.h>
41
42
43
44
45
46
47
48
49
50
51
52
53extern int num_segmaps, num_contexts;
54
55extern unsigned long page_kernel;
56
57#ifdef CONFIG_SUN4
58#define SUN4C_VAC_SIZE sun4c_vacinfo.num_bytes
59#else
60
61
62
63
64#define SUN4C_VAC_SIZE 65536
65#endif
66
67#define SUN4C_KERNEL_BUCKETS 32
68
69
70struct sun4c_vac_props sun4c_vacinfo;
71unsigned long sun4c_kernel_faults;
72
73
74static void __init sun4c_flush_all(void)
75{
76 unsigned long begin, end;
77
78 if (sun4c_vacinfo.on)
79 panic("SUN4C: AIEEE, trying to invalidate vac while it is on.");
80
81
82 begin = AC_CACHETAGS;
83 end = (AC_CACHETAGS + SUN4C_VAC_SIZE);
84 while (begin < end) {
85 __asm__ __volatile__("sta %%g0, [%0] %1\n\t" : :
86 "r" (begin), "i" (ASI_CONTROL));
87 begin += sun4c_vacinfo.linesize;
88 }
89}
90
91static void sun4c_flush_context_hw(void)
92{
93 unsigned long end = SUN4C_VAC_SIZE;
94
95 __asm__ __volatile__(
96 "1: addcc %0, -4096, %0\n\t"
97 " bne 1b\n\t"
98 " sta %%g0, [%0] %2"
99 : "=&r" (end)
100 : "0" (end), "i" (ASI_HWFLUSHCONTEXT)
101 : "cc");
102}
103
104
105static void sun4c_flush_segment_hw(unsigned long addr)
106{
107 if (sun4c_get_segmap(addr) != invalid_segment) {
108 unsigned long vac_size = SUN4C_VAC_SIZE;
109
110 __asm__ __volatile__(
111 "1: addcc %0, -4096, %0\n\t"
112 " bne 1b\n\t"
113 " sta %%g0, [%2 + %0] %3"
114 : "=&r" (vac_size)
115 : "0" (vac_size), "r" (addr), "i" (ASI_HWFLUSHSEG)
116 : "cc");
117 }
118}
119
120
121BTFIXUPDEF_CALL(void, sun4c_flush_page, unsigned long)
122BTFIXUPDEF_CALL(void, sun4c_flush_segment, unsigned long)
123BTFIXUPDEF_CALL(void, sun4c_flush_context, void)
124
125#define sun4c_flush_page(addr) BTFIXUP_CALL(sun4c_flush_page)(addr)
126#define sun4c_flush_segment(addr) BTFIXUP_CALL(sun4c_flush_segment)(addr)
127#define sun4c_flush_context() BTFIXUP_CALL(sun4c_flush_context)()
128
129
130static void sun4c_flush_page_hw(unsigned long addr)
131{
132 addr &= PAGE_MASK;
133 if ((int)sun4c_get_pte(addr) < 0)
134 __asm__ __volatile__("sta %%g0, [%0] %1"
135 : : "r" (addr), "i" (ASI_HWFLUSHPAGE));
136}
137
138
139static void sun4c_flush_context_sw(void)
140{
141 unsigned long nbytes = SUN4C_VAC_SIZE;
142 unsigned long lsize = sun4c_vacinfo.linesize;
143
144 __asm__ __volatile__(
145 "add %2, %2, %%g1\n\t"
146 "add %2, %%g1, %%g2\n\t"
147 "add %2, %%g2, %%g3\n\t"
148 "add %2, %%g3, %%g4\n\t"
149 "add %2, %%g4, %%g5\n\t"
150 "add %2, %%g5, %%o4\n\t"
151 "add %2, %%o4, %%o5\n"
152 "1:\n\t"
153 "subcc %0, %%o5, %0\n\t"
154 "sta %%g0, [%0] %3\n\t"
155 "sta %%g0, [%0 + %2] %3\n\t"
156 "sta %%g0, [%0 + %%g1] %3\n\t"
157 "sta %%g0, [%0 + %%g2] %3\n\t"
158 "sta %%g0, [%0 + %%g3] %3\n\t"
159 "sta %%g0, [%0 + %%g4] %3\n\t"
160 "sta %%g0, [%0 + %%g5] %3\n\t"
161 "bg 1b\n\t"
162 " sta %%g0, [%1 + %%o4] %3\n"
163 : "=&r" (nbytes)
164 : "0" (nbytes), "r" (lsize), "i" (ASI_FLUSHCTX)
165 : "g1", "g2", "g3", "g4", "g5", "o4", "o5", "cc");
166}
167
168
169static void sun4c_flush_segment_sw(unsigned long addr)
170{
171 if (sun4c_get_segmap(addr) != invalid_segment) {
172 unsigned long nbytes = SUN4C_VAC_SIZE;
173 unsigned long lsize = sun4c_vacinfo.linesize;
174
175 __asm__ __volatile__(
176 "add %2, %2, %%g1\n\t"
177 "add %2, %%g1, %%g2\n\t"
178 "add %2, %%g2, %%g3\n\t"
179 "add %2, %%g3, %%g4\n\t"
180 "add %2, %%g4, %%g5\n\t"
181 "add %2, %%g5, %%o4\n\t"
182 "add %2, %%o4, %%o5\n"
183 "1:\n\t"
184 "subcc %1, %%o5, %1\n\t"
185 "sta %%g0, [%0] %6\n\t"
186 "sta %%g0, [%0 + %2] %6\n\t"
187 "sta %%g0, [%0 + %%g1] %6\n\t"
188 "sta %%g0, [%0 + %%g2] %6\n\t"
189 "sta %%g0, [%0 + %%g3] %6\n\t"
190 "sta %%g0, [%0 + %%g4] %6\n\t"
191 "sta %%g0, [%0 + %%g5] %6\n\t"
192 "sta %%g0, [%0 + %%o4] %6\n\t"
193 "bg 1b\n\t"
194 " add %0, %%o5, %0\n"
195 : "=&r" (addr), "=&r" (nbytes), "=&r" (lsize)
196 : "0" (addr), "1" (nbytes), "2" (lsize),
197 "i" (ASI_FLUSHSEG)
198 : "g1", "g2", "g3", "g4", "g5", "o4", "o5", "cc");
199 }
200}
201
202
203static void sun4c_flush_page_sw(unsigned long addr)
204{
205 addr &= PAGE_MASK;
206 if ((sun4c_get_pte(addr) & (_SUN4C_PAGE_NOCACHE | _SUN4C_PAGE_VALID)) ==
207 _SUN4C_PAGE_VALID) {
208 unsigned long left = PAGE_SIZE;
209 unsigned long lsize = sun4c_vacinfo.linesize;
210
211 __asm__ __volatile__(
212 "add %2, %2, %%g1\n\t"
213 "add %2, %%g1, %%g2\n\t"
214 "add %2, %%g2, %%g3\n\t"
215 "add %2, %%g3, %%g4\n\t"
216 "add %2, %%g4, %%g5\n\t"
217 "add %2, %%g5, %%o4\n\t"
218 "add %2, %%o4, %%o5\n"
219 "1:\n\t"
220 "subcc %1, %%o5, %1\n\t"
221 "sta %%g0, [%0] %6\n\t"
222 "sta %%g0, [%0 + %2] %6\n\t"
223 "sta %%g0, [%0 + %%g1] %6\n\t"
224 "sta %%g0, [%0 + %%g2] %6\n\t"
225 "sta %%g0, [%0 + %%g3] %6\n\t"
226 "sta %%g0, [%0 + %%g4] %6\n\t"
227 "sta %%g0, [%0 + %%g5] %6\n\t"
228 "sta %%g0, [%0 + %%o4] %6\n\t"
229 "bg 1b\n\t"
230 " add %0, %%o5, %0\n"
231 : "=&r" (addr), "=&r" (left), "=&r" (lsize)
232 : "0" (addr), "1" (left), "2" (lsize),
233 "i" (ASI_FLUSHPG)
234 : "g1", "g2", "g3", "g4", "g5", "o4", "o5", "cc");
235 }
236}
237
238
239
240
241
242
243
244void sun4c_complete_all_stores(void)
245{
246 volatile int _unused;
247
248 _unused = sun4c_get_context();
249 sun4c_set_context(_unused);
250#ifdef CONFIG_SUN_AUXIO
251 _unused = get_auxio();
252#endif
253}
254
255
256static inline void sun4c_init_clean_segmap(unsigned char pseg)
257{
258 unsigned long vaddr;
259
260 sun4c_put_segmap(0, pseg);
261 for (vaddr = 0; vaddr < SUN4C_REAL_PGDIR_SIZE; vaddr += PAGE_SIZE)
262 sun4c_put_pte(vaddr, 0);
263 sun4c_put_segmap(0, invalid_segment);
264}
265
266static inline void sun4c_init_clean_mmu(unsigned long kernel_end)
267{
268 unsigned long vaddr;
269 unsigned char savectx, ctx;
270
271 savectx = sun4c_get_context();
272 kernel_end = SUN4C_REAL_PGDIR_ALIGN(kernel_end);
273 for (ctx = 0; ctx < num_contexts; ctx++) {
274 sun4c_set_context(ctx);
275 for (vaddr = 0; vaddr < 0x20000000; vaddr += SUN4C_REAL_PGDIR_SIZE)
276 sun4c_put_segmap(vaddr, invalid_segment);
277 for (vaddr = 0xe0000000; vaddr < KERNBASE; vaddr += SUN4C_REAL_PGDIR_SIZE)
278 sun4c_put_segmap(vaddr, invalid_segment);
279 for (vaddr = kernel_end; vaddr < KADB_DEBUGGER_BEGVM; vaddr += SUN4C_REAL_PGDIR_SIZE)
280 sun4c_put_segmap(vaddr, invalid_segment);
281 for (vaddr = LINUX_OPPROM_ENDVM; vaddr; vaddr += SUN4C_REAL_PGDIR_SIZE)
282 sun4c_put_segmap(vaddr, invalid_segment);
283 }
284 sun4c_set_context(savectx);
285}
286
287void __init sun4c_probe_vac(void)
288{
289 sun4c_disable_vac();
290
291 if (ARCH_SUN4) {
292 switch (idprom->id_machtype) {
293
294 case (SM_SUN4|SM_4_110):
295 sun4c_vacinfo.type = VAC_NONE;
296 sun4c_vacinfo.num_bytes = 0;
297 sun4c_vacinfo.linesize = 0;
298 sun4c_vacinfo.do_hwflushes = 0;
299 prom_printf("No VAC. Get some bucks and buy a real computer.");
300 prom_halt();
301 break;
302
303 case (SM_SUN4|SM_4_260):
304 sun4c_vacinfo.type = VAC_WRITE_BACK;
305 sun4c_vacinfo.num_bytes = 128 * 1024;
306 sun4c_vacinfo.linesize = 16;
307 sun4c_vacinfo.do_hwflushes = 0;
308 break;
309
310 case (SM_SUN4|SM_4_330):
311 sun4c_vacinfo.type = VAC_WRITE_THROUGH;
312 sun4c_vacinfo.num_bytes = 128 * 1024;
313 sun4c_vacinfo.linesize = 16;
314 sun4c_vacinfo.do_hwflushes = 0;
315 break;
316
317 case (SM_SUN4|SM_4_470):
318 sun4c_vacinfo.type = VAC_WRITE_BACK;
319 sun4c_vacinfo.num_bytes = 128 * 1024;
320 sun4c_vacinfo.linesize = 32;
321 sun4c_vacinfo.do_hwflushes = 0;
322 break;
323
324 default:
325 prom_printf("Cannot initialize VAC - weird sun4 model idprom->id_machtype = %d", idprom->id_machtype);
326 prom_halt();
327 };
328 } else {
329 sun4c_vacinfo.type = VAC_WRITE_THROUGH;
330
331 if ((idprom->id_machtype == (SM_SUN4C | SM_4C_SS1)) ||
332 (idprom->id_machtype == (SM_SUN4C | SM_4C_SS1PLUS))) {
333
334
335
336 sun4c_vacinfo.num_bytes = 65536;
337 sun4c_vacinfo.linesize = 16;
338 } else {
339 sun4c_vacinfo.num_bytes =
340 prom_getintdefault(prom_root_node, "vac-size", 65536);
341 sun4c_vacinfo.linesize =
342 prom_getintdefault(prom_root_node, "vac-linesize", 16);
343 }
344 sun4c_vacinfo.do_hwflushes =
345 prom_getintdefault(prom_root_node, "vac-hwflush", 0);
346
347 if (sun4c_vacinfo.do_hwflushes == 0)
348 sun4c_vacinfo.do_hwflushes =
349 prom_getintdefault(prom_root_node, "vac_hwflush", 0);
350
351 if (sun4c_vacinfo.num_bytes != 65536) {
352 prom_printf("WEIRD Sun4C VAC cache size, "
353 "tell sparclinux@vger.kernel.org");
354 prom_halt();
355 }
356 }
357
358 sun4c_vacinfo.num_lines =
359 (sun4c_vacinfo.num_bytes / sun4c_vacinfo.linesize);
360 switch (sun4c_vacinfo.linesize) {
361 case 16:
362 sun4c_vacinfo.log2lsize = 4;
363 break;
364 case 32:
365 sun4c_vacinfo.log2lsize = 5;
366 break;
367 default:
368 prom_printf("probe_vac: Didn't expect vac-linesize of %d, halting\n",
369 sun4c_vacinfo.linesize);
370 prom_halt();
371 };
372
373 sun4c_flush_all();
374 sun4c_enable_vac();
375}
376
377
378extern unsigned long invalid_segment_patch1, invalid_segment_patch1_ff;
379extern unsigned long invalid_segment_patch2, invalid_segment_patch2_ff;
380extern unsigned long invalid_segment_patch1_1ff, invalid_segment_patch2_1ff;
381extern unsigned long num_context_patch1, num_context_patch1_16;
382extern unsigned long num_context_patch2, num_context_patch2_16;
383extern unsigned long vac_linesize_patch, vac_linesize_patch_32;
384extern unsigned long vac_hwflush_patch1, vac_hwflush_patch1_on;
385extern unsigned long vac_hwflush_patch2, vac_hwflush_patch2_on;
386
387#define PATCH_INSN(src, dst) do { \
388 daddr = &(dst); \
389 iaddr = &(src); \
390 *daddr = *iaddr; \
391 } while (0)
392
393static void __init patch_kernel_fault_handler(void)
394{
395 unsigned long *iaddr, *daddr;
396
397 switch (num_segmaps) {
398 case 128:
399
400 break;
401 case 256:
402 PATCH_INSN(invalid_segment_patch1_ff,
403 invalid_segment_patch1);
404 PATCH_INSN(invalid_segment_patch2_ff,
405 invalid_segment_patch2);
406 break;
407 case 512:
408 PATCH_INSN(invalid_segment_patch1_1ff,
409 invalid_segment_patch1);
410 PATCH_INSN(invalid_segment_patch2_1ff,
411 invalid_segment_patch2);
412 break;
413 default:
414 prom_printf("Unhandled number of segmaps: %d\n",
415 num_segmaps);
416 prom_halt();
417 };
418 switch (num_contexts) {
419 case 8:
420
421 break;
422 case 16:
423 PATCH_INSN(num_context_patch1_16,
424 num_context_patch1);
425 break;
426 default:
427 prom_printf("Unhandled number of contexts: %d\n",
428 num_contexts);
429 prom_halt();
430 };
431
432 if (sun4c_vacinfo.do_hwflushes != 0) {
433 PATCH_INSN(vac_hwflush_patch1_on, vac_hwflush_patch1);
434 PATCH_INSN(vac_hwflush_patch2_on, vac_hwflush_patch2);
435 } else {
436 switch (sun4c_vacinfo.linesize) {
437 case 16:
438
439 break;
440 case 32:
441 PATCH_INSN(vac_linesize_patch_32, vac_linesize_patch);
442 break;
443 default:
444 prom_printf("Impossible VAC linesize %d, halting...\n",
445 sun4c_vacinfo.linesize);
446 prom_halt();
447 };
448 }
449}
450
451static void __init sun4c_probe_mmu(void)
452{
453 if (ARCH_SUN4) {
454 switch (idprom->id_machtype) {
455 case (SM_SUN4|SM_4_110):
456 prom_printf("No support for 4100 yet\n");
457 prom_halt();
458 num_segmaps = 256;
459 num_contexts = 8;
460 break;
461
462 case (SM_SUN4|SM_4_260):
463
464 num_segmaps = 256;
465 num_contexts = 16;
466 break;
467
468 case (SM_SUN4|SM_4_330):
469 num_segmaps = 256;
470 num_contexts = 16;
471 break;
472
473 case (SM_SUN4|SM_4_470):
474
475 num_segmaps = 256;
476 num_contexts = 64;
477 break;
478 default:
479 prom_printf("Invalid SUN4 model\n");
480 prom_halt();
481 };
482 } else {
483 if ((idprom->id_machtype == (SM_SUN4C | SM_4C_SS1)) ||
484 (idprom->id_machtype == (SM_SUN4C | SM_4C_SS1PLUS))) {
485
486
487
488 num_segmaps = 128;
489 num_contexts = 8;
490 } else {
491 num_segmaps =
492 prom_getintdefault(prom_root_node, "mmu-npmg", 128);
493 num_contexts =
494 prom_getintdefault(prom_root_node, "mmu-nctx", 0x8);
495 }
496 }
497 patch_kernel_fault_handler();
498}
499
500volatile unsigned long *sun4c_memerr_reg = NULL;
501
502void __init sun4c_probe_memerr_reg(void)
503{
504 int node;
505 struct linux_prom_registers regs[1];
506
507 if (ARCH_SUN4) {
508 sun4c_memerr_reg = ioremap(sun4_memreg_physaddr, PAGE_SIZE);
509 } else {
510 node = prom_getchild(prom_root_node);
511 node = prom_searchsiblings(prom_root_node, "memory-error");
512 if (!node)
513 return;
514 prom_getproperty(node, "reg", (char *)regs, sizeof(regs));
515
516 sun4c_memerr_reg = ioremap(regs[0].phys_addr, regs[0].reg_size);
517 }
518}
519
520static inline void sun4c_init_ss2_cache_bug(void)
521{
522 extern unsigned long start;
523
524 if ((idprom->id_machtype == (SM_SUN4C | SM_4C_SS2)) ||
525 (idprom->id_machtype == (SM_SUN4C | SM_4C_IPX)) ||
526 (idprom->id_machtype == (SM_SUN4 | SM_4_330)) ||
527 (idprom->id_machtype == (SM_SUN4C | SM_4C_ELC))) {
528
529 printk("SS2 cache bug detected, uncaching trap table page\n");
530 sun4c_flush_page((unsigned int) &start);
531 sun4c_put_pte(((unsigned long) &start),
532 (sun4c_get_pte((unsigned long) &start) | _SUN4C_PAGE_NOCACHE));
533 }
534}
535
536
537static int sun4c_map_dma_area(dma_addr_t *pba, unsigned long va,
538 unsigned long addr, int len)
539{
540 unsigned long page, end;
541
542 *pba = addr;
543
544 end = PAGE_ALIGN((addr + len));
545 while (addr < end) {
546 page = va;
547 sun4c_flush_page(page);
548 page -= PAGE_OFFSET;
549 page >>= PAGE_SHIFT;
550 page |= (_SUN4C_PAGE_VALID | _SUN4C_PAGE_DIRTY |
551 _SUN4C_PAGE_NOCACHE | _SUN4C_PAGE_PRIV);
552 sun4c_put_pte(addr, page);
553 addr += PAGE_SIZE;
554 va += PAGE_SIZE;
555 }
556
557 return 0;
558}
559
560static struct page *sun4c_translate_dvma(unsigned long busa)
561{
562
563 unsigned long pte = sun4c_get_pte(busa);
564 return pfn_to_page(pte & SUN4C_PFN_MASK);
565}
566
567static void sun4c_unmap_dma_area(unsigned long busa, int len)
568{
569
570
571}
572
573
574
575
576
577
578
579struct sun4c_mmu_entry {
580 struct sun4c_mmu_entry *next;
581 struct sun4c_mmu_entry *prev;
582 unsigned long vaddr;
583 unsigned char pseg;
584 unsigned char locked;
585
586
587
588
589 unsigned char ctx;
590 struct sun4c_mmu_entry *lru_next;
591 struct sun4c_mmu_entry *lru_prev;
592};
593
594static struct sun4c_mmu_entry mmu_entry_pool[SUN4C_MAX_SEGMAPS];
595
596static void __init sun4c_init_mmu_entry_pool(void)
597{
598 int i;
599
600 for (i=0; i < SUN4C_MAX_SEGMAPS; i++) {
601 mmu_entry_pool[i].pseg = i;
602 mmu_entry_pool[i].next = NULL;
603 mmu_entry_pool[i].prev = NULL;
604 mmu_entry_pool[i].vaddr = 0;
605 mmu_entry_pool[i].locked = 0;
606 mmu_entry_pool[i].ctx = 0;
607 mmu_entry_pool[i].lru_next = NULL;
608 mmu_entry_pool[i].lru_prev = NULL;
609 }
610 mmu_entry_pool[invalid_segment].locked = 1;
611}
612
613static inline void fix_permissions(unsigned long vaddr, unsigned long bits_on,
614 unsigned long bits_off)
615{
616 unsigned long start, end;
617
618 end = vaddr + SUN4C_REAL_PGDIR_SIZE;
619 for (start = vaddr; start < end; start += PAGE_SIZE)
620 if (sun4c_get_pte(start) & _SUN4C_PAGE_VALID)
621 sun4c_put_pte(start, (sun4c_get_pte(start) | bits_on) &
622 ~bits_off);
623}
624
625static inline void sun4c_init_map_kernelprom(unsigned long kernel_end)
626{
627 unsigned long vaddr;
628 unsigned char pseg, ctx;
629#ifdef CONFIG_SUN4
630
631 if ((idprom->id_machtype != (SM_SUN4 | SM_4_260)) &&
632 (idprom->id_machtype != (SM_SUN4 | SM_4_110))) {
633#endif
634 for (vaddr = KADB_DEBUGGER_BEGVM;
635 vaddr < LINUX_OPPROM_ENDVM;
636 vaddr += SUN4C_REAL_PGDIR_SIZE) {
637 pseg = sun4c_get_segmap(vaddr);
638 if (pseg != invalid_segment) {
639 mmu_entry_pool[pseg].locked = 1;
640 for (ctx = 0; ctx < num_contexts; ctx++)
641 prom_putsegment(ctx, vaddr, pseg);
642 fix_permissions(vaddr, _SUN4C_PAGE_PRIV, 0);
643 }
644 }
645#ifdef CONFIG_SUN4
646 }
647#endif
648 for (vaddr = KERNBASE; vaddr < kernel_end; vaddr += SUN4C_REAL_PGDIR_SIZE) {
649 pseg = sun4c_get_segmap(vaddr);
650 mmu_entry_pool[pseg].locked = 1;
651 for (ctx = 0; ctx < num_contexts; ctx++)
652 prom_putsegment(ctx, vaddr, pseg);
653 fix_permissions(vaddr, _SUN4C_PAGE_PRIV, _SUN4C_PAGE_NOCACHE);
654 }
655}
656
657static void __init sun4c_init_lock_area(unsigned long start, unsigned long end)
658{
659 int i, ctx;
660
661 while (start < end) {
662 for (i = 0; i < invalid_segment; i++)
663 if (!mmu_entry_pool[i].locked)
664 break;
665 mmu_entry_pool[i].locked = 1;
666 sun4c_init_clean_segmap(i);
667 for (ctx = 0; ctx < num_contexts; ctx++)
668 prom_putsegment(ctx, start, mmu_entry_pool[i].pseg);
669 start += SUN4C_REAL_PGDIR_SIZE;
670 }
671}
672
673
674
675
676
677struct sun4c_mmu_ring {
678 struct sun4c_mmu_entry ringhd;
679 int num_entries;
680};
681
682static struct sun4c_mmu_ring sun4c_context_ring[SUN4C_MAX_CONTEXTS];
683static struct sun4c_mmu_ring sun4c_ufree_ring;
684static struct sun4c_mmu_ring sun4c_ulru_ring;
685struct sun4c_mmu_ring sun4c_kernel_ring;
686struct sun4c_mmu_ring sun4c_kfree_ring;
687
688static inline void sun4c_init_rings(void)
689{
690 int i;
691
692 for (i = 0; i < SUN4C_MAX_CONTEXTS; i++) {
693 sun4c_context_ring[i].ringhd.next =
694 sun4c_context_ring[i].ringhd.prev =
695 &sun4c_context_ring[i].ringhd;
696 sun4c_context_ring[i].num_entries = 0;
697 }
698 sun4c_ufree_ring.ringhd.next = sun4c_ufree_ring.ringhd.prev =
699 &sun4c_ufree_ring.ringhd;
700 sun4c_ufree_ring.num_entries = 0;
701 sun4c_ulru_ring.ringhd.lru_next = sun4c_ulru_ring.ringhd.lru_prev =
702 &sun4c_ulru_ring.ringhd;
703 sun4c_ulru_ring.num_entries = 0;
704 sun4c_kernel_ring.ringhd.next = sun4c_kernel_ring.ringhd.prev =
705 &sun4c_kernel_ring.ringhd;
706 sun4c_kernel_ring.num_entries = 0;
707 sun4c_kfree_ring.ringhd.next = sun4c_kfree_ring.ringhd.prev =
708 &sun4c_kfree_ring.ringhd;
709 sun4c_kfree_ring.num_entries = 0;
710}
711
712static void add_ring(struct sun4c_mmu_ring *ring,
713 struct sun4c_mmu_entry *entry)
714{
715 struct sun4c_mmu_entry *head = &ring->ringhd;
716
717 entry->prev = head;
718 (entry->next = head->next)->prev = entry;
719 head->next = entry;
720 ring->num_entries++;
721}
722
723static __inline__ void add_lru(struct sun4c_mmu_entry *entry)
724{
725 struct sun4c_mmu_ring *ring = &sun4c_ulru_ring;
726 struct sun4c_mmu_entry *head = &ring->ringhd;
727
728 entry->lru_next = head;
729 (entry->lru_prev = head->lru_prev)->lru_next = entry;
730 head->lru_prev = entry;
731}
732
733static void add_ring_ordered(struct sun4c_mmu_ring *ring,
734 struct sun4c_mmu_entry *entry)
735{
736 struct sun4c_mmu_entry *head = &ring->ringhd;
737 unsigned long addr = entry->vaddr;
738
739 while ((head->next != &ring->ringhd) && (head->next->vaddr < addr))
740 head = head->next;
741
742 entry->prev = head;
743 (entry->next = head->next)->prev = entry;
744 head->next = entry;
745 ring->num_entries++;
746
747 add_lru(entry);
748}
749
750static __inline__ void remove_ring(struct sun4c_mmu_ring *ring,
751 struct sun4c_mmu_entry *entry)
752{
753 struct sun4c_mmu_entry *next = entry->next;
754
755 (next->prev = entry->prev)->next = next;
756 ring->num_entries--;
757}
758
759static void remove_lru(struct sun4c_mmu_entry *entry)
760{
761 struct sun4c_mmu_entry *next = entry->lru_next;
762
763 (next->lru_prev = entry->lru_prev)->lru_next = next;
764}
765
766static void free_user_entry(int ctx, struct sun4c_mmu_entry *entry)
767{
768 remove_ring(sun4c_context_ring+ctx, entry);
769 remove_lru(entry);
770 add_ring(&sun4c_ufree_ring, entry);
771}
772
773static void free_kernel_entry(struct sun4c_mmu_entry *entry,
774 struct sun4c_mmu_ring *ring)
775{
776 remove_ring(ring, entry);
777 add_ring(&sun4c_kfree_ring, entry);
778}
779
780static void __init sun4c_init_fill_kernel_ring(int howmany)
781{
782 int i;
783
784 while (howmany) {
785 for (i = 0; i < invalid_segment; i++)
786 if (!mmu_entry_pool[i].locked)
787 break;
788 mmu_entry_pool[i].locked = 1;
789 sun4c_init_clean_segmap(i);
790 add_ring(&sun4c_kfree_ring, &mmu_entry_pool[i]);
791 howmany--;
792 }
793}
794
795static void __init sun4c_init_fill_user_ring(void)
796{
797 int i;
798
799 for (i = 0; i < invalid_segment; i++) {
800 if (mmu_entry_pool[i].locked)
801 continue;
802 sun4c_init_clean_segmap(i);
803 add_ring(&sun4c_ufree_ring, &mmu_entry_pool[i]);
804 }
805}
806
807static void sun4c_kernel_unmap(struct sun4c_mmu_entry *kentry)
808{
809 int savectx, ctx;
810
811 savectx = sun4c_get_context();
812 for (ctx = 0; ctx < num_contexts; ctx++) {
813 sun4c_set_context(ctx);
814 sun4c_put_segmap(kentry->vaddr, invalid_segment);
815 }
816 sun4c_set_context(savectx);
817}
818
819static void sun4c_kernel_map(struct sun4c_mmu_entry *kentry)
820{
821 int savectx, ctx;
822
823 savectx = sun4c_get_context();
824 for (ctx = 0; ctx < num_contexts; ctx++) {
825 sun4c_set_context(ctx);
826 sun4c_put_segmap(kentry->vaddr, kentry->pseg);
827 }
828 sun4c_set_context(savectx);
829}
830
831#define sun4c_user_unmap(__entry) \
832 sun4c_put_segmap((__entry)->vaddr, invalid_segment)
833
834static void sun4c_demap_context(struct sun4c_mmu_ring *crp, unsigned char ctx)
835{
836 struct sun4c_mmu_entry *head = &crp->ringhd;
837 unsigned long flags;
838
839 local_irq_save(flags);
840 if (head->next != head) {
841 struct sun4c_mmu_entry *entry = head->next;
842 int savectx = sun4c_get_context();
843
844 flush_user_windows();
845 sun4c_set_context(ctx);
846 sun4c_flush_context();
847 do {
848 struct sun4c_mmu_entry *next = entry->next;
849
850 sun4c_user_unmap(entry);
851 free_user_entry(ctx, entry);
852
853 entry = next;
854 } while (entry != head);
855 sun4c_set_context(savectx);
856 }
857 local_irq_restore(flags);
858}
859
860static int sun4c_user_taken_entries;
861static int max_user_taken_entries;
862
863static struct sun4c_mmu_entry *sun4c_kernel_strategy(void)
864{
865 struct sun4c_mmu_entry *this_entry;
866
867
868 if (sun4c_kfree_ring.num_entries) {
869 this_entry = sun4c_kfree_ring.ringhd.next;
870 return this_entry;
871 }
872
873
874 this_entry = sun4c_kernel_ring.ringhd.prev;
875 sun4c_flush_segment(this_entry->vaddr);
876 sun4c_kernel_unmap(this_entry);
877 free_kernel_entry(this_entry, &sun4c_kernel_ring);
878 this_entry = sun4c_kfree_ring.ringhd.next;
879
880 return this_entry;
881}
882
883
884
885
886
887
888
889static struct sun4c_mmu_entry *sun4c_user_strategy(void)
890{
891 struct sun4c_mmu_entry *entry;
892 unsigned char ctx;
893 int savectx;
894
895
896 if (sun4c_ufree_ring.num_entries) {
897 entry = sun4c_ufree_ring.ringhd.next;
898 goto unlink_out;
899 }
900
901 if (sun4c_user_taken_entries) {
902 entry = sun4c_kernel_strategy();
903 sun4c_user_taken_entries--;
904 goto kunlink_out;
905 }
906
907
908 entry = sun4c_ulru_ring.ringhd.lru_next;
909 ctx = entry->ctx;
910
911 savectx = sun4c_get_context();
912 flush_user_windows();
913 sun4c_set_context(ctx);
914 sun4c_flush_segment(entry->vaddr);
915 sun4c_user_unmap(entry);
916 remove_ring(sun4c_context_ring + ctx, entry);
917 remove_lru(entry);
918 sun4c_set_context(savectx);
919
920 return entry;
921
922unlink_out:
923 remove_ring(&sun4c_ufree_ring, entry);
924 return entry;
925kunlink_out:
926 remove_ring(&sun4c_kfree_ring, entry);
927 return entry;
928}
929
930
931void sun4c_grow_kernel_ring(void)
932{
933 struct sun4c_mmu_entry *entry;
934
935
936 if (sun4c_user_taken_entries >= max_user_taken_entries)
937 return;
938
939 if (sun4c_ufree_ring.num_entries) {
940 entry = sun4c_ufree_ring.ringhd.next;
941 remove_ring(&sun4c_ufree_ring, entry);
942 add_ring(&sun4c_kfree_ring, entry);
943 sun4c_user_taken_entries++;
944 }
945}
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962union task_union *sun4c_bucket[NR_TASK_BUCKETS];
963
964static int sun4c_lowbucket_avail;
965
966#define BUCKET_EMPTY ((union task_union *) 0)
967#define BUCKET_SHIFT (PAGE_SHIFT + 1)
968#define BUCKET_SIZE (1 << BUCKET_SHIFT)
969#define BUCKET_NUM(addr) ((((addr) - SUN4C_LOCK_VADDR) >> BUCKET_SHIFT))
970#define BUCKET_ADDR(num) (((num) << BUCKET_SHIFT) + SUN4C_LOCK_VADDR)
971#define BUCKET_PTE(page) \
972 ((((page) - PAGE_OFFSET) >> PAGE_SHIFT) | pgprot_val(SUN4C_PAGE_KERNEL))
973#define BUCKET_PTE_PAGE(pte) \
974 (PAGE_OFFSET + (((pte) & SUN4C_PFN_MASK) << PAGE_SHIFT))
975
976static void get_locked_segment(unsigned long addr)
977{
978 struct sun4c_mmu_entry *stolen;
979 unsigned long flags;
980
981 local_irq_save(flags);
982 addr &= SUN4C_REAL_PGDIR_MASK;
983 stolen = sun4c_user_strategy();
984 max_user_taken_entries--;
985 stolen->vaddr = addr;
986 flush_user_windows();
987 sun4c_kernel_map(stolen);
988 local_irq_restore(flags);
989}
990
991static void free_locked_segment(unsigned long addr)
992{
993 struct sun4c_mmu_entry *entry;
994 unsigned long flags;
995 unsigned char pseg;
996
997 local_irq_save(flags);
998 addr &= SUN4C_REAL_PGDIR_MASK;
999 pseg = sun4c_get_segmap(addr);
1000 entry = &mmu_entry_pool[pseg];
1001
1002 flush_user_windows();
1003 sun4c_flush_segment(addr);
1004 sun4c_kernel_unmap(entry);
1005 add_ring(&sun4c_ufree_ring, entry);
1006 max_user_taken_entries++;
1007 local_irq_restore(flags);
1008}
1009
1010static inline void garbage_collect(int entry)
1011{
1012 int start, end;
1013
1014
1015 entry &= ~31;
1016 start = entry;
1017 for (end = (start + 32); start < end; start++)
1018 if (sun4c_bucket[start] != BUCKET_EMPTY)
1019 return;
1020
1021
1022 free_locked_segment(BUCKET_ADDR(entry));
1023}
1024
1025static struct thread_info *sun4c_alloc_thread_info(void)
1026{
1027 unsigned long addr, pages;
1028 int entry;
1029
1030 pages = __get_free_pages(GFP_KERNEL, THREAD_INFO_ORDER);
1031 if (!pages)
1032 return NULL;
1033
1034 for (entry = sun4c_lowbucket_avail; entry < NR_TASK_BUCKETS; entry++)
1035 if (sun4c_bucket[entry] == BUCKET_EMPTY)
1036 break;
1037 if (entry == NR_TASK_BUCKETS) {
1038 free_pages(pages, THREAD_INFO_ORDER);
1039 return NULL;
1040 }
1041 if (entry >= sun4c_lowbucket_avail)
1042 sun4c_lowbucket_avail = entry + 1;
1043
1044 addr = BUCKET_ADDR(entry);
1045 sun4c_bucket[entry] = (union task_union *) addr;
1046 if(sun4c_get_segmap(addr) == invalid_segment)
1047 get_locked_segment(addr);
1048
1049
1050
1051
1052 sun4c_flush_page(pages);
1053#ifndef CONFIG_SUN4
1054 sun4c_flush_page(pages + PAGE_SIZE);
1055#endif
1056
1057 sun4c_put_pte(addr, BUCKET_PTE(pages));
1058#ifndef CONFIG_SUN4
1059 sun4c_put_pte(addr + PAGE_SIZE, BUCKET_PTE(pages + PAGE_SIZE));
1060#endif
1061
1062#ifdef CONFIG_DEBUG_STACK_USAGE
1063 memset((void *)addr, 0, PAGE_SIZE << THREAD_INFO_ORDER);
1064#endif
1065
1066 return (struct thread_info *) addr;
1067}
1068
1069static void sun4c_free_thread_info(struct thread_info *ti)
1070{
1071 unsigned long tiaddr = (unsigned long) ti;
1072 unsigned long pages = BUCKET_PTE_PAGE(sun4c_get_pte(tiaddr));
1073 int entry = BUCKET_NUM(tiaddr);
1074
1075
1076 sun4c_flush_page(tiaddr);
1077#ifndef CONFIG_SUN4
1078 sun4c_flush_page(tiaddr + PAGE_SIZE);
1079#endif
1080 sun4c_put_pte(tiaddr, 0);
1081#ifndef CONFIG_SUN4
1082 sun4c_put_pte(tiaddr + PAGE_SIZE, 0);
1083#endif
1084 sun4c_bucket[entry] = BUCKET_EMPTY;
1085 if (entry < sun4c_lowbucket_avail)
1086 sun4c_lowbucket_avail = entry;
1087
1088 free_pages(pages, THREAD_INFO_ORDER);
1089 garbage_collect(entry);
1090}
1091
1092static void __init sun4c_init_buckets(void)
1093{
1094 int entry;
1095
1096 if (sizeof(union thread_union) != (PAGE_SIZE << THREAD_INFO_ORDER)) {
1097 extern void thread_info_size_is_bolixed_pete(void);
1098 thread_info_size_is_bolixed_pete();
1099 }
1100
1101 for (entry = 0; entry < NR_TASK_BUCKETS; entry++)
1102 sun4c_bucket[entry] = BUCKET_EMPTY;
1103 sun4c_lowbucket_avail = 0;
1104}
1105
1106static unsigned long sun4c_iobuffer_start;
1107static unsigned long sun4c_iobuffer_end;
1108static unsigned long sun4c_iobuffer_high;
1109static unsigned long *sun4c_iobuffer_map;
1110static int iobuffer_map_size;
1111
1112
1113
1114
1115
1116
1117static char *sun4c_lockarea(char *vaddr, unsigned long size)
1118{
1119 unsigned long base, scan;
1120 unsigned long npages;
1121 unsigned long vpage;
1122 unsigned long pte;
1123 unsigned long apage;
1124 unsigned long high;
1125 unsigned long flags;
1126
1127 npages = (((unsigned long)vaddr & ~PAGE_MASK) +
1128 size + (PAGE_SIZE-1)) >> PAGE_SHIFT;
1129
1130 scan = 0;
1131 local_irq_save(flags);
1132 for (;;) {
1133 scan = find_next_zero_bit(sun4c_iobuffer_map,
1134 iobuffer_map_size, scan);
1135 if ((base = scan) + npages > iobuffer_map_size) goto abend;
1136 for (;;) {
1137 if (scan >= base + npages) goto found;
1138 if (test_bit(scan, sun4c_iobuffer_map)) break;
1139 scan++;
1140 }
1141 }
1142
1143found:
1144 high = ((base + npages) << PAGE_SHIFT) + sun4c_iobuffer_start;
1145 high = SUN4C_REAL_PGDIR_ALIGN(high);
1146 while (high > sun4c_iobuffer_high) {
1147 get_locked_segment(sun4c_iobuffer_high);
1148 sun4c_iobuffer_high += SUN4C_REAL_PGDIR_SIZE;
1149 }
1150
1151 vpage = ((unsigned long) vaddr) & PAGE_MASK;
1152 for (scan = base; scan < base+npages; scan++) {
1153 pte = ((vpage-PAGE_OFFSET) >> PAGE_SHIFT);
1154 pte |= pgprot_val(SUN4C_PAGE_KERNEL);
1155 pte |= _SUN4C_PAGE_NOCACHE;
1156 set_bit(scan, sun4c_iobuffer_map);
1157 apage = (scan << PAGE_SHIFT) + sun4c_iobuffer_start;
1158
1159
1160 sun4c_flush_page(vpage);
1161
1162 sun4c_put_pte(apage, pte);
1163 vpage += PAGE_SIZE;
1164 }
1165 local_irq_restore(flags);
1166 return (char *) ((base << PAGE_SHIFT) + sun4c_iobuffer_start +
1167 (((unsigned long) vaddr) & ~PAGE_MASK));
1168
1169abend:
1170 local_irq_restore(flags);
1171 printk("DMA vaddr=0x%p size=%08lx\n", vaddr, size);
1172 panic("Out of iobuffer table");
1173 return NULL;
1174}
1175
1176static void sun4c_unlockarea(char *vaddr, unsigned long size)
1177{
1178 unsigned long vpage, npages;
1179 unsigned long flags;
1180 int scan, high;
1181
1182 vpage = (unsigned long)vaddr & PAGE_MASK;
1183 npages = (((unsigned long)vaddr & ~PAGE_MASK) +
1184 size + (PAGE_SIZE-1)) >> PAGE_SHIFT;
1185
1186 local_irq_save(flags);
1187 while (npages != 0) {
1188 --npages;
1189
1190
1191 sun4c_put_pte(vpage, 0);
1192 clear_bit((vpage - sun4c_iobuffer_start) >> PAGE_SHIFT,
1193 sun4c_iobuffer_map);
1194 vpage += PAGE_SIZE;
1195 }
1196
1197
1198 scan = (sun4c_iobuffer_high - sun4c_iobuffer_start) >> PAGE_SHIFT;
1199 while (scan >= 0 && !sun4c_iobuffer_map[scan >> 5])
1200 scan -= 32;
1201 scan += 32;
1202 high = sun4c_iobuffer_start + (scan << PAGE_SHIFT);
1203 high = SUN4C_REAL_PGDIR_ALIGN(high) + SUN4C_REAL_PGDIR_SIZE;
1204 while (high < sun4c_iobuffer_high) {
1205 sun4c_iobuffer_high -= SUN4C_REAL_PGDIR_SIZE;
1206 free_locked_segment(sun4c_iobuffer_high);
1207 }
1208 local_irq_restore(flags);
1209}
1210
1211
1212
1213
1214
1215
1216static __u32 sun4c_get_scsi_one(char *bufptr, unsigned long len, struct sbus_bus *sbus)
1217{
1218 unsigned long page;
1219
1220 page = ((unsigned long)bufptr) & PAGE_MASK;
1221 if (!virt_addr_valid(page)) {
1222 sun4c_flush_page(page);
1223 return (__u32)bufptr;
1224 }
1225 return (__u32)sun4c_lockarea(bufptr, len);
1226}
1227
1228static void sun4c_get_scsi_sgl(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
1229{
1230 while (sz != 0) {
1231 --sz;
1232 sg[sz].dvma_address = (__u32)sun4c_lockarea(page_address(sg[sz].page) + sg[sz].offset, sg[sz].length);
1233 sg[sz].dvma_length = sg[sz].length;
1234 }
1235}
1236
1237static void sun4c_release_scsi_one(__u32 bufptr, unsigned long len, struct sbus_bus *sbus)
1238{
1239 if (bufptr < sun4c_iobuffer_start)
1240 return;
1241 sun4c_unlockarea((char *)bufptr, len);
1242}
1243
1244static void sun4c_release_scsi_sgl(struct scatterlist *sg, int sz, struct sbus_bus *sbus)
1245{
1246 while (sz != 0) {
1247 --sz;
1248 sun4c_unlockarea((char *)sg[sz].dvma_address, sg[sz].length);
1249 }
1250}
1251
1252#define TASK_ENTRY_SIZE BUCKET_SIZE
1253#define LONG_ALIGN(x) (((x)+(sizeof(long))-1)&~((sizeof(long))-1))
1254
1255struct vm_area_struct sun4c_kstack_vma;
1256
1257static void __init sun4c_init_lock_areas(void)
1258{
1259 unsigned long sun4c_taskstack_start;
1260 unsigned long sun4c_taskstack_end;
1261 int bitmap_size;
1262
1263 sun4c_init_buckets();
1264 sun4c_taskstack_start = SUN4C_LOCK_VADDR;
1265 sun4c_taskstack_end = (sun4c_taskstack_start +
1266 (TASK_ENTRY_SIZE * NR_TASK_BUCKETS));
1267 if (sun4c_taskstack_end >= SUN4C_LOCK_END) {
1268 prom_printf("Too many tasks, decrease NR_TASK_BUCKETS please.\n");
1269 prom_halt();
1270 }
1271
1272 sun4c_iobuffer_start = sun4c_iobuffer_high =
1273 SUN4C_REAL_PGDIR_ALIGN(sun4c_taskstack_end);
1274 sun4c_iobuffer_end = SUN4C_LOCK_END;
1275 bitmap_size = (sun4c_iobuffer_end - sun4c_iobuffer_start) >> PAGE_SHIFT;
1276 bitmap_size = (bitmap_size + 7) >> 3;
1277 bitmap_size = LONG_ALIGN(bitmap_size);
1278 iobuffer_map_size = bitmap_size << 3;
1279 sun4c_iobuffer_map = __alloc_bootmem(bitmap_size, SMP_CACHE_BYTES, 0UL);
1280 memset((void *) sun4c_iobuffer_map, 0, bitmap_size);
1281
1282 sun4c_kstack_vma.vm_mm = &init_mm;
1283 sun4c_kstack_vma.vm_start = sun4c_taskstack_start;
1284 sun4c_kstack_vma.vm_end = sun4c_taskstack_end;
1285 sun4c_kstack_vma.vm_page_prot = PAGE_SHARED;
1286 sun4c_kstack_vma.vm_flags = VM_READ | VM_WRITE | VM_EXEC;
1287 insert_vm_struct(&init_mm, &sun4c_kstack_vma);
1288}
1289
1290
1291static void sun4c_flush_cache_all(void)
1292{
1293 unsigned long begin, end;
1294
1295 flush_user_windows();
1296 begin = (KERNBASE + SUN4C_REAL_PGDIR_SIZE);
1297 end = (begin + SUN4C_VAC_SIZE);
1298
1299 if (sun4c_vacinfo.linesize == 32) {
1300 while (begin < end) {
1301 __asm__ __volatile__(
1302 "ld [%0 + 0x00], %%g0\n\t"
1303 "ld [%0 + 0x20], %%g0\n\t"
1304 "ld [%0 + 0x40], %%g0\n\t"
1305 "ld [%0 + 0x60], %%g0\n\t"
1306 "ld [%0 + 0x80], %%g0\n\t"
1307 "ld [%0 + 0xa0], %%g0\n\t"
1308 "ld [%0 + 0xc0], %%g0\n\t"
1309 "ld [%0 + 0xe0], %%g0\n\t"
1310 "ld [%0 + 0x100], %%g0\n\t"
1311 "ld [%0 + 0x120], %%g0\n\t"
1312 "ld [%0 + 0x140], %%g0\n\t"
1313 "ld [%0 + 0x160], %%g0\n\t"
1314 "ld [%0 + 0x180], %%g0\n\t"
1315 "ld [%0 + 0x1a0], %%g0\n\t"
1316 "ld [%0 + 0x1c0], %%g0\n\t"
1317 "ld [%0 + 0x1e0], %%g0\n"
1318 : : "r" (begin));
1319 begin += 512;
1320 }
1321 } else {
1322 while (begin < end) {
1323 __asm__ __volatile__(
1324 "ld [%0 + 0x00], %%g0\n\t"
1325 "ld [%0 + 0x10], %%g0\n\t"
1326 "ld [%0 + 0x20], %%g0\n\t"
1327 "ld [%0 + 0x30], %%g0\n\t"
1328 "ld [%0 + 0x40], %%g0\n\t"
1329 "ld [%0 + 0x50], %%g0\n\t"
1330 "ld [%0 + 0x60], %%g0\n\t"
1331 "ld [%0 + 0x70], %%g0\n\t"
1332 "ld [%0 + 0x80], %%g0\n\t"
1333 "ld [%0 + 0x90], %%g0\n\t"
1334 "ld [%0 + 0xa0], %%g0\n\t"
1335 "ld [%0 + 0xb0], %%g0\n\t"
1336 "ld [%0 + 0xc0], %%g0\n\t"
1337 "ld [%0 + 0xd0], %%g0\n\t"
1338 "ld [%0 + 0xe0], %%g0\n\t"
1339 "ld [%0 + 0xf0], %%g0\n"
1340 : : "r" (begin));
1341 begin += 256;
1342 }
1343 }
1344}
1345
1346static void sun4c_flush_cache_mm(struct mm_struct *mm)
1347{
1348 int new_ctx = mm->context;
1349
1350 if (new_ctx != NO_CONTEXT) {
1351 flush_user_windows();
1352
1353 if (sun4c_context_ring[new_ctx].num_entries) {
1354 struct sun4c_mmu_entry *head = &sun4c_context_ring[new_ctx].ringhd;
1355 unsigned long flags;
1356
1357 local_irq_save(flags);
1358 if (head->next != head) {
1359 struct sun4c_mmu_entry *entry = head->next;
1360 int savectx = sun4c_get_context();
1361
1362 sun4c_set_context(new_ctx);
1363 sun4c_flush_context();
1364 do {
1365 struct sun4c_mmu_entry *next = entry->next;
1366
1367 sun4c_user_unmap(entry);
1368 free_user_entry(new_ctx, entry);
1369
1370 entry = next;
1371 } while (entry != head);
1372 sun4c_set_context(savectx);
1373 }
1374 local_irq_restore(flags);
1375 }
1376 }
1377}
1378
1379static void sun4c_flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end)
1380{
1381 struct mm_struct *mm = vma->vm_mm;
1382 int new_ctx = mm->context;
1383
1384 if (new_ctx != NO_CONTEXT) {
1385 struct sun4c_mmu_entry *head = &sun4c_context_ring[new_ctx].ringhd;
1386 struct sun4c_mmu_entry *entry;
1387 unsigned long flags;
1388
1389 flush_user_windows();
1390
1391 local_irq_save(flags);
1392
1393 for (entry = head->next;
1394 (entry != head) && ((entry->vaddr+SUN4C_REAL_PGDIR_SIZE) < start);
1395 entry = entry->next)
1396 ;
1397
1398
1399
1400
1401
1402 if ((entry != head) && (entry->vaddr < end)) {
1403 int octx = sun4c_get_context();
1404 sun4c_set_context(new_ctx);
1405
1406
1407
1408
1409
1410
1411
1412 do {
1413 struct sun4c_mmu_entry *next = entry->next;
1414 unsigned long realend;
1415
1416
1417 realend = entry->vaddr + SUN4C_REAL_PGDIR_SIZE;
1418 if (end < realend)
1419 realend = end;
1420 if ((realend - entry->vaddr) <= (PAGE_SIZE << 3)) {
1421 unsigned long page = entry->vaddr;
1422 while (page < realend) {
1423 sun4c_flush_page(page);
1424 page += PAGE_SIZE;
1425 }
1426 } else {
1427 sun4c_flush_segment(entry->vaddr);
1428 sun4c_user_unmap(entry);
1429 free_user_entry(new_ctx, entry);
1430 }
1431 entry = next;
1432 } while ((entry != head) && (entry->vaddr < end));
1433 sun4c_set_context(octx);
1434 }
1435 local_irq_restore(flags);
1436 }
1437}
1438
1439static void sun4c_flush_cache_page(struct vm_area_struct *vma, unsigned long page)
1440{
1441 struct mm_struct *mm = vma->vm_mm;
1442 int new_ctx = mm->context;
1443
1444
1445
1446
1447 if (new_ctx != NO_CONTEXT) {
1448 int octx = sun4c_get_context();
1449 unsigned long flags;
1450
1451 flush_user_windows();
1452 local_irq_save(flags);
1453 sun4c_set_context(new_ctx);
1454 sun4c_flush_page(page);
1455 sun4c_set_context(octx);
1456 local_irq_restore(flags);
1457 }
1458}
1459
1460static void sun4c_flush_page_to_ram(unsigned long page)
1461{
1462 unsigned long flags;
1463
1464 local_irq_save(flags);
1465 sun4c_flush_page(page);
1466 local_irq_restore(flags);
1467}
1468
1469
1470
1471
1472static void sun4c_flush_sig_insns(struct mm_struct *mm, unsigned long insn_addr)
1473{
1474}
1475
1476
1477
1478
1479
1480
1481static void sun4c_flush_tlb_all(void)
1482{
1483 struct sun4c_mmu_entry *this_entry, *next_entry;
1484 unsigned long flags;
1485 int savectx, ctx;
1486
1487 local_irq_save(flags);
1488 this_entry = sun4c_kernel_ring.ringhd.next;
1489 savectx = sun4c_get_context();
1490 flush_user_windows();
1491 while (sun4c_kernel_ring.num_entries) {
1492 next_entry = this_entry->next;
1493 sun4c_flush_segment(this_entry->vaddr);
1494 for (ctx = 0; ctx < num_contexts; ctx++) {
1495 sun4c_set_context(ctx);
1496 sun4c_put_segmap(this_entry->vaddr, invalid_segment);
1497 }
1498 free_kernel_entry(this_entry, &sun4c_kernel_ring);
1499 this_entry = next_entry;
1500 }
1501 sun4c_set_context(savectx);
1502 local_irq_restore(flags);
1503}
1504
1505static void sun4c_flush_tlb_mm(struct mm_struct *mm)
1506{
1507 int new_ctx = mm->context;
1508
1509 if (new_ctx != NO_CONTEXT) {
1510 struct sun4c_mmu_entry *head = &sun4c_context_ring[new_ctx].ringhd;
1511 unsigned long flags;
1512
1513 local_irq_save(flags);
1514 if (head->next != head) {
1515 struct sun4c_mmu_entry *entry = head->next;
1516 int savectx = sun4c_get_context();
1517
1518 sun4c_set_context(new_ctx);
1519 sun4c_flush_context();
1520 do {
1521 struct sun4c_mmu_entry *next = entry->next;
1522
1523 sun4c_user_unmap(entry);
1524 free_user_entry(new_ctx, entry);
1525
1526 entry = next;
1527 } while (entry != head);
1528 sun4c_set_context(savectx);
1529 }
1530 local_irq_restore(flags);
1531 }
1532}
1533
1534static void sun4c_flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end)
1535{
1536 struct mm_struct *mm = vma->vm_mm;
1537 int new_ctx = mm->context;
1538
1539 if (new_ctx != NO_CONTEXT) {
1540 struct sun4c_mmu_entry *head = &sun4c_context_ring[new_ctx].ringhd;
1541 struct sun4c_mmu_entry *entry;
1542 unsigned long flags;
1543
1544 local_irq_save(flags);
1545
1546 for (entry = head->next;
1547 (entry != head) && ((entry->vaddr+SUN4C_REAL_PGDIR_SIZE) < start);
1548 entry = entry->next)
1549 ;
1550
1551 if ((entry != head) && (entry->vaddr < end)) {
1552 int octx = sun4c_get_context();
1553
1554 sun4c_set_context(new_ctx);
1555 do {
1556 struct sun4c_mmu_entry *next = entry->next;
1557
1558 sun4c_flush_segment(entry->vaddr);
1559 sun4c_user_unmap(entry);
1560 free_user_entry(new_ctx, entry);
1561
1562 entry = next;
1563 } while ((entry != head) && (entry->vaddr < end));
1564 sun4c_set_context(octx);
1565 }
1566 local_irq_restore(flags);
1567 }
1568}
1569
1570static void sun4c_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
1571{
1572 struct mm_struct *mm = vma->vm_mm;
1573 int new_ctx = mm->context;
1574
1575 if (new_ctx != NO_CONTEXT) {
1576 int savectx = sun4c_get_context();
1577 unsigned long flags;
1578
1579 local_irq_save(flags);
1580 sun4c_set_context(new_ctx);
1581 page &= PAGE_MASK;
1582 sun4c_flush_page(page);
1583 sun4c_put_pte(page, 0);
1584 sun4c_set_context(savectx);
1585 local_irq_restore(flags);
1586 }
1587}
1588
1589static inline void sun4c_mapioaddr(unsigned long physaddr, unsigned long virt_addr)
1590{
1591 unsigned long page_entry;
1592
1593 page_entry = ((physaddr >> PAGE_SHIFT) & SUN4C_PFN_MASK);
1594 page_entry |= ((pg_iobits | _SUN4C_PAGE_PRIV) & ~(_SUN4C_PAGE_PRESENT));
1595 sun4c_put_pte(virt_addr, page_entry);
1596}
1597
1598static void sun4c_mapiorange(unsigned int bus, unsigned long xpa,
1599 unsigned long xva, unsigned int len)
1600{
1601 while (len != 0) {
1602 len -= PAGE_SIZE;
1603 sun4c_mapioaddr(xpa, xva);
1604 xva += PAGE_SIZE;
1605 xpa += PAGE_SIZE;
1606 }
1607}
1608
1609static void sun4c_unmapiorange(unsigned long virt_addr, unsigned int len)
1610{
1611 while (len != 0) {
1612 len -= PAGE_SIZE;
1613 sun4c_put_pte(virt_addr, 0);
1614 virt_addr += PAGE_SIZE;
1615 }
1616}
1617
1618static void sun4c_alloc_context(struct mm_struct *old_mm, struct mm_struct *mm)
1619{
1620 struct ctx_list *ctxp;
1621
1622 ctxp = ctx_free.next;
1623 if (ctxp != &ctx_free) {
1624 remove_from_ctx_list(ctxp);
1625 add_to_used_ctxlist(ctxp);
1626 mm->context = ctxp->ctx_number;
1627 ctxp->ctx_mm = mm;
1628 return;
1629 }
1630 ctxp = ctx_used.next;
1631 if (ctxp->ctx_mm == old_mm)
1632 ctxp = ctxp->next;
1633 remove_from_ctx_list(ctxp);
1634 add_to_used_ctxlist(ctxp);
1635 ctxp->ctx_mm->context = NO_CONTEXT;
1636 ctxp->ctx_mm = mm;
1637 mm->context = ctxp->ctx_number;
1638 sun4c_demap_context(&sun4c_context_ring[ctxp->ctx_number],
1639 ctxp->ctx_number);
1640}
1641
1642
1643static void sun4c_switch_mm(struct mm_struct *old_mm, struct mm_struct *mm, struct task_struct *tsk, int cpu)
1644{
1645 struct ctx_list *ctx;
1646 int dirty = 0;
1647
1648 if (mm->context == NO_CONTEXT) {
1649 dirty = 1;
1650 sun4c_alloc_context(old_mm, mm);
1651 } else {
1652
1653 ctx = ctx_list_pool + mm->context;
1654 remove_from_ctx_list(ctx);
1655 add_to_used_ctxlist(ctx);
1656 }
1657 if (dirty || old_mm != mm)
1658 sun4c_set_context(mm->context);
1659}
1660
1661static void sun4c_destroy_context(struct mm_struct *mm)
1662{
1663 struct ctx_list *ctx_old;
1664
1665 if (mm->context != NO_CONTEXT) {
1666 sun4c_demap_context(&sun4c_context_ring[mm->context], mm->context);
1667 ctx_old = ctx_list_pool + mm->context;
1668 remove_from_ctx_list(ctx_old);
1669 add_to_free_ctxlist(ctx_old);
1670 mm->context = NO_CONTEXT;
1671 }
1672}
1673
1674static void sun4c_mmu_info(struct seq_file *m)
1675{
1676 int used_user_entries, i;
1677
1678 used_user_entries = 0;
1679 for (i = 0; i < num_contexts; i++)
1680 used_user_entries += sun4c_context_ring[i].num_entries;
1681
1682 seq_printf(m,
1683 "vacsize\t\t: %d bytes\n"
1684 "vachwflush\t: %s\n"
1685 "vaclinesize\t: %d bytes\n"
1686 "mmuctxs\t\t: %d\n"
1687 "mmupsegs\t: %d\n"
1688 "kernelpsegs\t: %d\n"
1689 "kfreepsegs\t: %d\n"
1690 "usedpsegs\t: %d\n"
1691 "ufreepsegs\t: %d\n"
1692 "user_taken\t: %d\n"
1693 "max_taken\t: %d\n",
1694 sun4c_vacinfo.num_bytes,
1695 (sun4c_vacinfo.do_hwflushes ? "yes" : "no"),
1696 sun4c_vacinfo.linesize,
1697 num_contexts,
1698 (invalid_segment + 1),
1699 sun4c_kernel_ring.num_entries,
1700 sun4c_kfree_ring.num_entries,
1701 used_user_entries,
1702 sun4c_ufree_ring.num_entries,
1703 sun4c_user_taken_entries,
1704 max_user_taken_entries);
1705}
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715#define PGD_PRESENT 0x001
1716#define PGD_RW 0x002
1717#define PGD_USER 0x004
1718#define PGD_ACCESSED 0x020
1719#define PGD_DIRTY 0x040
1720#define PGD_TABLE (PGD_PRESENT | PGD_RW | PGD_USER | PGD_ACCESSED | PGD_DIRTY)
1721
1722static void sun4c_set_pte(pte_t *ptep, pte_t pte)
1723{
1724 *ptep = pte;
1725}
1726
1727static void sun4c_pgd_set(pgd_t * pgdp, pmd_t * pmdp)
1728{
1729}
1730
1731static void sun4c_pmd_set(pmd_t * pmdp, pte_t * ptep)
1732{
1733 pmdp->pmdv[0] = PGD_TABLE | (unsigned long) ptep;
1734}
1735
1736static void sun4c_pmd_populate(pmd_t * pmdp, struct page * ptep)
1737{
1738 if (page_address(ptep) == NULL) BUG();
1739 pmdp->pmdv[0] = PGD_TABLE | (unsigned long) page_address(ptep);
1740}
1741
1742static int sun4c_pte_present(pte_t pte)
1743{
1744 return ((pte_val(pte) & (_SUN4C_PAGE_PRESENT | _SUN4C_PAGE_PRIV)) != 0);
1745}
1746static void sun4c_pte_clear(pte_t *ptep) { *ptep = __pte(0); }
1747
1748static int sun4c_pmd_bad(pmd_t pmd)
1749{
1750 return (((pmd_val(pmd) & ~PAGE_MASK) != PGD_TABLE) ||
1751 (!virt_addr_valid(pmd_val(pmd))));
1752}
1753
1754static int sun4c_pmd_present(pmd_t pmd)
1755{
1756 return ((pmd_val(pmd) & PGD_PRESENT) != 0);
1757}
1758
1759#if 0
1760static void sun4c_pmd_clear(pmd_t *pmdp) { *pmdp = __pmd(0); }
1761#else
1762static void sun4c_pmd_clear(pmd_t *pmdp) {
1763 memset((void *)pmdp, 0, sizeof(pmd_t));
1764}
1765#endif
1766
1767static int sun4c_pgd_none(pgd_t pgd) { return 0; }
1768static int sun4c_pgd_bad(pgd_t pgd) { return 0; }
1769static int sun4c_pgd_present(pgd_t pgd) { return 1; }
1770static void sun4c_pgd_clear(pgd_t * pgdp) { }
1771
1772
1773
1774
1775
1776static pte_t sun4c_pte_mkwrite(pte_t pte)
1777{
1778 pte = __pte(pte_val(pte) | _SUN4C_PAGE_WRITE);
1779 if (pte_val(pte) & _SUN4C_PAGE_MODIFIED)
1780 pte = __pte(pte_val(pte) | _SUN4C_PAGE_SILENT_WRITE);
1781 return pte;
1782}
1783
1784static pte_t sun4c_pte_mkdirty(pte_t pte)
1785{
1786 pte = __pte(pte_val(pte) | _SUN4C_PAGE_MODIFIED);
1787 if (pte_val(pte) & _SUN4C_PAGE_WRITE)
1788 pte = __pte(pte_val(pte) | _SUN4C_PAGE_SILENT_WRITE);
1789 return pte;
1790}
1791
1792static pte_t sun4c_pte_mkyoung(pte_t pte)
1793{
1794 pte = __pte(pte_val(pte) | _SUN4C_PAGE_ACCESSED);
1795 if (pte_val(pte) & _SUN4C_PAGE_READ)
1796 pte = __pte(pte_val(pte) | _SUN4C_PAGE_SILENT_READ);
1797 return pte;
1798}
1799
1800
1801
1802
1803
1804static pte_t sun4c_mk_pte(struct page *page, pgprot_t pgprot)
1805{
1806 return __pte(page_to_pfn(page) | pgprot_val(pgprot));
1807}
1808
1809static pte_t sun4c_mk_pte_phys(unsigned long phys_page, pgprot_t pgprot)
1810{
1811 return __pte((phys_page >> PAGE_SHIFT) | pgprot_val(pgprot));
1812}
1813
1814static pte_t sun4c_mk_pte_io(unsigned long page, pgprot_t pgprot, int space)
1815{
1816 return __pte(((page - PAGE_OFFSET) >> PAGE_SHIFT) | pgprot_val(pgprot));
1817}
1818
1819static unsigned long sun4c_pte_pfn(pte_t pte)
1820{
1821 return pte_val(pte) & SUN4C_PFN_MASK;
1822}
1823
1824static pte_t sun4c_pgoff_to_pte(unsigned long pgoff)
1825{
1826 return __pte(pgoff | _SUN4C_PAGE_FILE);
1827}
1828
1829static unsigned long sun4c_pte_to_pgoff(pte_t pte)
1830{
1831 return pte_val(pte) & ((1UL << PTE_FILE_MAX_BITS) - 1);
1832}
1833
1834
1835static __inline__ unsigned long sun4c_pmd_page_v(pmd_t pmd)
1836{
1837 return (pmd_val(pmd) & PAGE_MASK);
1838}
1839
1840static struct page *sun4c_pmd_page(pmd_t pmd)
1841{
1842 return virt_to_page(sun4c_pmd_page_v(pmd));
1843}
1844
1845static unsigned long sun4c_pgd_page(pgd_t pgd) { return 0; }
1846
1847
1848static inline pgd_t *sun4c_pgd_offset(struct mm_struct * mm, unsigned long address)
1849{
1850 return mm->pgd + (address >> SUN4C_PGDIR_SHIFT);
1851}
1852
1853
1854static pmd_t *sun4c_pmd_offset(pgd_t * dir, unsigned long address)
1855{
1856 return (pmd_t *) dir;
1857}
1858
1859
1860pte_t *sun4c_pte_offset_kernel(pmd_t * dir, unsigned long address)
1861{
1862 return (pte_t *) sun4c_pmd_page_v(*dir) +
1863 ((address >> PAGE_SHIFT) & (SUN4C_PTRS_PER_PTE - 1));
1864}
1865
1866static unsigned long sun4c_swp_type(swp_entry_t entry)
1867{
1868 return (entry.val & SUN4C_SWP_TYPE_MASK);
1869}
1870
1871static unsigned long sun4c_swp_offset(swp_entry_t entry)
1872{
1873 return (entry.val >> SUN4C_SWP_OFF_SHIFT) & SUN4C_SWP_OFF_MASK;
1874}
1875
1876static swp_entry_t sun4c_swp_entry(unsigned long type, unsigned long offset)
1877{
1878 return (swp_entry_t) {
1879 (offset & SUN4C_SWP_OFF_MASK) << SUN4C_SWP_OFF_SHIFT
1880 | (type & SUN4C_SWP_TYPE_MASK) };
1881}
1882
1883static void sun4c_free_pte_slow(pte_t *pte)
1884{
1885 free_page((unsigned long)pte);
1886}
1887
1888static void sun4c_free_pgd_slow(pgd_t *pgd)
1889{
1890 free_page((unsigned long)pgd);
1891}
1892
1893static pgd_t *sun4c_get_pgd_fast(void)
1894{
1895 unsigned long *ret;
1896
1897 if ((ret = pgd_quicklist) != NULL) {
1898 pgd_quicklist = (unsigned long *)(*ret);
1899 ret[0] = ret[1];
1900 pgtable_cache_size--;
1901 } else {
1902 pgd_t *init;
1903
1904 ret = (unsigned long *)__get_free_page(GFP_KERNEL);
1905 memset (ret, 0, (KERNBASE / SUN4C_PGDIR_SIZE) * sizeof(pgd_t));
1906 init = sun4c_pgd_offset(&init_mm, 0);
1907 memcpy (((pgd_t *)ret) + USER_PTRS_PER_PGD, init + USER_PTRS_PER_PGD,
1908 (PTRS_PER_PGD - USER_PTRS_PER_PGD) * sizeof(pgd_t));
1909 }
1910 return (pgd_t *)ret;
1911}
1912
1913static void sun4c_free_pgd_fast(pgd_t *pgd)
1914{
1915 *(unsigned long *)pgd = (unsigned long) pgd_quicklist;
1916 pgd_quicklist = (unsigned long *) pgd;
1917 pgtable_cache_size++;
1918}
1919
1920
1921static __inline__ pte_t *
1922sun4c_pte_alloc_one_fast(struct mm_struct *mm, unsigned long address)
1923{
1924 unsigned long *ret;
1925
1926 if ((ret = (unsigned long *)pte_quicklist) != NULL) {
1927 pte_quicklist = (unsigned long *)(*ret);
1928 ret[0] = ret[1];
1929 pgtable_cache_size--;
1930 }
1931 return (pte_t *)ret;
1932}
1933
1934static pte_t *sun4c_pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
1935{
1936 pte_t *pte;
1937
1938 if ((pte = sun4c_pte_alloc_one_fast(mm, address)) != NULL)
1939 return pte;
1940
1941 pte = (pte_t *)__get_free_page(GFP_KERNEL|__GFP_REPEAT);
1942 if (pte)
1943 memset(pte, 0, PAGE_SIZE);
1944 return pte;
1945}
1946
1947static struct page *sun4c_pte_alloc_one(struct mm_struct *mm, unsigned long address)
1948{
1949 pte_t *pte = sun4c_pte_alloc_one_kernel(mm, address);
1950 if (pte == NULL)
1951 return NULL;
1952 return virt_to_page(pte);
1953}
1954
1955static __inline__ void sun4c_free_pte_fast(pte_t *pte)
1956{
1957 *(unsigned long *)pte = (unsigned long) pte_quicklist;
1958 pte_quicklist = (unsigned long *) pte;
1959 pgtable_cache_size++;
1960}
1961
1962static void sun4c_pte_free(struct page *pte)
1963{
1964 sun4c_free_pte_fast(page_address(pte));
1965}
1966
1967
1968
1969
1970
1971static pmd_t *sun4c_pmd_alloc_one(struct mm_struct *mm, unsigned long address)
1972{
1973 BUG();
1974 return NULL;
1975}
1976
1977static void sun4c_free_pmd_fast(pmd_t * pmd) { }
1978
1979static void sun4c_check_pgt_cache(int low, int high)
1980{
1981 if (pgtable_cache_size > high) {
1982 do {
1983 if (pgd_quicklist)
1984 sun4c_free_pgd_slow(sun4c_get_pgd_fast());
1985 if (pte_quicklist)
1986 sun4c_free_pte_slow(sun4c_pte_alloc_one_fast(NULL, 0));
1987 } while (pgtable_cache_size > low);
1988 }
1989}
1990
1991
1992#define SUN4C_PRELOAD_PSEG
1993
1994void sun4c_update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t pte)
1995{
1996 unsigned long flags;
1997 int pseg;
1998
1999 local_irq_save(flags);
2000 address &= PAGE_MASK;
2001 if ((pseg = sun4c_get_segmap(address)) == invalid_segment) {
2002 struct sun4c_mmu_entry *entry = sun4c_user_strategy();
2003 struct mm_struct *mm = vma->vm_mm;
2004 unsigned long start, end;
2005
2006 entry->vaddr = start = (address & SUN4C_REAL_PGDIR_MASK);
2007 entry->ctx = mm->context;
2008 add_ring_ordered(sun4c_context_ring + mm->context, entry);
2009 sun4c_put_segmap(entry->vaddr, entry->pseg);
2010 end = start + SUN4C_REAL_PGDIR_SIZE;
2011 while (start < end) {
2012#ifdef SUN4C_PRELOAD_PSEG
2013 pgd_t *pgdp = sun4c_pgd_offset(mm, start);
2014 pte_t *ptep;
2015
2016 if (!pgdp)
2017 goto no_mapping;
2018 ptep = sun4c_pte_offset_kernel((pmd_t *) pgdp, start);
2019 if (!ptep || !(pte_val(*ptep) & _SUN4C_PAGE_PRESENT))
2020 goto no_mapping;
2021 sun4c_put_pte(start, pte_val(*ptep));
2022 goto next;
2023
2024 no_mapping:
2025#endif
2026 sun4c_put_pte(start, 0);
2027#ifdef SUN4C_PRELOAD_PSEG
2028 next:
2029#endif
2030 start += PAGE_SIZE;
2031 }
2032#ifndef SUN4C_PRELOAD_PSEG
2033 sun4c_put_pte(address, pte_val(pte));
2034#endif
2035 local_irq_restore(flags);
2036 return;
2037 } else {
2038 struct sun4c_mmu_entry *entry = &mmu_entry_pool[pseg];
2039
2040 remove_lru(entry);
2041 add_lru(entry);
2042 }
2043
2044 sun4c_put_pte(address, pte_val(pte));
2045 local_irq_restore(flags);
2046}
2047
2048extern void sparc_context_init(int);
2049extern unsigned long end;
2050extern unsigned long bootmem_init(unsigned long *pages_avail);
2051extern unsigned long last_valid_pfn;
2052
2053void __init sun4c_paging_init(void)
2054{
2055 int i, cnt;
2056 unsigned long kernel_end, vaddr;
2057 extern struct resource sparc_iomap;
2058 unsigned long end_pfn, pages_avail;
2059
2060 kernel_end = (unsigned long) &end;
2061 kernel_end += (SUN4C_REAL_PGDIR_SIZE * 4);
2062 kernel_end = SUN4C_REAL_PGDIR_ALIGN(kernel_end);
2063
2064 pages_avail = 0;
2065 last_valid_pfn = bootmem_init(&pages_avail);
2066 end_pfn = last_valid_pfn;
2067
2068 sun4c_probe_mmu();
2069 invalid_segment = (num_segmaps - 1);
2070 sun4c_init_mmu_entry_pool();
2071 sun4c_init_rings();
2072 sun4c_init_map_kernelprom(kernel_end);
2073 sun4c_init_clean_mmu(kernel_end);
2074 sun4c_init_fill_kernel_ring(SUN4C_KERNEL_BUCKETS);
2075 sun4c_init_lock_area(sparc_iomap.start, IOBASE_END);
2076 sun4c_init_lock_area(DVMA_VADDR, DVMA_END);
2077 sun4c_init_lock_areas();
2078 sun4c_init_fill_user_ring();
2079
2080 sun4c_set_context(0);
2081 memset(swapper_pg_dir, 0, PAGE_SIZE);
2082 memset(pg0, 0, PAGE_SIZE);
2083 memset(pg1, 0, PAGE_SIZE);
2084 memset(pg2, 0, PAGE_SIZE);
2085 memset(pg3, 0, PAGE_SIZE);
2086
2087
2088 vaddr = VMALLOC_START;
2089 swapper_pg_dir[vaddr>>SUN4C_PGDIR_SHIFT] = __pgd(PGD_TABLE | (unsigned long) pg0);
2090 vaddr += SUN4C_PGDIR_SIZE;
2091 swapper_pg_dir[vaddr>>SUN4C_PGDIR_SHIFT] = __pgd(PGD_TABLE | (unsigned long) pg1);
2092 vaddr += SUN4C_PGDIR_SIZE;
2093 swapper_pg_dir[vaddr>>SUN4C_PGDIR_SHIFT] = __pgd(PGD_TABLE | (unsigned long) pg2);
2094 vaddr += SUN4C_PGDIR_SIZE;
2095 swapper_pg_dir[vaddr>>SUN4C_PGDIR_SHIFT] = __pgd(PGD_TABLE | (unsigned long) pg3);
2096 sun4c_init_ss2_cache_bug();
2097 sparc_context_init(num_contexts);
2098
2099 {
2100 unsigned long zones_size[MAX_NR_ZONES];
2101 unsigned long zholes_size[MAX_NR_ZONES];
2102 unsigned long npages;
2103 int znum;
2104
2105 for (znum = 0; znum < MAX_NR_ZONES; znum++)
2106 zones_size[znum] = zholes_size[znum] = 0;
2107
2108 npages = max_low_pfn - pfn_base;
2109
2110 zones_size[ZONE_DMA] = npages;
2111 zholes_size[ZONE_DMA] = npages - pages_avail;
2112
2113 npages = highend_pfn - max_low_pfn;
2114 zones_size[ZONE_HIGHMEM] = npages;
2115 zholes_size[ZONE_HIGHMEM] = npages - calc_highpages();
2116
2117 free_area_init_node(0, &contig_page_data, NULL, zones_size,
2118 pfn_base, zholes_size);
2119 mem_map = contig_page_data.node_mem_map;
2120 }
2121
2122 cnt = 0;
2123 for (i = 0; i < num_segmaps; i++)
2124 if (mmu_entry_pool[i].locked)
2125 cnt++;
2126
2127 max_user_taken_entries = num_segmaps - cnt - 40 - 1;
2128
2129 printk("SUN4C: %d mmu entries for the kernel\n", cnt);
2130}
2131
2132
2133void __init ld_mmu_sun4c(void)
2134{
2135 extern void ___xchg32_sun4c(void);
2136
2137 printk("Loading sun4c MMU routines\n");
2138
2139
2140 BTFIXUPSET_SIMM13(pgdir_shift, SUN4C_PGDIR_SHIFT);
2141 BTFIXUPSET_SETHI(pgdir_size, SUN4C_PGDIR_SIZE);
2142 BTFIXUPSET_SETHI(pgdir_mask, SUN4C_PGDIR_MASK);
2143
2144 BTFIXUPSET_SIMM13(ptrs_per_pmd, SUN4C_PTRS_PER_PMD);
2145 BTFIXUPSET_SIMM13(ptrs_per_pgd, SUN4C_PTRS_PER_PGD);
2146 BTFIXUPSET_SIMM13(user_ptrs_per_pgd, KERNBASE / SUN4C_PGDIR_SIZE);
2147
2148 BTFIXUPSET_INT(page_none, pgprot_val(SUN4C_PAGE_NONE));
2149 BTFIXUPSET_INT(page_shared, pgprot_val(SUN4C_PAGE_SHARED));
2150 BTFIXUPSET_INT(page_copy, pgprot_val(SUN4C_PAGE_COPY));
2151 BTFIXUPSET_INT(page_readonly, pgprot_val(SUN4C_PAGE_READONLY));
2152 BTFIXUPSET_INT(page_kernel, pgprot_val(SUN4C_PAGE_KERNEL));
2153 page_kernel = pgprot_val(SUN4C_PAGE_KERNEL);
2154 pg_iobits = _SUN4C_PAGE_PRESENT | _SUN4C_READABLE | _SUN4C_WRITEABLE |
2155 _SUN4C_PAGE_IO | _SUN4C_PAGE_NOCACHE;
2156
2157
2158 BTFIXUPSET_CALL(___xchg32, ___xchg32_sun4c, BTFIXUPCALL_NORM);
2159 BTFIXUPSET_CALL(do_check_pgt_cache, sun4c_check_pgt_cache, BTFIXUPCALL_NORM);
2160
2161 BTFIXUPSET_CALL(flush_cache_all, sun4c_flush_cache_all, BTFIXUPCALL_NORM);
2162
2163 if (sun4c_vacinfo.do_hwflushes) {
2164 BTFIXUPSET_CALL(sun4c_flush_page, sun4c_flush_page_hw, BTFIXUPCALL_NORM);
2165 BTFIXUPSET_CALL(sun4c_flush_segment, sun4c_flush_segment_hw, BTFIXUPCALL_NORM);
2166 BTFIXUPSET_CALL(sun4c_flush_context, sun4c_flush_context_hw, BTFIXUPCALL_NORM);
2167 } else {
2168 BTFIXUPSET_CALL(sun4c_flush_page, sun4c_flush_page_sw, BTFIXUPCALL_NORM);
2169 BTFIXUPSET_CALL(sun4c_flush_segment, sun4c_flush_segment_sw, BTFIXUPCALL_NORM);
2170 BTFIXUPSET_CALL(sun4c_flush_context, sun4c_flush_context_sw, BTFIXUPCALL_NORM);
2171 }
2172
2173 BTFIXUPSET_CALL(flush_tlb_mm, sun4c_flush_tlb_mm, BTFIXUPCALL_NORM);
2174 BTFIXUPSET_CALL(flush_cache_mm, sun4c_flush_cache_mm, BTFIXUPCALL_NORM);
2175 BTFIXUPSET_CALL(destroy_context, sun4c_destroy_context, BTFIXUPCALL_NORM);
2176 BTFIXUPSET_CALL(switch_mm, sun4c_switch_mm, BTFIXUPCALL_NORM);
2177 BTFIXUPSET_CALL(flush_cache_page, sun4c_flush_cache_page, BTFIXUPCALL_NORM);
2178 BTFIXUPSET_CALL(flush_tlb_page, sun4c_flush_tlb_page, BTFIXUPCALL_NORM);
2179 BTFIXUPSET_CALL(flush_tlb_range, sun4c_flush_tlb_range, BTFIXUPCALL_NORM);
2180 BTFIXUPSET_CALL(flush_cache_range, sun4c_flush_cache_range, BTFIXUPCALL_NORM);
2181 BTFIXUPSET_CALL(__flush_page_to_ram, sun4c_flush_page_to_ram, BTFIXUPCALL_NORM);
2182 BTFIXUPSET_CALL(flush_tlb_all, sun4c_flush_tlb_all, BTFIXUPCALL_NORM);
2183
2184 BTFIXUPSET_CALL(flush_sig_insns, sun4c_flush_sig_insns, BTFIXUPCALL_NOP);
2185
2186 BTFIXUPSET_CALL(set_pte, sun4c_set_pte, BTFIXUPCALL_STO1O0);
2187
2188
2189
2190
2191 BTFIXUPSET_CALL(pte_pfn, sun4c_pte_pfn, BTFIXUPCALL_NORM);
2192#if 0
2193 BTFIXUPSET_CALL(pmd_page, sun4c_pmd_page, BTFIXUPCALL_ANDNINT(PAGE_SIZE - 1));
2194#else
2195 BTFIXUPSET_CALL(pmd_page, sun4c_pmd_page, BTFIXUPCALL_NORM);
2196#endif
2197 BTFIXUPSET_CALL(pmd_set, sun4c_pmd_set, BTFIXUPCALL_NORM);
2198 BTFIXUPSET_CALL(pmd_populate, sun4c_pmd_populate, BTFIXUPCALL_NORM);
2199
2200 BTFIXUPSET_CALL(pte_present, sun4c_pte_present, BTFIXUPCALL_NORM);
2201 BTFIXUPSET_CALL(pte_clear, sun4c_pte_clear, BTFIXUPCALL_STG0O0);
2202
2203 BTFIXUPSET_CALL(pmd_bad, sun4c_pmd_bad, BTFIXUPCALL_NORM);
2204 BTFIXUPSET_CALL(pmd_present, sun4c_pmd_present, BTFIXUPCALL_NORM);
2205 BTFIXUPSET_CALL(pmd_clear, sun4c_pmd_clear, BTFIXUPCALL_STG0O0);
2206
2207 BTFIXUPSET_CALL(pgd_none, sun4c_pgd_none, BTFIXUPCALL_RETINT(0));
2208 BTFIXUPSET_CALL(pgd_bad, sun4c_pgd_bad, BTFIXUPCALL_RETINT(0));
2209 BTFIXUPSET_CALL(pgd_present, sun4c_pgd_present, BTFIXUPCALL_RETINT(1));
2210 BTFIXUPSET_CALL(pgd_clear, sun4c_pgd_clear, BTFIXUPCALL_NOP);
2211
2212 BTFIXUPSET_CALL(mk_pte, sun4c_mk_pte, BTFIXUPCALL_NORM);
2213 BTFIXUPSET_CALL(mk_pte_phys, sun4c_mk_pte_phys, BTFIXUPCALL_NORM);
2214 BTFIXUPSET_CALL(mk_pte_io, sun4c_mk_pte_io, BTFIXUPCALL_NORM);
2215
2216 BTFIXUPSET_INT(pte_modify_mask, _SUN4C_PAGE_CHG_MASK);
2217 BTFIXUPSET_CALL(pmd_offset, sun4c_pmd_offset, BTFIXUPCALL_NORM);
2218 BTFIXUPSET_CALL(pte_offset_kernel, sun4c_pte_offset_kernel, BTFIXUPCALL_NORM);
2219 BTFIXUPSET_CALL(free_pte_fast, sun4c_free_pte_fast, BTFIXUPCALL_NORM);
2220 BTFIXUPSET_CALL(pte_free, sun4c_pte_free, BTFIXUPCALL_NORM);
2221 BTFIXUPSET_CALL(pte_alloc_one_kernel, sun4c_pte_alloc_one_kernel, BTFIXUPCALL_NORM);
2222 BTFIXUPSET_CALL(pte_alloc_one, sun4c_pte_alloc_one, BTFIXUPCALL_NORM);
2223 BTFIXUPSET_CALL(free_pmd_fast, sun4c_free_pmd_fast, BTFIXUPCALL_NOP);
2224 BTFIXUPSET_CALL(pmd_alloc_one, sun4c_pmd_alloc_one, BTFIXUPCALL_RETO0);
2225 BTFIXUPSET_CALL(free_pgd_fast, sun4c_free_pgd_fast, BTFIXUPCALL_NORM);
2226 BTFIXUPSET_CALL(get_pgd_fast, sun4c_get_pgd_fast, BTFIXUPCALL_NORM);
2227
2228 BTFIXUPSET_HALF(pte_writei, _SUN4C_PAGE_WRITE);
2229 BTFIXUPSET_HALF(pte_dirtyi, _SUN4C_PAGE_MODIFIED);
2230 BTFIXUPSET_HALF(pte_youngi, _SUN4C_PAGE_ACCESSED);
2231 BTFIXUPSET_HALF(pte_filei, _SUN4C_PAGE_FILE);
2232 BTFIXUPSET_HALF(pte_wrprotecti, _SUN4C_PAGE_WRITE|_SUN4C_PAGE_SILENT_WRITE);
2233 BTFIXUPSET_HALF(pte_mkcleani, _SUN4C_PAGE_MODIFIED|_SUN4C_PAGE_SILENT_WRITE);
2234 BTFIXUPSET_HALF(pte_mkoldi, _SUN4C_PAGE_ACCESSED|_SUN4C_PAGE_SILENT_READ);
2235 BTFIXUPSET_CALL(pte_mkwrite, sun4c_pte_mkwrite, BTFIXUPCALL_NORM);
2236 BTFIXUPSET_CALL(pte_mkdirty, sun4c_pte_mkdirty, BTFIXUPCALL_NORM);
2237 BTFIXUPSET_CALL(pte_mkyoung, sun4c_pte_mkyoung, BTFIXUPCALL_NORM);
2238 BTFIXUPSET_CALL(update_mmu_cache, sun4c_update_mmu_cache, BTFIXUPCALL_NORM);
2239
2240 BTFIXUPSET_CALL(pte_to_pgoff, sun4c_pte_to_pgoff, BTFIXUPCALL_NORM);
2241 BTFIXUPSET_CALL(pgoff_to_pte, sun4c_pgoff_to_pte, BTFIXUPCALL_NORM);
2242
2243 BTFIXUPSET_CALL(mmu_lockarea, sun4c_lockarea, BTFIXUPCALL_NORM);
2244 BTFIXUPSET_CALL(mmu_unlockarea, sun4c_unlockarea, BTFIXUPCALL_NORM);
2245
2246 BTFIXUPSET_CALL(mmu_get_scsi_one, sun4c_get_scsi_one, BTFIXUPCALL_NORM);
2247 BTFIXUPSET_CALL(mmu_get_scsi_sgl, sun4c_get_scsi_sgl, BTFIXUPCALL_NORM);
2248 BTFIXUPSET_CALL(mmu_release_scsi_one, sun4c_release_scsi_one, BTFIXUPCALL_NORM);
2249 BTFIXUPSET_CALL(mmu_release_scsi_sgl, sun4c_release_scsi_sgl, BTFIXUPCALL_NORM);
2250
2251 BTFIXUPSET_CALL(mmu_map_dma_area, sun4c_map_dma_area, BTFIXUPCALL_NORM);
2252 BTFIXUPSET_CALL(mmu_unmap_dma_area, sun4c_unmap_dma_area, BTFIXUPCALL_NORM);
2253 BTFIXUPSET_CALL(mmu_translate_dvma, sun4c_translate_dvma, BTFIXUPCALL_NORM);
2254
2255 BTFIXUPSET_CALL(sparc_mapiorange, sun4c_mapiorange, BTFIXUPCALL_NORM);
2256 BTFIXUPSET_CALL(sparc_unmapiorange, sun4c_unmapiorange, BTFIXUPCALL_NORM);
2257
2258 BTFIXUPSET_CALL(__swp_type, sun4c_swp_type, BTFIXUPCALL_NORM);
2259 BTFIXUPSET_CALL(__swp_offset, sun4c_swp_offset, BTFIXUPCALL_NORM);
2260 BTFIXUPSET_CALL(__swp_entry, sun4c_swp_entry, BTFIXUPCALL_NORM);
2261
2262 BTFIXUPSET_CALL(alloc_thread_info, sun4c_alloc_thread_info, BTFIXUPCALL_NORM);
2263 BTFIXUPSET_CALL(free_thread_info, sun4c_free_thread_info, BTFIXUPCALL_NORM);
2264
2265 BTFIXUPSET_CALL(mmu_info, sun4c_mmu_info, BTFIXUPCALL_NORM);
2266
2267
2268 BTFIXUPSET_CALL(pgd_set, sun4c_pgd_set, BTFIXUPCALL_NOP);
2269 BTFIXUPSET_CALL(pgd_page, sun4c_pgd_page, BTFIXUPCALL_RETO0);
2270}
2271