2 * MMU context allocation for 64-bit kernels.
4 * Copyright (C) 2004 Anton Blanchard, IBM Corp. <anton@samba.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
13 #include <linux/sched.h>
14 #include <linux/kernel.h>
15 #include <linux/errno.h>
16 #include <linux/string.h>
17 #include <linux/types.h>
19 #include <linux/spinlock.h>
20 #include <linux/idr.h>
21 #include <linux/module.h>
23 #include <asm/mmu_context.h>
25 static DEFINE_SPINLOCK(mmu_context_lock
);
26 static DEFINE_IDR(mmu_context_idr
);
29 * The proto-VSID space has 2^35 - 1 segments available for user mappings.
30 * Each segment contains 2^28 bytes. Each context maps 2^44 bytes,
31 * so we can support 2^19-1 contexts (19 == 35 + 28 - 44).
34 #define MAX_CONTEXT ((1UL << 19) - 1)
36 int __init_new_context(void)
42 if (!idr_pre_get(&mmu_context_idr
, GFP_KERNEL
))
45 spin_lock(&mmu_context_lock
);
46 err
= idr_get_new_above(&mmu_context_idr
, NULL
, 1, &index
);
47 spin_unlock(&mmu_context_lock
);
54 if (index
> MAX_CONTEXT
) {
55 spin_lock(&mmu_context_lock
);
56 idr_remove(&mmu_context_idr
, index
);
57 spin_unlock(&mmu_context_lock
);
63 EXPORT_SYMBOL_GPL(__init_new_context
);
65 int init_new_context(struct task_struct
*tsk
, struct mm_struct
*mm
)
69 index
= __init_new_context();
73 /* The old code would re-promote on fork, we don't do that
74 * when using slices as it could cause problem promoting slices
75 * that have been forced down to 4K
77 if (slice_mm_new_context(mm
))
78 slice_set_user_psize(mm
, mmu_virtual_psize
);
79 subpage_prot_init_new_context(mm
);
80 mm
->context
.id
= index
;
85 void __destroy_context(int context_id
)
87 spin_lock(&mmu_context_lock
);
88 idr_remove(&mmu_context_idr
, context_id
);
89 spin_unlock(&mmu_context_lock
);
91 EXPORT_SYMBOL_GPL(__destroy_context
);
93 void destroy_context(struct mm_struct
*mm
)
95 __destroy_context(mm
->context
.id
);
96 subpage_prot_free(mm
);
97 mm
->context
.id
= NO_CONTEXT
;