]> Git Repo - qemu.git/blame - docs/memory.txt
libcacard: use the standalone project
[qemu.git] / docs / memory.txt
CommitLineData
9d3a4736
AK
1The memory API
2==============
3
4The memory API models the memory and I/O buses and controllers of a QEMU
5machine. It attempts to allow modelling of:
6
7 - ordinary RAM
8 - memory-mapped I/O (MMIO)
9 - memory controllers that can dynamically reroute physical memory regions
69ddaf66 10 to different destinations
9d3a4736
AK
11
12The memory model provides support for
13
14 - tracking RAM changes by the guest
15 - setting up coalesced memory for kvm
16 - setting up ioeventfd regions for kvm
17
2d40178a
PB
18Memory is modelled as an acyclic graph of MemoryRegion objects. Sinks
19(leaves) are RAM and MMIO regions, while other nodes represent
20buses, memory controllers, and memory regions that have been rerouted.
21
22In addition to MemoryRegion objects, the memory API provides AddressSpace
23objects for every root and possibly for intermediate MemoryRegions too.
24These represent memory as seen from the CPU or a device's viewpoint.
9d3a4736
AK
25
26Types of regions
27----------------
28
29There are four types of memory regions (all represented by a single C type
30MemoryRegion):
31
32- RAM: a RAM region is simply a range of host memory that can be made available
33 to the guest.
34
35- MMIO: a range of guest memory that is implemented by host callbacks;
36 each read or write causes a callback to be called on the host.
37
38- container: a container simply includes other memory regions, each at
39 a different offset. Containers are useful for grouping several regions
40 into one unit. For example, a PCI BAR may be composed of a RAM region
41 and an MMIO region.
42
43 A container's subregions are usually non-overlapping. In some cases it is
44 useful to have overlapping regions; for example a memory controller that
45 can overlay a subregion of RAM with MMIO or ROM, or a PCI controller
46 that does not prevent card from claiming overlapping BARs.
47
48- alias: a subsection of another region. Aliases allow a region to be
49 split apart into discontiguous regions. Examples of uses are memory banks
50 used when the guest address space is smaller than the amount of RAM
51 addressed, or a memory controller that splits main memory to expose a "PCI
52 hole". Aliases may point to any type of region, including other aliases,
53 but an alias may not point back to itself, directly or indirectly.
54
6f1ce94a
PM
55It is valid to add subregions to a region which is not a pure container
56(that is, to an MMIO, RAM or ROM region). This means that the region
57will act like a container, except that any addresses within the container's
58region which are not claimed by any subregion are handled by the
59container itself (ie by its MMIO callbacks or RAM backing). However
60it is generally possible to achieve the same effect with a pure container
61one of whose subregions is a low priority "background" region covering
62the whole address range; this is often clearer and is preferred.
63Subregions cannot be added to an alias region.
9d3a4736
AK
64
65Region names
66------------
67
68Regions are assigned names by the constructor. For most regions these are
69only used for debugging purposes, but RAM regions also use the name to identify
70live migration sections. This means that RAM region names need to have ABI
71stability.
72
73Region lifecycle
74----------------
75
8b5c2160
PB
76A region is created by one of the memory_region_init*() functions and
77attached to an object, which acts as its owner or parent. QEMU ensures
78that the owner object remains alive as long as the region is visible to
79the guest, or as long as the region is in use by a virtual CPU or another
80device. For example, the owner object will not die between an
81address_space_map operation and the corresponding address_space_unmap.
d8d95814 82
8b5c2160
PB
83After creation, a region can be added to an address space or a
84container with memory_region_add_subregion(), and removed using
85memory_region_del_subregion().
86
87Various region attributes (read-only, dirty logging, coalesced mmio,
88ioeventfd) can be changed during the region lifecycle. They take effect
89as soon as the region is made visible. This can be immediately, later,
90or never.
91
92Destruction of a memory region happens automatically when the owner
93object dies.
94
95If however the memory region is part of a dynamically allocated data
96structure, you should call object_unparent() to destroy the memory region
97before the data structure is freed. For an example see VFIOMSIXInfo
98and VFIOQuirk in hw/vfio/pci.c.
99
100You must not destroy a memory region as long as it may be in use by a
101device or CPU. In order to do this, as a general rule do not create or
102destroy memory regions dynamically during a device's lifetime, and only
103call object_unparent() in the memory region owner's instance_finalize
104callback. The dynamically allocated data structure that contains the
105memory region then should obviously be freed in the instance_finalize
106callback as well.
107
108If you break this rule, the following situation can happen:
109
110- the memory region's owner had a reference taken via memory_region_ref
111 (for example by address_space_map)
112
113- the region is unparented, and has no owner anymore
114
115- when address_space_unmap is called, the reference to the memory region's
116 owner is leaked.
117
118
119There is an exception to the above rule: it is okay to call
120object_unparent at any time for an alias or a container region. It is
121therefore also okay to create or destroy alias and container regions
122dynamically during a device's lifetime.
123
124This exceptional usage is valid because aliases and containers only help
125QEMU building the guest's memory map; they are never accessed directly.
126memory_region_ref and memory_region_unref are never called on aliases
127or containers, and the above situation then cannot happen. Exploiting
128this exception is rarely necessary, and therefore it is discouraged,
129but nevertheless it is used in a few places.
130
131For regions that "have no owner" (NULL is passed at creation time), the
132machine object is actually used as the owner. Since instance_finalize is
133never called for the machine object, you must never call object_unparent
134on regions that have no owner, unless they are aliases or containers.
d8d95814 135
9d3a4736
AK
136
137Overlapping regions and priority
138--------------------------------
139Usually, regions may not overlap each other; a memory address decodes into
140exactly one target. In some cases it is useful to allow regions to overlap,
141and sometimes to control which of an overlapping regions is visible to the
142guest. This is done with memory_region_add_subregion_overlap(), which
143allows the region to overlap any other region in the same container, and
144specifies a priority that allows the core to decide which of two regions at
145the same address are visible (highest wins).
8002ccd6
MA
146Priority values are signed, and the default value is zero. This means that
147you can use memory_region_add_subregion_overlap() both to specify a region
148that must sit 'above' any others (with a positive priority) and also a
149background region that sits 'below' others (with a negative priority).
9d3a4736 150
6f1ce94a
PM
151If the higher priority region in an overlap is a container or alias, then
152the lower priority region will appear in any "holes" that the higher priority
153region has left by not mapping subregions to that area of its address range.
154(This applies recursively -- if the subregions are themselves containers or
155aliases that leave holes then the lower priority region will appear in these
156holes too.)
157
158For example, suppose we have a container A of size 0x8000 with two subregions
159B and C. B is a container mapped at 0x2000, size 0x4000, priority 1; C is
160an MMIO region mapped at 0x0, size 0x6000, priority 2. B currently has two
161of its own subregions: D of size 0x1000 at offset 0 and E of size 0x1000 at
162offset 0x2000. As a diagram:
163
164 0 1000 2000 3000 4000 5000 6000 7000 8000
165 |------|------|------|------|------|------|------|-------|
166 A: [ ]
167 C: [CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC]
168 B: [ ]
169 D: [DDDDD]
170 E: [EEEEE]
171
172The regions that will be seen within this address range then are:
173 [CCCCCCCCCCCC][DDDDD][CCCCC][EEEEE][CCCCC]
174
175Since B has higher priority than C, its subregions appear in the flat map
176even where they overlap with C. In ranges where B has not mapped anything
177C's region appears.
178
179If B had provided its own MMIO operations (ie it was not a pure container)
180then these would be used for any addresses in its range not handled by
181D or E, and the result would be:
182 [CCCCCCCCCCCC][DDDDD][BBBBB][EEEEE][BBBBB]
183
184Priority values are local to a container, because the priorities of two
185regions are only compared when they are both children of the same container.
186This means that the device in charge of the container (typically modelling
187a bus or a memory controller) can use them to manage the interaction of
188its child regions without any side effects on other parts of the system.
189In the example above, the priorities of D and E are unimportant because
190they do not overlap each other. It is the relative priority of B and C
191that causes D and E to appear on top of C: D and E's priorities are never
192compared against the priority of C.
193
9d3a4736
AK
194Visibility
195----------
196The memory core uses the following rules to select a memory region when the
197guest accesses an address:
198
199- all direct subregions of the root region are matched against the address, in
200 descending priority order
201 - if the address lies outside the region offset/size, the subregion is
202 discarded
6f1ce94a
PM
203 - if the subregion is a leaf (RAM or MMIO), the search terminates, returning
204 this leaf region
9d3a4736
AK
205 - if the subregion is a container, the same algorithm is used within the
206 subregion (after the address is adjusted by the subregion offset)
6f1ce94a 207 - if the subregion is an alias, the search is continued at the alias target
9d3a4736 208 (after the address is adjusted by the subregion offset and alias offset)
6f1ce94a
PM
209 - if a recursive search within a container or alias subregion does not
210 find a match (because of a "hole" in the container's coverage of its
211 address range), then if this is a container with its own MMIO or RAM
212 backing the search terminates, returning the container itself. Otherwise
213 we continue with the next subregion in priority order
214- if none of the subregions match the address then the search terminates
215 with no match found
9d3a4736
AK
216
217Example memory map
218------------------
219
220system_memory: container@0-2^48-1
221 |
222 +---- lomem: alias@0-0xdfffffff ---> #ram (0-0xdfffffff)
223 |
224 +---- himem: alias@0x100000000-0x11fffffff ---> #ram (0xe0000000-0xffffffff)
225 |
226 +---- vga-window: alias@0xa0000-0xbfffff ---> #pci (0xa0000-0xbffff)
227 | (prio 1)
228 |
229 +---- pci-hole: alias@0xe0000000-0xffffffff ---> #pci (0xe0000000-0xffffffff)
230
231pci (0-2^32-1)
232 |
233 +--- vga-area: container@0xa0000-0xbffff
234 | |
235 | +--- alias@0x00000-0x7fff ---> #vram (0x010000-0x017fff)
236 | |
237 | +--- alias@0x08000-0xffff ---> #vram (0x020000-0x027fff)
238 |
239 +---- vram: ram@0xe1000000-0xe1ffffff
240 |
241 +---- vga-mmio: mmio@0xe2000000-0xe200ffff
242
243ram: ram@0x00000000-0xffffffff
244
69ddaf66 245This is a (simplified) PC memory map. The 4GB RAM block is mapped into the
9d3a4736
AK
246system address space via two aliases: "lomem" is a 1:1 mapping of the first
2473.5GB; "himem" maps the last 0.5GB at address 4GB. This leaves 0.5GB for the
248so-called PCI hole, that allows a 32-bit PCI bus to exist in a system with
2494GB of memory.
250
251The memory controller diverts addresses in the range 640K-768K to the PCI
7075ba30 252address space. This is modelled using the "vga-window" alias, mapped at a
9d3a4736
AK
253higher priority so it obscures the RAM at the same addresses. The vga window
254can be removed by programming the memory controller; this is modelled by
255removing the alias and exposing the RAM underneath.
256
257The pci address space is not a direct child of the system address space, since
258we only want parts of it to be visible (we accomplish this using aliases).
259It has two subregions: vga-area models the legacy vga window and is occupied
260by two 32K memory banks pointing at two sections of the framebuffer.
261In addition the vram is mapped as a BAR at address e1000000, and an additional
262BAR containing MMIO registers is mapped after it.
263
264Note that if the guest maps a BAR outside the PCI hole, it would not be
265visible as the pci-hole alias clips it to a 0.5GB range.
266
9d3a4736
AK
267MMIO Operations
268---------------
269
270MMIO regions are provided with ->read() and ->write() callbacks; in addition
271various constraints can be supplied to control how these callbacks are called:
272
273 - .valid.min_access_size, .valid.max_access_size define the access sizes
274 (in bytes) which the device accepts; accesses outside this range will
275 have device and bus specific behaviour (ignored, or machine check)
276 - .valid.aligned specifies that the device only accepts naturally aligned
277 accesses. Unaligned accesses invoke device and bus specific behaviour.
278 - .impl.min_access_size, .impl.max_access_size define the access sizes
279 (in bytes) supported by the *implementation*; other access sizes will be
280 emulated using the ones available. For example a 4-byte write will be
69ddaf66 281 emulated using four 1-byte writes, if .impl.max_access_size = 1.
edc1ba7a
FZ
282 - .impl.unaligned specifies that the *implementation* supports unaligned
283 accesses; if false, unaligned accesses will be emulated by two aligned
284 accesses.
285 - .old_mmio can be used to ease porting from code using
286 cpu_register_io_memory(). It should not be used in new code.
This page took 0.273781 seconds and 4 git commands to generate.