uvm_page.h revision 1.26 1 1.26 chs /* $NetBSD: uvm_page.h,v 1.26 2001/05/25 04:06:16 chs Exp $ */
2 1.1 mrg
3 1.26 chs /*
4 1.1 mrg * Copyright (c) 1997 Charles D. Cranor and Washington University.
5 1.26 chs * Copyright (c) 1991, 1993, The Regents of the University of California.
6 1.1 mrg *
7 1.1 mrg * All rights reserved.
8 1.1 mrg *
9 1.1 mrg * This code is derived from software contributed to Berkeley by
10 1.1 mrg * The Mach Operating System project at Carnegie-Mellon University.
11 1.1 mrg *
12 1.1 mrg * Redistribution and use in source and binary forms, with or without
13 1.1 mrg * modification, are permitted provided that the following conditions
14 1.1 mrg * are met:
15 1.1 mrg * 1. Redistributions of source code must retain the above copyright
16 1.1 mrg * notice, this list of conditions and the following disclaimer.
17 1.1 mrg * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 mrg * notice, this list of conditions and the following disclaimer in the
19 1.1 mrg * documentation and/or other materials provided with the distribution.
20 1.1 mrg * 3. All advertising materials mentioning features or use of this software
21 1.1 mrg * must display the following acknowledgement:
22 1.1 mrg * This product includes software developed by Charles D. Cranor,
23 1.26 chs * Washington University, the University of California, Berkeley and
24 1.1 mrg * its contributors.
25 1.1 mrg * 4. Neither the name of the University nor the names of its contributors
26 1.1 mrg * may be used to endorse or promote products derived from this software
27 1.1 mrg * without specific prior written permission.
28 1.1 mrg *
29 1.1 mrg * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 1.1 mrg * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 1.1 mrg * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 1.1 mrg * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 1.1 mrg * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 1.1 mrg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 1.1 mrg * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 1.1 mrg * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 1.1 mrg * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 1.1 mrg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 1.1 mrg * SUCH DAMAGE.
40 1.1 mrg *
41 1.1 mrg * @(#)vm_page.h 7.3 (Berkeley) 4/21/91
42 1.3 mrg * from: Id: uvm_page.h,v 1.1.2.6 1998/02/04 02:31:42 chuck Exp
43 1.1 mrg *
44 1.1 mrg *
45 1.1 mrg * Copyright (c) 1987, 1990 Carnegie-Mellon University.
46 1.1 mrg * All rights reserved.
47 1.26 chs *
48 1.1 mrg * Permission to use, copy, modify and distribute this software and
49 1.1 mrg * its documentation is hereby granted, provided that both the copyright
50 1.1 mrg * notice and this permission notice appear in all copies of the
51 1.1 mrg * software, derivative works or modified versions, and any portions
52 1.1 mrg * thereof, and that both notices appear in supporting documentation.
53 1.26 chs *
54 1.26 chs * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
55 1.26 chs * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
56 1.1 mrg * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
57 1.26 chs *
58 1.1 mrg * Carnegie Mellon requests users of this software to return to
59 1.1 mrg *
60 1.1 mrg * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
61 1.1 mrg * School of Computer Science
62 1.1 mrg * Carnegie Mellon University
63 1.1 mrg * Pittsburgh PA 15213-3890
64 1.1 mrg *
65 1.1 mrg * any improvements or extensions that they make and grant Carnegie the
66 1.1 mrg * rights to redistribute these changes.
67 1.1 mrg */
68 1.1 mrg
69 1.4 perry #ifndef _UVM_UVM_PAGE_H_
70 1.4 perry #define _UVM_UVM_PAGE_H_
71 1.4 perry
72 1.1 mrg /*
73 1.1 mrg * uvm_page.h
74 1.1 mrg */
75 1.1 mrg
76 1.16 mrg /*
77 1.16 mrg * Resident memory system definitions.
78 1.16 mrg */
79 1.16 mrg
80 1.16 mrg /*
81 1.16 mrg * Management of resident (logical) pages.
82 1.16 mrg *
83 1.16 mrg * A small structure is kept for each resident
84 1.16 mrg * page, indexed by page number. Each structure
85 1.16 mrg * is an element of several lists:
86 1.16 mrg *
87 1.16 mrg * A hash table bucket used to quickly
88 1.16 mrg * perform object/offset lookups
89 1.16 mrg *
90 1.16 mrg * A list of all pages for a given object,
91 1.16 mrg * so they can be quickly deactivated at
92 1.16 mrg * time of deallocation.
93 1.16 mrg *
94 1.16 mrg * An ordered list of pages due for pageout.
95 1.16 mrg *
96 1.16 mrg * In addition, the structure contains the object
97 1.16 mrg * and offset to which this page belongs (for pageout),
98 1.16 mrg * and sundry status bits.
99 1.16 mrg *
100 1.16 mrg * Fields in this structure are locked either by the lock on the
101 1.16 mrg * object that the page belongs to (O) or by the lock on the page
102 1.16 mrg * queues (P) [or both].
103 1.16 mrg */
104 1.16 mrg
105 1.16 mrg /*
106 1.16 mrg * locking note: the mach version of this data structure had bit
107 1.16 mrg * fields for the flags, and the bit fields were divided into two
108 1.16 mrg * items (depending on who locked what). some time, in BSD, the bit
109 1.16 mrg * fields were dumped and all the flags were lumped into one short.
110 1.16 mrg * that is fine for a single threaded uniprocessor OS, but bad if you
111 1.16 mrg * want to actual make use of locking (simple_lock's). so, we've
112 1.16 mrg * seperated things back out again.
113 1.16 mrg *
114 1.16 mrg * note the page structure has no lock of its own.
115 1.25 ross *
116 1.25 ross * XXX the use of locked u_short fields is dangerous, as they are not
117 1.25 ross * addressable on all architectures and hence cannot be individually
118 1.25 ross * locked. Right now it works because each aligned pair uses the same
119 1.25 ross * lock and all current ports can lock an int32_t.
120 1.16 mrg */
121 1.16 mrg
122 1.16 mrg #include <uvm/uvm_extern.h>
123 1.16 mrg #include <uvm/uvm_pglist.h>
124 1.16 mrg
125 1.16 mrg struct vm_page {
126 1.18 chs TAILQ_ENTRY(vm_page) pageq; /* queue info for FIFO
127 1.18 chs * queue or free list (P) */
128 1.18 chs TAILQ_ENTRY(vm_page) hashq; /* hash table links (O)*/
129 1.18 chs TAILQ_ENTRY(vm_page) listq; /* pages in same object (O)*/
130 1.18 chs
131 1.18 chs struct vm_anon *uanon; /* anon (O,P) */
132 1.18 chs struct uvm_object *uobject; /* object (O,P) */
133 1.18 chs voff_t offset; /* offset into object (O,P) */
134 1.18 chs
135 1.18 chs u_short flags; /* object flags [O] */
136 1.18 chs u_short version; /* version count [O] */
137 1.18 chs u_short wire_count; /* wired down map refs [P] */
138 1.18 chs u_short pqflags; /* page queue flags [P] */
139 1.18 chs u_int loan_count; /* number of active loans
140 1.18 chs * to read: [O or P]
141 1.18 chs * to modify: [O _and_ P] */
142 1.18 chs paddr_t phys_addr; /* physical address of page */
143 1.21 thorpej
144 1.22 thorpej #ifdef __HAVE_VM_PAGE_MD
145 1.22 thorpej struct vm_page_md mdpage; /* pmap-specific data */
146 1.22 thorpej #endif
147 1.21 thorpej
148 1.16 mrg #if defined(UVM_PAGE_TRKOWN)
149 1.18 chs /* debugging fields to track page ownership */
150 1.18 chs pid_t owner; /* proc that set PG_BUSY */
151 1.18 chs char *owner_tag; /* why it was set busy */
152 1.16 mrg #endif
153 1.16 mrg };
154 1.16 mrg
155 1.16 mrg /*
156 1.16 mrg * These are the flags defined for vm_page.
157 1.16 mrg */
158 1.16 mrg
159 1.16 mrg /*
160 1.16 mrg * locking rules:
161 1.16 mrg * PG_ ==> locked by object lock
162 1.26 chs * PQ_ ==> lock by page queue lock
163 1.16 mrg * PQ_FREE is locked by free queue lock and is mutex with all other PQs
164 1.16 mrg *
165 1.16 mrg * PG_ZERO is used to indicate that a page has been pre-zero'd. This flag
166 1.16 mrg * is only set when the page is on no queues, and is cleared when the page
167 1.16 mrg * is placed on the free list.
168 1.16 mrg */
169 1.18 chs
170 1.18 chs #define PG_BUSY 0x0001 /* page is locked */
171 1.18 chs #define PG_WANTED 0x0002 /* someone is waiting for page */
172 1.18 chs #define PG_TABLED 0x0004 /* page is in VP table */
173 1.16 mrg #define PG_CLEAN 0x0008 /* page has not been modified */
174 1.18 chs #define PG_CLEANCHK 0x0010 /* clean bit has been checked */
175 1.18 chs #define PG_RELEASED 0x0020 /* page released while paging */
176 1.18 chs #define PG_FAKE 0x0040 /* page is not yet initialized */
177 1.18 chs #define PG_RDONLY 0x0080 /* page must be mapped read-only */
178 1.18 chs #define PG_ZERO 0x0100 /* page is pre-zero'd */
179 1.18 chs
180 1.18 chs #define PG_PAGER1 0x1000 /* pager-specific flag */
181 1.16 mrg
182 1.16 mrg #define PQ_FREE 0x0001 /* page is on free list */
183 1.16 mrg #define PQ_INACTIVE 0x0002 /* page is in inactive list */
184 1.16 mrg #define PQ_ACTIVE 0x0004 /* page is in active list */
185 1.16 mrg #define PQ_ANON 0x0010 /* page is part of an anon, rather
186 1.16 mrg than an uvm_object */
187 1.16 mrg #define PQ_AOBJ 0x0020 /* page is part of an anonymous
188 1.16 mrg uvm_object */
189 1.16 mrg #define PQ_SWAPBACKED (PQ_ANON|PQ_AOBJ)
190 1.16 mrg
191 1.16 mrg /*
192 1.16 mrg * physical memory layout structure
193 1.16 mrg *
194 1.16 mrg * MD vmparam.h must #define:
195 1.16 mrg * VM_PHYSEG_MAX = max number of physical memory segments we support
196 1.16 mrg * (if this is "1" then we revert to a "contig" case)
197 1.16 mrg * VM_PHYSSEG_STRAT: memory sort/search options (for VM_PHYSEG_MAX > 1)
198 1.16 mrg * - VM_PSTRAT_RANDOM: linear search (random order)
199 1.16 mrg * - VM_PSTRAT_BSEARCH: binary search (sorted by address)
200 1.16 mrg * - VM_PSTRAT_BIGFIRST: linear search (sorted by largest segment first)
201 1.16 mrg * - others?
202 1.17 mrg * XXXCDC: eventually we should purge all left-over global variables...
203 1.16 mrg */
204 1.16 mrg #define VM_PSTRAT_RANDOM 1
205 1.16 mrg #define VM_PSTRAT_BSEARCH 2
206 1.16 mrg #define VM_PSTRAT_BIGFIRST 3
207 1.16 mrg
208 1.16 mrg /*
209 1.16 mrg * vm_physmemseg: describes one segment of physical memory
210 1.16 mrg */
211 1.16 mrg struct vm_physseg {
212 1.16 mrg paddr_t start; /* PF# of first page in segment */
213 1.16 mrg paddr_t end; /* (PF# of last page in segment) + 1 */
214 1.16 mrg paddr_t avail_start; /* PF# of first free page in segment */
215 1.16 mrg paddr_t avail_end; /* (PF# of last free page in segment) +1 */
216 1.16 mrg int free_list; /* which free list they belong on */
217 1.16 mrg struct vm_page *pgs; /* vm_page structures (from start) */
218 1.16 mrg struct vm_page *lastpg; /* vm_page structure for end */
219 1.22 thorpej #ifdef __HAVE_PMAP_PHYSSEG
220 1.16 mrg struct pmap_physseg pmseg; /* pmap specific (MD) data */
221 1.21 thorpej #endif
222 1.16 mrg };
223 1.16 mrg
224 1.13 thorpej #ifdef _KERNEL
225 1.13 thorpej
226 1.1 mrg /*
227 1.15 thorpej * globals
228 1.15 thorpej */
229 1.15 thorpej
230 1.15 thorpej extern boolean_t vm_page_zero_enable;
231 1.15 thorpej
232 1.15 thorpej /*
233 1.16 mrg * Each pageable resident page falls into one of three lists:
234 1.16 mrg *
235 1.26 chs * free
236 1.16 mrg * Available for allocation now.
237 1.16 mrg * inactive
238 1.16 mrg * Not referenced in any map, but still has an
239 1.16 mrg * object/offset-page mapping, and may be dirty.
240 1.16 mrg * This is the list of pages that should be
241 1.16 mrg * paged out next.
242 1.16 mrg * active
243 1.16 mrg * A list of pages which have been placed in
244 1.16 mrg * at least one physical map. This list is
245 1.16 mrg * ordered, in LRU-like fashion.
246 1.1 mrg */
247 1.1 mrg
248 1.18 chs extern struct pglist vm_page_queue_free; /* memory free queue */
249 1.18 chs extern struct pglist vm_page_queue_active; /* active memory queue */
250 1.18 chs extern struct pglist vm_page_queue_inactive; /* inactive memory queue */
251 1.1 mrg
252 1.16 mrg /*
253 1.16 mrg * physical memory config is stored in vm_physmem.
254 1.16 mrg */
255 1.1 mrg
256 1.16 mrg extern struct vm_physseg vm_physmem[VM_PHYSSEG_MAX];
257 1.16 mrg extern int vm_nphysseg;
258 1.15 thorpej
259 1.1 mrg /*
260 1.1 mrg * handle inline options
261 1.1 mrg */
262 1.1 mrg
263 1.1 mrg #ifdef UVM_PAGE_INLINE
264 1.1 mrg #define PAGE_INLINE static __inline
265 1.26 chs #else
266 1.1 mrg #define PAGE_INLINE /* nothing */
267 1.1 mrg #endif /* UVM_PAGE_INLINE */
268 1.1 mrg
269 1.1 mrg /*
270 1.8 chuck * prototypes: the following prototypes define the interface to pages
271 1.1 mrg */
272 1.1 mrg
273 1.10 eeh void uvm_page_init __P((vaddr_t *, vaddr_t *));
274 1.1 mrg #if defined(UVM_PAGE_TRKOWN)
275 1.1 mrg void uvm_page_own __P((struct vm_page *, char *));
276 1.1 mrg #endif
277 1.8 chuck #if !defined(PMAP_STEAL_MEMORY)
278 1.10 eeh boolean_t uvm_page_physget __P((paddr_t *));
279 1.8 chuck #endif
280 1.1 mrg void uvm_page_rehash __P((void));
281 1.24 thorpej void uvm_page_recolor __P((int));
282 1.15 thorpej void uvm_pageidlezero __P((void));
283 1.12 thorpej
284 1.12 thorpej PAGE_INLINE int uvm_lock_fpageq __P((void));
285 1.12 thorpej PAGE_INLINE void uvm_unlock_fpageq __P((int));
286 1.8 chuck
287 1.1 mrg PAGE_INLINE void uvm_pageactivate __P((struct vm_page *));
288 1.10 eeh vaddr_t uvm_pageboot_alloc __P((vsize_t));
289 1.1 mrg PAGE_INLINE void uvm_pagecopy __P((struct vm_page *, struct vm_page *));
290 1.1 mrg PAGE_INLINE void uvm_pagedeactivate __P((struct vm_page *));
291 1.1 mrg void uvm_pagefree __P((struct vm_page *));
292 1.18 chs void uvm_page_unbusy __P((struct vm_page **, int));
293 1.14 kleink PAGE_INLINE struct vm_page *uvm_pagelookup __P((struct uvm_object *, voff_t));
294 1.1 mrg PAGE_INLINE void uvm_pageunwire __P((struct vm_page *));
295 1.1 mrg PAGE_INLINE void uvm_pagewait __P((struct vm_page *, int));
296 1.1 mrg PAGE_INLINE void uvm_pagewake __P((struct vm_page *));
297 1.7 chuck PAGE_INLINE void uvm_pagewire __P((struct vm_page *));
298 1.1 mrg PAGE_INLINE void uvm_pagezero __P((struct vm_page *));
299 1.9 thorpej
300 1.9 thorpej PAGE_INLINE int uvm_page_lookup_freelist __P((struct vm_page *));
301 1.16 mrg
302 1.16 mrg static struct vm_page *PHYS_TO_VM_PAGE __P((paddr_t));
303 1.16 mrg static int vm_physseg_find __P((paddr_t, int *));
304 1.16 mrg
305 1.16 mrg /*
306 1.16 mrg * macros
307 1.16 mrg */
308 1.16 mrg
309 1.16 mrg #define uvm_lock_pageq() simple_lock(&uvm.pageqlock)
310 1.16 mrg #define uvm_unlock_pageq() simple_unlock(&uvm.pageqlock)
311 1.16 mrg
312 1.16 mrg #define uvm_pagehash(obj,off) \
313 1.16 mrg (((unsigned long)obj+(unsigned long)atop(off)) & uvm.page_hashmask)
314 1.16 mrg
315 1.16 mrg #define UVM_PAGEZERO_TARGET (uvmexp.free)
316 1.16 mrg
317 1.16 mrg #define VM_PAGE_TO_PHYS(entry) ((entry)->phys_addr)
318 1.20 thorpej
319 1.20 thorpej /*
320 1.20 thorpej * Compute the page color bucket for a given page.
321 1.20 thorpej */
322 1.20 thorpej #define VM_PGCOLOR_BUCKET(pg) \
323 1.24 thorpej (atop(VM_PAGE_TO_PHYS((pg))) & uvmexp.colormask)
324 1.16 mrg
325 1.16 mrg /*
326 1.16 mrg * when VM_PHYSSEG_MAX is 1, we can simplify these functions
327 1.16 mrg */
328 1.16 mrg
329 1.16 mrg /*
330 1.16 mrg * vm_physseg_find: find vm_physseg structure that belongs to a PA
331 1.16 mrg */
332 1.16 mrg static __inline int
333 1.16 mrg vm_physseg_find(pframe, offp)
334 1.16 mrg paddr_t pframe;
335 1.16 mrg int *offp;
336 1.16 mrg {
337 1.16 mrg #if VM_PHYSSEG_MAX == 1
338 1.16 mrg
339 1.16 mrg /* 'contig' case */
340 1.16 mrg if (pframe >= vm_physmem[0].start && pframe < vm_physmem[0].end) {
341 1.16 mrg if (offp)
342 1.16 mrg *offp = pframe - vm_physmem[0].start;
343 1.16 mrg return(0);
344 1.16 mrg }
345 1.16 mrg return(-1);
346 1.16 mrg
347 1.16 mrg #elif (VM_PHYSSEG_STRAT == VM_PSTRAT_BSEARCH)
348 1.16 mrg /* binary search for it */
349 1.16 mrg int start, len, try;
350 1.16 mrg
351 1.16 mrg /*
352 1.16 mrg * if try is too large (thus target is less than than try) we reduce
353 1.16 mrg * the length to trunc(len/2) [i.e. everything smaller than "try"]
354 1.16 mrg *
355 1.16 mrg * if the try is too small (thus target is greater than try) then
356 1.16 mrg * we set the new start to be (try + 1). this means we need to
357 1.16 mrg * reduce the length to (round(len/2) - 1).
358 1.16 mrg *
359 1.16 mrg * note "adjust" below which takes advantage of the fact that
360 1.16 mrg * (round(len/2) - 1) == trunc((len - 1) / 2)
361 1.16 mrg * for any value of len we may have
362 1.16 mrg */
363 1.16 mrg
364 1.16 mrg for (start = 0, len = vm_nphysseg ; len != 0 ; len = len / 2) {
365 1.16 mrg try = start + (len / 2); /* try in the middle */
366 1.16 mrg
367 1.16 mrg /* start past our try? */
368 1.16 mrg if (pframe >= vm_physmem[try].start) {
369 1.16 mrg /* was try correct? */
370 1.16 mrg if (pframe < vm_physmem[try].end) {
371 1.16 mrg if (offp)
372 1.16 mrg *offp = pframe - vm_physmem[try].start;
373 1.16 mrg return(try); /* got it */
374 1.16 mrg }
375 1.16 mrg start = try + 1; /* next time, start here */
376 1.16 mrg len--; /* "adjust" */
377 1.16 mrg } else {
378 1.16 mrg /*
379 1.16 mrg * pframe before try, just reduce length of
380 1.16 mrg * region, done in "for" loop
381 1.16 mrg */
382 1.16 mrg }
383 1.16 mrg }
384 1.16 mrg return(-1);
385 1.16 mrg
386 1.16 mrg #else
387 1.16 mrg /* linear search for it */
388 1.16 mrg int lcv;
389 1.16 mrg
390 1.16 mrg for (lcv = 0; lcv < vm_nphysseg; lcv++) {
391 1.16 mrg if (pframe >= vm_physmem[lcv].start &&
392 1.16 mrg pframe < vm_physmem[lcv].end) {
393 1.16 mrg if (offp)
394 1.16 mrg *offp = pframe - vm_physmem[lcv].start;
395 1.16 mrg return(lcv); /* got it */
396 1.16 mrg }
397 1.16 mrg }
398 1.16 mrg return(-1);
399 1.16 mrg
400 1.16 mrg #endif
401 1.16 mrg }
402 1.16 mrg
403 1.16 mrg
404 1.16 mrg /*
405 1.16 mrg * IS_VM_PHYSADDR: only used my mips/pmax/pica trap/pmap.
406 1.16 mrg */
407 1.16 mrg
408 1.16 mrg #define IS_VM_PHYSADDR(PA) (vm_physseg_find(atop(PA), NULL) != -1)
409 1.16 mrg
410 1.16 mrg /*
411 1.16 mrg * PHYS_TO_VM_PAGE: find vm_page for a PA. used by MI code to get vm_pages
412 1.16 mrg * back from an I/O mapping (ugh!). used in some MD code as well.
413 1.16 mrg */
414 1.16 mrg static __inline struct vm_page *
415 1.16 mrg PHYS_TO_VM_PAGE(pa)
416 1.16 mrg paddr_t pa;
417 1.16 mrg {
418 1.16 mrg paddr_t pf = atop(pa);
419 1.16 mrg int off;
420 1.16 mrg int psi;
421 1.16 mrg
422 1.16 mrg psi = vm_physseg_find(pf, &off);
423 1.16 mrg if (psi != -1)
424 1.16 mrg return(&vm_physmem[psi].pgs[off]);
425 1.16 mrg return(NULL);
426 1.16 mrg }
427 1.16 mrg
428 1.16 mrg #define VM_PAGE_IS_FREE(entry) ((entry)->pqflags & PQ_FREE)
429 1.13 thorpej
430 1.13 thorpej #endif /* _KERNEL */
431 1.1 mrg
432 1.4 perry #endif /* _UVM_UVM_PAGE_H_ */
433