pmap.h revision 1.16 1 1.16 thorpej /* $NetBSD: pmap.h,v 1.16 1998/05/19 00:20:21 thorpej Exp $ */
2 1.1 cgd
3 1.11 thorpej /*-
4 1.11 thorpej * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 1.11 thorpej * All rights reserved.
6 1.11 thorpej *
7 1.11 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.11 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.11 thorpej * NASA Ames Research Center and by Chris G. Demetriou.
10 1.11 thorpej *
11 1.11 thorpej * Redistribution and use in source and binary forms, with or without
12 1.11 thorpej * modification, are permitted provided that the following conditions
13 1.11 thorpej * are met:
14 1.11 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.11 thorpej * notice, this list of conditions and the following disclaimer.
16 1.11 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.11 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.11 thorpej * documentation and/or other materials provided with the distribution.
19 1.11 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.11 thorpej * must display the following acknowledgement:
21 1.11 thorpej * This product includes software developed by the NetBSD
22 1.11 thorpej * Foundation, Inc. and its contributors.
23 1.11 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.11 thorpej * contributors may be used to endorse or promote products derived
25 1.11 thorpej * from this software without specific prior written permission.
26 1.11 thorpej *
27 1.11 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.11 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.11 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.11 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.11 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.11 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.11 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.11 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.11 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.11 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.11 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.11 thorpej */
39 1.11 thorpej
40 1.11 thorpej /*
41 1.11 thorpej * Copyright (c) 1987 Carnegie-Mellon University
42 1.11 thorpej * Copyright (c) 1991, 1993
43 1.11 thorpej * The Regents of the University of California. All rights reserved.
44 1.11 thorpej *
45 1.11 thorpej * This code is derived from software contributed to Berkeley by
46 1.11 thorpej * the Systems Programming Group of the University of Utah Computer
47 1.11 thorpej * Science Department.
48 1.11 thorpej *
49 1.11 thorpej * Redistribution and use in source and binary forms, with or without
50 1.11 thorpej * modification, are permitted provided that the following conditions
51 1.11 thorpej * are met:
52 1.11 thorpej * 1. Redistributions of source code must retain the above copyright
53 1.11 thorpej * notice, this list of conditions and the following disclaimer.
54 1.11 thorpej * 2. Redistributions in binary form must reproduce the above copyright
55 1.11 thorpej * notice, this list of conditions and the following disclaimer in the
56 1.11 thorpej * documentation and/or other materials provided with the distribution.
57 1.11 thorpej * 3. All advertising materials mentioning features or use of this software
58 1.11 thorpej * must display the following acknowledgement:
59 1.11 thorpej * This product includes software developed by the University of
60 1.11 thorpej * California, Berkeley and its contributors.
61 1.11 thorpej * 4. Neither the name of the University nor the names of its contributors
62 1.11 thorpej * may be used to endorse or promote products derived from this software
63 1.11 thorpej * without specific prior written permission.
64 1.11 thorpej *
65 1.11 thorpej * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
66 1.11 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
67 1.11 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
68 1.11 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
69 1.11 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
70 1.11 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
71 1.11 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
72 1.11 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
73 1.11 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
74 1.11 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
75 1.11 thorpej * SUCH DAMAGE.
76 1.11 thorpej *
77 1.11 thorpej * @(#)pmap.h 8.1 (Berkeley) 6/10/93
78 1.11 thorpej */
79 1.11 thorpej
80 1.11 thorpej #ifndef _PMAP_MACHINE_
81 1.11 thorpej #define _PMAP_MACHINE_
82 1.11 thorpej
83 1.11 thorpej #include <sys/queue.h>
84 1.11 thorpej #include <machine/pte.h>
85 1.11 thorpej
86 1.11 thorpej /*
87 1.11 thorpej * Machine-dependent virtual memory state.
88 1.11 thorpej *
89 1.11 thorpej * If we ever support processor numbers higher than 63, we'll have to
90 1.11 thorpej * rethink the CPU mask.
91 1.11 thorpej *
92 1.11 thorpej * XXX When we support multiple processors, pm_asn and pm_asngen need
93 1.11 thorpej * XXX to be per-processor.
94 1.11 thorpej */
95 1.11 thorpej struct pmap {
96 1.11 thorpej LIST_ENTRY(pmap) pm_list; /* list of all pmaps */
97 1.11 thorpej pt_entry_t *pm_lev1map; /* level 1 map */
98 1.11 thorpej int pm_count; /* pmap reference count */
99 1.11 thorpej simple_lock_data_t pm_lock; /* lock on pmap */
100 1.11 thorpej struct pmap_statistics pm_stats; /* pmap statistics */
101 1.11 thorpej long pm_nlev2; /* level 2 pt page count */
102 1.11 thorpej long pm_nlev3; /* level 3 pt page count */
103 1.11 thorpej unsigned int pm_asn; /* address space number */
104 1.11 thorpej unsigned long pm_asngen; /* ASN generation number */
105 1.11 thorpej unsigned long pm_cpus; /* mask of CPUs using pmap */
106 1.11 thorpej };
107 1.11 thorpej
108 1.11 thorpej typedef struct pmap *pmap_t;
109 1.11 thorpej
110 1.11 thorpej #define PMAP_ASN_RESERVED 0 /* reserved for Lev1map users */
111 1.11 thorpej
112 1.11 thorpej extern struct pmap kernel_pmap_store;
113 1.11 thorpej
114 1.11 thorpej #define pmap_kernel() (&kernel_pmap_store)
115 1.11 thorpej
116 1.11 thorpej /*
117 1.11 thorpej * For each vm_page_t, there is a list of all currently valid virtual
118 1.11 thorpej * mappings of that page. An entry is a pv_entry_t, the list is pv_table.
119 1.11 thorpej */
120 1.11 thorpej typedef struct pv_entry {
121 1.11 thorpej LIST_ENTRY(pv_entry) pv_list; /* pv_entry list */
122 1.11 thorpej struct pmap *pv_pmap; /* pmap where mapping lies */
123 1.11 thorpej vm_offset_t pv_va; /* virtual address for mapping */
124 1.11 thorpej } *pv_entry_t;
125 1.11 thorpej
126 1.11 thorpej /*
127 1.11 thorpej * The head of the list of pv_entry_t's, also contains page attributes.
128 1.11 thorpej */
129 1.11 thorpej struct pv_head {
130 1.11 thorpej LIST_HEAD(, pv_entry) pvh_list; /* pv_entry list */
131 1.11 thorpej int pvh_attrs; /* page attributes */
132 1.16 thorpej int pvh_usage; /* page usage */
133 1.11 thorpej int pvh_ptref; /* ref count if PT page */
134 1.11 thorpej };
135 1.11 thorpej
136 1.11 thorpej /* pvh_attrs */
137 1.11 thorpej #define PMAP_ATTR_MOD 0x01 /* modified */
138 1.11 thorpej #define PMAP_ATTR_REF 0x02 /* referenced */
139 1.16 thorpej
140 1.16 thorpej /* pvh_usage */
141 1.16 thorpej #define PGU_NORMAL 0 /* free or normal use */
142 1.16 thorpej #define PGU_PVENT 1 /* PV entries */
143 1.16 thorpej #define PGU_L1PT 2 /* level 1 page table */
144 1.16 thorpej #define PGU_L2PT 3 /* level 2 page table */
145 1.16 thorpej #define PGU_L3PT 4 /* level 3 page table */
146 1.16 thorpej
147 1.16 thorpej #define PGU_ISPTPAGE(pgu) ((pgu) >= PGU_L1PT)
148 1.11 thorpej
149 1.11 thorpej struct pv_page_info {
150 1.11 thorpej TAILQ_ENTRY(pv_page) pgi_list;
151 1.11 thorpej LIST_HEAD(, pv_entry) pgi_freelist;
152 1.11 thorpej int pgi_nfree;
153 1.11 thorpej };
154 1.11 thorpej
155 1.11 thorpej #define NPVPPG ((NBPG - sizeof(struct pv_page_info)) / sizeof(struct pv_entry))
156 1.11 thorpej
157 1.11 thorpej struct pv_page {
158 1.11 thorpej struct pv_page_info pvp_pgi;
159 1.11 thorpej struct pv_entry pvp_pv[NPVPPG];
160 1.11 thorpej };
161 1.11 thorpej
162 1.11 thorpej #ifdef _KERNEL
163 1.11 thorpej
164 1.12 thorpej #ifndef _LKM
165 1.12 thorpej #include "opt_new_scc_driver.h"
166 1.11 thorpej #include "opt_dec_3000_300.h" /* XXX */
167 1.11 thorpej #include "opt_dec_3000_500.h" /* XXX */
168 1.11 thorpej #include "opt_dec_kn8ae.h" /* XXX */
169 1.14 mjacob #include "opt_dec_kn300.h" /* XXX */
170 1.11 thorpej
171 1.12 thorpej #if defined(NEW_SCC_DRIVER)
172 1.13 mjacob #if defined(DEC_KN8AE) || defined(DEC_KN300)
173 1.12 thorpej #define _PMAP_MAY_USE_PROM_CONSOLE
174 1.12 thorpej #endif
175 1.12 thorpej #else /* ! NEW_SCC_DRIVER */
176 1.12 thorpej #if defined(DEC_3000_300) \
177 1.12 thorpej || defined(DEC_3000_500) \
178 1.13 mjacob || defined(DEC_KN300) \
179 1.11 thorpej || defined(DEC_KN8AE) /* XXX */
180 1.11 thorpej #define _PMAP_MAY_USE_PROM_CONSOLE /* XXX */
181 1.11 thorpej #endif /* XXX */
182 1.12 thorpej #endif /* NEW_SCC_DRIVER */
183 1.12 thorpej #endif /* _LKM */
184 1.11 thorpej
185 1.11 thorpej #define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count)
186 1.11 thorpej #define pmap_wired_count(pmap) ((pmap)->pm_stats.wired_count)
187 1.11 thorpej
188 1.11 thorpej extern pt_entry_t *VPT; /* Virtual Page Table */
189 1.11 thorpej
190 1.11 thorpej #define PMAP_STEAL_MEMORY /* enable pmap_steal_memory() */
191 1.11 thorpej
192 1.11 thorpej vm_offset_t vtophys __P((vm_offset_t));
193 1.11 thorpej
194 1.11 thorpej /* Machine-specific functions. */
195 1.11 thorpej void pmap_bootstrap __P((vm_offset_t ptaddr, u_int maxasn));
196 1.11 thorpej void pmap_emulate_reference __P((struct proc *p, vm_offset_t v,
197 1.11 thorpej int user, int write));
198 1.11 thorpej #ifdef _PMAP_MAY_USE_PROM_CONSOLE
199 1.11 thorpej int pmap_uses_prom_console __P((void));
200 1.8 cgd #endif
201 1.11 thorpej
202 1.11 thorpej #define pmap_pte_pa(pte) (PG_PFNUM(*(pte)) << PGSHIFT)
203 1.11 thorpej #define pmap_pte_prot(pte) (*(pte) & PG_PROT)
204 1.11 thorpej #define pmap_pte_w(pte) (*(pte) & PG_WIRED)
205 1.11 thorpej #define pmap_pte_v(pte) (*(pte) & PG_V)
206 1.11 thorpej #define pmap_pte_pv(pte) (*(pte) & PG_PVLIST)
207 1.11 thorpej #define pmap_pte_asm(pte) (*(pte) & PG_ASM)
208 1.11 thorpej
209 1.11 thorpej #define pmap_pte_set_w(pte, v) \
210 1.11 thorpej do { \
211 1.11 thorpej if (v) \
212 1.11 thorpej *(pte) |= PG_WIRED; \
213 1.11 thorpej else \
214 1.11 thorpej *(pte) &= ~PG_WIRED; \
215 1.11 thorpej } while (0)
216 1.11 thorpej
217 1.11 thorpej #define pmap_pte_w_chg(pte, nw) ((nw) ^ pmap_pte_w(pte))
218 1.11 thorpej
219 1.11 thorpej #define pmap_pte_set_prot(pte, np) \
220 1.11 thorpej do { \
221 1.11 thorpej *(pte) &= ~PG_PROT; \
222 1.11 thorpej *(pte) |= (np); \
223 1.11 thorpej } while (0)
224 1.11 thorpej
225 1.11 thorpej #define pmap_pte_prot_chg(pte, np) ((np) ^ pmap_pte_prot(pte))
226 1.11 thorpej
227 1.15 thorpej static __inline pt_entry_t *pmap_l2pte __P((pmap_t, vm_offset_t, pt_entry_t *));
228 1.15 thorpej static __inline pt_entry_t *pmap_l3pte __P((pmap_t, vm_offset_t, pt_entry_t *));
229 1.11 thorpej
230 1.11 thorpej #define pmap_l1pte(pmap, v) \
231 1.11 thorpej (&(pmap)->pm_lev1map[l1pte_index((vm_offset_t)(v))])
232 1.11 thorpej
233 1.11 thorpej static __inline pt_entry_t *
234 1.15 thorpej pmap_l2pte(pmap, v, l1pte)
235 1.11 thorpej pmap_t pmap;
236 1.11 thorpej vm_offset_t v;
237 1.15 thorpej pt_entry_t *l1pte;
238 1.11 thorpej {
239 1.15 thorpej pt_entry_t *lev2map;
240 1.11 thorpej
241 1.15 thorpej if (l1pte == NULL) {
242 1.15 thorpej l1pte = pmap_l1pte(pmap, v);
243 1.15 thorpej if (pmap_pte_v(l1pte) == 0)
244 1.15 thorpej return (NULL);
245 1.15 thorpej }
246 1.11 thorpej
247 1.11 thorpej lev2map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l1pte));
248 1.11 thorpej return (&lev2map[l2pte_index(v)]);
249 1.11 thorpej }
250 1.11 thorpej
251 1.11 thorpej static __inline pt_entry_t *
252 1.15 thorpej pmap_l3pte(pmap, v, l2pte)
253 1.11 thorpej pmap_t pmap;
254 1.11 thorpej vm_offset_t v;
255 1.15 thorpej pt_entry_t *l2pte;
256 1.11 thorpej {
257 1.15 thorpej pt_entry_t *l1pte, *lev2map, *lev3map;
258 1.11 thorpej
259 1.15 thorpej if (l2pte == NULL) {
260 1.15 thorpej l1pte = pmap_l1pte(pmap, v);
261 1.15 thorpej if (pmap_pte_v(l1pte) == 0)
262 1.15 thorpej return (NULL);
263 1.15 thorpej
264 1.15 thorpej lev2map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l1pte));
265 1.15 thorpej l2pte = &lev2map[l2pte_index(v)];
266 1.15 thorpej if (pmap_pte_v(l2pte) == 0)
267 1.15 thorpej return (NULL);
268 1.15 thorpej }
269 1.11 thorpej
270 1.11 thorpej lev3map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l2pte));
271 1.11 thorpej return (&lev3map[l3pte_index(v)]);
272 1.11 thorpej }
273 1.11 thorpej
274 1.11 thorpej #endif /* _KERNEL */
275 1.11 thorpej
276 1.11 thorpej #endif /* _PMAP_MACHINE_ */
277