Merge branch 'master' into for-next
[linux-2.6/mini2440.git] / include / xen / interface / memory.h
blobda768469aa92b1a3cd948fc5f03f3cf0bd69751d
1 /******************************************************************************
2 * memory.h
4 * Memory reservation and information.
6 * Copyright (c) 2005, Keir Fraser <keir@xensource.com>
7 */
9 #ifndef __XEN_PUBLIC_MEMORY_H__
10 #define __XEN_PUBLIC_MEMORY_H__
13 * Increase or decrease the specified domain's memory reservation. Returns a
14 * -ve errcode on failure, or the # extents successfully allocated or freed.
15 * arg == addr of struct xen_memory_reservation.
17 #define XENMEM_increase_reservation 0
18 #define XENMEM_decrease_reservation 1
19 #define XENMEM_populate_physmap 6
20 struct xen_memory_reservation {
23 * XENMEM_increase_reservation:
24 * OUT: MFN (*not* GMFN) bases of extents that were allocated
25 * XENMEM_decrease_reservation:
26 * IN: GMFN bases of extents to free
27 * XENMEM_populate_physmap:
28 * IN: GPFN bases of extents to populate with memory
29 * OUT: GMFN bases of extents that were allocated
30 * (NB. This command also updates the mach_to_phys translation table)
32 ulong extent_start;
34 /* Number of extents, and size/alignment of each (2^extent_order pages). */
35 unsigned long nr_extents;
36 unsigned int extent_order;
39 * Maximum # bits addressable by the user of the allocated region (e.g.,
40 * I/O devices often have a 32-bit limitation even in 64-bit systems). If
41 * zero then the user has no addressing restriction.
42 * This field is not used by XENMEM_decrease_reservation.
44 unsigned int address_bits;
47 * Domain whose reservation is being changed.
48 * Unprivileged domains can specify only DOMID_SELF.
50 domid_t domid;
55 * Returns the maximum machine frame number of mapped RAM in this system.
56 * This command always succeeds (it never returns an error code).
57 * arg == NULL.
59 #define XENMEM_maximum_ram_page 2
62 * Returns the current or maximum memory reservation, in pages, of the
63 * specified domain (may be DOMID_SELF). Returns -ve errcode on failure.
64 * arg == addr of domid_t.
66 #define XENMEM_current_reservation 3
67 #define XENMEM_maximum_reservation 4
70 * Returns a list of MFN bases of 2MB extents comprising the machine_to_phys
71 * mapping table. Architectures which do not have a m2p table do not implement
72 * this command.
73 * arg == addr of xen_machphys_mfn_list_t.
75 #define XENMEM_machphys_mfn_list 5
76 struct xen_machphys_mfn_list {
78 * Size of the 'extent_start' array. Fewer entries will be filled if the
79 * machphys table is smaller than max_extents * 2MB.
81 unsigned int max_extents;
84 * Pointer to buffer to fill with list of extent starts. If there are
85 * any large discontiguities in the machine address space, 2MB gaps in
86 * the machphys table will be represented by an MFN base of zero.
88 ulong extent_start;
91 * Number of extents written to the above array. This will be smaller
92 * than 'max_extents' if the machphys table is smaller than max_e * 2MB.
94 unsigned int nr_extents;
98 * Sets the GPFN at which a particular page appears in the specified guest's
99 * pseudophysical address space.
100 * arg == addr of xen_add_to_physmap_t.
102 #define XENMEM_add_to_physmap 7
103 struct xen_add_to_physmap {
104 /* Which domain to change the mapping for. */
105 domid_t domid;
107 /* Source mapping space. */
108 #define XENMAPSPACE_shared_info 0 /* shared info page */
109 #define XENMAPSPACE_grant_table 1 /* grant table page */
110 unsigned int space;
112 /* Index into source mapping space. */
113 unsigned long idx;
115 /* GPFN where the source mapping page should appear. */
116 unsigned long gpfn;
120 * Translates a list of domain-specific GPFNs into MFNs. Returns a -ve error
121 * code on failure. This call only works for auto-translated guests.
123 #define XENMEM_translate_gpfn_list 8
124 struct xen_translate_gpfn_list {
125 /* Which domain to translate for? */
126 domid_t domid;
128 /* Length of list. */
129 unsigned long nr_gpfns;
131 /* List of GPFNs to translate. */
132 ulong gpfn_list;
135 * Output list to contain MFN translations. May be the same as the input
136 * list (in which case each input GPFN is overwritten with the output MFN).
138 ulong mfn_list;
141 #endif /* __XEN_PUBLIC_MEMORY_H__ */