Merge from vendor branch CVS:
[dragonfly.git] / sys / sys / vkernel.h
1 /*
2  * Copyright (c) 2006 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  * $DragonFly: src/sys/sys/vkernel.h,v 1.1 2006/09/12 22:03:11 dillon Exp $
35  */
36
37 #ifndef _SYS_VKERNEL_H_
38 #define _SYS_VKERNEL_H_
39
40 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
41 /*
42  * KERNEL ONLY DEFINITIONS
43  */
44
45 #ifndef _SYS_PARAM_H_
46 #include <sys/param.h>
47 #endif
48 #ifndef _SYS_SYSTM_H_
49 #include <sys/systm.h>
50 #endif
51 #ifndef _SYS_KERNEL_H_
52 #include <sys/kernel.h>
53 #endif
54 #ifndef _SYS_QUEUE_H_
55 #include <sys/queue.h>
56 #endif
57 #ifndef _SYS_TREE_H_
58 #include <sys/tree.h>
59 #endif
60 #ifndef _SYS_PROC_H_
61 #include <sys/proc.h>
62 #endif
63 #ifndef _SYS_SPINLOCK_H_
64 #include <sys/spinlock.h>
65 #endif
66 #ifndef _SYS_KTR_H_
67 #include <sys/ktr.h>
68 #endif
69
70 #ifndef _VM_VM_MAP_H_
71 #include <vm/vm_map.h>
72 #endif
73
74 #ifndef _SYS_THREAD2_H_
75 #include <sys/thread2.h>
76 #endif
77 #ifndef _SYS_SPINLOCK2_H_
78 #include <sys/spinlock2.h>
79 #endif
80
81 struct vmspace_rb_tree;
82 struct vmspace_entry;
83 RB_PROTOTYPE(vmspace_rb_tree, vmspace_entry, rb_entry, rb_vmspace_compare);
84
85 struct vkernel {
86         RB_HEAD(vmspace_rb_tree, vmspace_entry) vk_root;
87         struct vmspace *vk_orig_vmspace;        /* vkernel's vmspace */
88         struct vmspace_entry *vk_vvmspace;      /* selected vmspace */
89         struct spinlock vk_spin;
90         int vk_refs;
91 };
92
93 struct vmspace_entry {
94         void *id;
95         struct vmspace *vmspace;
96         RB_ENTRY(vmspace_entry) rb_entry;
97 };
98
99 #ifdef _KERNEL
100 void vkernel_hold(struct vkernel *vk);
101 void vkernel_drop(struct vkernel *vk);
102 #endif
103
104 #else
105 /*
106  * USER ONLY DEFINITIONS
107  */
108
109 #ifndef _MACHINE_PARAM_H_
110 #include <machine/param.h>
111 #endif
112
113 #endif
114
115 /*
116  * KERNEL AND USER DEFINITIONS
117  */
118
119 typedef u_int32_t       vpte_t;
120
121 #define VPTE_PAGE_ENTRIES       (PAGE_SIZE / sizeof(vpte_t))
122
123 #define VPTE_IV         0x00000001      /* inverted valid bit (TEMPORARY) */
124 #define VPTE_PS         0x00000002
125
126 #endif
127