ae6217c86135aca52eff19d919e294a4dd5b86b6
[safe/jmp/linux-2.6] / arch / um / kernel / tt / tlb.c
1 /* 
2  * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3  * Copyright 2003 PathScale, Inc.
4  * Licensed under the GPL
5  */
6
7 #include "linux/stddef.h"
8 #include "linux/kernel.h"
9 #include "linux/sched.h"
10 #include "linux/mm.h"
11 #include "asm/page.h"
12 #include "asm/pgtable.h"
13 #include "asm/uaccess.h"
14 #include "asm/tlbflush.h"
15 #include "user_util.h"
16 #include "mem_user.h"
17 #include "os.h"
18 #include "tlb.h"
19
20 static int do_ops(union mm_context *mmu, struct host_vm_op *ops, int last,
21                     int finished, void **flush)
22 {
23         struct host_vm_op *op;
24         int i, ret=0;
25
26         for(i = 0; i <= last && !ret; i++){
27                 op = &ops[i];
28                 switch(op->type){
29                 case MMAP:
30                         ret = os_map_memory((void *) op->u.mmap.addr,
31                                             op->u.mmap.fd, op->u.mmap.offset,
32                                             op->u.mmap.len, op->u.mmap.r,
33                                             op->u.mmap.w, op->u.mmap.x);
34                         break;
35                 case MUNMAP:
36                         ret = os_unmap_memory((void *) op->u.munmap.addr,
37                                               op->u.munmap.len);
38                         break;
39                 case MPROTECT:
40                         ret = protect_memory(op->u.mprotect.addr,
41                                              op->u.munmap.len,
42                                              op->u.mprotect.r,
43                                              op->u.mprotect.w,
44                                              op->u.mprotect.x, 1);
45                         protect_memory(op->u.mprotect.addr, op->u.munmap.len,
46                                        op->u.mprotect.r, op->u.mprotect.w,
47                                        op->u.mprotect.x, 1);
48                         break;
49                 default:
50                         printk("Unknown op type %d in do_ops\n", op->type);
51                         break;
52                 }
53         }
54
55         return ret;
56 }
57
58 static void fix_range(struct mm_struct *mm, unsigned long start_addr, 
59                       unsigned long end_addr, int force)
60 {
61         if((current->thread.mode.tt.extern_pid != -1) &&
62            (current->thread.mode.tt.extern_pid != os_getpid()))
63                 panic("fix_range fixing wrong address space, current = 0x%p",
64                       current);
65
66         fix_range_common(mm, start_addr, end_addr, force, do_ops);
67 }
68
69 atomic_t vmchange_seq = ATOMIC_INIT(1);
70
71 void flush_tlb_kernel_range_tt(unsigned long start, unsigned long end)
72 {
73         if(flush_tlb_kernel_range_common(start, end))
74                 atomic_inc(&vmchange_seq);
75 }
76
77 void flush_tlb_kernel_vm_tt(void)
78 {
79         flush_tlb_kernel_range(start_vm, end_vm);
80 }
81
82 void __flush_tlb_one_tt(unsigned long addr)
83 {
84         flush_tlb_kernel_range(addr, addr + PAGE_SIZE);
85 }
86   
87 void flush_tlb_range_tt(struct vm_area_struct *vma, unsigned long start, 
88                      unsigned long end)
89 {
90         if(vma->vm_mm != current->mm) return;
91
92         /* Assumes that the range start ... end is entirely within
93          * either process memory or kernel vm
94          */
95         if((start >= start_vm) && (start < end_vm)){
96                 if(flush_tlb_kernel_range_common(start, end))
97                         atomic_inc(&vmchange_seq);
98         }
99         else fix_range(vma->vm_mm, start, end, 0);
100 }
101
102 void flush_tlb_mm_tt(struct mm_struct *mm)
103 {
104         unsigned long seq;
105
106         if(mm != current->mm) return;
107
108         fix_range(mm, 0, STACK_TOP, 0);
109
110         seq = atomic_read(&vmchange_seq);
111         if(current->thread.mode.tt.vm_seq == seq)
112                 return;
113         current->thread.mode.tt.vm_seq = seq;
114         flush_tlb_kernel_range_common(start_vm, end_vm);
115 }
116
117 void force_flush_all_tt(void)
118 {
119         fix_range(current->mm, 0, STACK_TOP, 1);
120         flush_tlb_kernel_range_common(start_vm, end_vm);
121 }