blob: 6e84963dfc29e99c93bcdfe1cd2e11c1103c9310 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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/sched.h"
Jeff Diked67b5692005-07-07 17:56:49 -07009#include "linux/config.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include "linux/mm.h"
11#include "asm/page.h"
12#include "asm/pgtable.h"
13#include "asm/mmu.h"
14#include "user_util.h"
15#include "mem_user.h"
16#include "mem.h"
17#include "skas.h"
18#include "os.h"
19#include "tlb.h"
20
Bodo Stroesser07bf7312005-09-03 15:57:50 -070021static int do_ops(union mm_context *mmu, struct host_vm_op *ops, int last,
22 int finished, void **flush)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023{
24 struct host_vm_op *op;
Bodo Stroesser07bf7312005-09-03 15:57:50 -070025 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Bodo Stroesser07bf7312005-09-03 15:57:50 -070027 for(i = 0; i <= last && !ret; i++){
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 op = &ops[i];
29 switch(op->type){
30 case MMAP:
Bodo Stroesser07bf7312005-09-03 15:57:50 -070031 ret = map(&mmu->skas.id, op->u.mmap.addr,
32 op->u.mmap.len, op->u.mmap.r, op->u.mmap.w,
33 op->u.mmap.x, op->u.mmap.fd,
34 op->u.mmap.offset, finished, flush);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 break;
36 case MUNMAP:
Bodo Stroesser07bf7312005-09-03 15:57:50 -070037 ret = unmap(&mmu->skas.id,
38 (void *) op->u.munmap.addr,
39 op->u.munmap.len, finished, flush);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 break;
41 case MPROTECT:
Bodo Stroesser07bf7312005-09-03 15:57:50 -070042 ret = protect(&mmu->skas.id, op->u.mprotect.addr,
43 op->u.mprotect.len, op->u.mprotect.r,
44 op->u.mprotect.w, op->u.mprotect.x,
45 finished, flush);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 break;
47 default:
48 printk("Unknown op type %d in do_ops\n", op->type);
49 break;
50 }
51 }
Jeff Dikec5600492005-09-03 15:57:36 -070052
Bodo Stroesser07bf7312005-09-03 15:57:50 -070053 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
Jeff Diked67b5692005-07-07 17:56:49 -070056extern int proc_mm;
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static void fix_range(struct mm_struct *mm, unsigned long start_addr,
59 unsigned long end_addr, int force)
60{
Jeff Diked67b5692005-07-07 17:56:49 -070061 if(!proc_mm && (end_addr > CONFIG_STUB_START))
62 end_addr = CONFIG_STUB_START;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Jeff Diked67b5692005-07-07 17:56:49 -070064 fix_range_common(mm, start_addr, end_addr, force, do_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67void __flush_tlb_one_skas(unsigned long addr)
68{
69 flush_tlb_kernel_range_common(addr, addr + PAGE_SIZE);
70}
71
72void flush_tlb_range_skas(struct vm_area_struct *vma, unsigned long start,
73 unsigned long end)
74{
75 if(vma->vm_mm == NULL)
76 flush_tlb_kernel_range_common(start, end);
77 else fix_range(vma->vm_mm, start, end, 0);
78}
79
80void flush_tlb_mm_skas(struct mm_struct *mm)
81{
Jeff Diked67b5692005-07-07 17:56:49 -070082 unsigned long end;
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 /* Don't bother flushing if this address space is about to be
85 * destroyed.
86 */
87 if(atomic_read(&mm->mm_users) == 0)
88 return;
89
Jeff Diked67b5692005-07-07 17:56:49 -070090 end = proc_mm ? task_size : CONFIG_STUB_START;
91 fix_range(mm, 0, end, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94void force_flush_all_skas(void)
95{
Jeff Diked67b5692005-07-07 17:56:49 -070096 unsigned long end = proc_mm ? task_size : CONFIG_STUB_START;
97 fix_range(current->mm, 0, end, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}