]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/vm/vm_phys.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / vm / vm_phys.h
1 /*-
2  * Copyright (c) 2002-2006 Rice University
3  * Copyright (c) 2007 Alan L. Cox <alc@cs.rice.edu>
4  * All rights reserved.
5  *
6  * This software was developed for the FreeBSD Project by Alan L. Cox,
7  * Olivier Crameri, Peter Druschel, Sitaram Iyer, and Juan Navarro.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
22  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
28  * WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  *
31  * $FreeBSD$
32  */
33
34 /*
35  *      Physical memory system definitions
36  */
37
38 #ifndef _VM_PHYS_H_
39 #define _VM_PHYS_H_
40
41 #ifdef _KERNEL
42
43 /* Domains must be dense (non-sparse) and zero-based. */
44 struct mem_affinity {
45         vm_paddr_t start;
46         vm_paddr_t end;
47         int domain;
48 };
49
50 extern struct mem_affinity *mem_affinity;
51
52 void vm_phys_add_page(vm_paddr_t pa);
53 vm_page_t vm_phys_alloc_contig(unsigned long npages,
54     vm_paddr_t low, vm_paddr_t high,
55     unsigned long alignment, unsigned long boundary);
56 vm_page_t vm_phys_alloc_freelist_pages(int flind, int pool, int order);
57 vm_page_t vm_phys_alloc_pages(int pool, int order);
58 vm_paddr_t vm_phys_bootstrap_alloc(vm_size_t size, unsigned long alignment);
59 int vm_phys_fictitious_reg_range(vm_paddr_t start, vm_paddr_t end,
60     vm_memattr_t memattr);
61 void vm_phys_fictitious_unreg_range(vm_paddr_t start, vm_paddr_t end);
62 vm_page_t vm_phys_fictitious_to_vm_page(vm_paddr_t pa);
63 void vm_phys_free_pages(vm_page_t m, int order);
64 void vm_phys_init(void);
65 void vm_phys_set_pool(int pool, vm_page_t m, int order);
66 boolean_t vm_phys_unfree_page(vm_page_t m);
67 boolean_t vm_phys_zero_pages_idle(void);
68
69 #endif  /* _KERNEL */
70 #endif  /* !_VM_PHYS_H_ */