]> git.ipfire.org Git - thirdparty/qemu.git/blame - memory_mapping.c
Update version for 2.11.2 release
[thirdparty/qemu.git] / memory_mapping.c
CommitLineData
80167a8a
WC
1/*
2 * QEMU memory mapping
3 *
4 * Copyright Fujitsu, Corp. 2011, 2012
5 *
6 * Authors:
7 * Wen Congyang <wency@cn.fujitsu.com>
8 *
fc0608ac
SW
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
80167a8a
WC
11 *
12 */
13
d38ea87a 14#include "qemu/osdep.h"
da34e65c 15#include "qapi/error.h"
c5d7f60f 16
94beb661 17#include "qemu-common.h"
80167a8a 18#include "cpu.h"
9c17d615 19#include "sysemu/memory_mapping.h"
c5d7f60f
LE
20#include "exec/memory.h"
21#include "exec/address-spaces.h"
22
23//#define DEBUG_GUEST_PHYS_REGION_ADD
80167a8a
WC
24
25static void memory_mapping_list_add_mapping_sorted(MemoryMappingList *list,
26 MemoryMapping *mapping)
27{
28 MemoryMapping *p;
29
30 QTAILQ_FOREACH(p, &list->head, next) {
31 if (p->phys_addr >= mapping->phys_addr) {
32 QTAILQ_INSERT_BEFORE(p, mapping, next);
33 return;
34 }
35 }
36 QTAILQ_INSERT_TAIL(&list->head, mapping, next);
37}
38
39static void create_new_memory_mapping(MemoryMappingList *list,
a8170e5e
AK
40 hwaddr phys_addr,
41 hwaddr virt_addr,
80167a8a
WC
42 ram_addr_t length)
43{
44 MemoryMapping *memory_mapping;
45
46 memory_mapping = g_malloc(sizeof(MemoryMapping));
47 memory_mapping->phys_addr = phys_addr;
48 memory_mapping->virt_addr = virt_addr;
49 memory_mapping->length = length;
50 list->last_mapping = memory_mapping;
51 list->num++;
52 memory_mapping_list_add_mapping_sorted(list, memory_mapping);
53}
54
55static inline bool mapping_contiguous(MemoryMapping *map,
a8170e5e
AK
56 hwaddr phys_addr,
57 hwaddr virt_addr)
80167a8a
WC
58{
59 return phys_addr == map->phys_addr + map->length &&
60 virt_addr == map->virt_addr + map->length;
61}
62
63/*
64 * [map->phys_addr, map->phys_addr + map->length) and
65 * [phys_addr, phys_addr + length) have intersection?
66 */
67static inline bool mapping_have_same_region(MemoryMapping *map,
a8170e5e 68 hwaddr phys_addr,
80167a8a
WC
69 ram_addr_t length)
70{
71 return !(phys_addr + length < map->phys_addr ||
72 phys_addr >= map->phys_addr + map->length);
73}
74
75/*
76 * [map->phys_addr, map->phys_addr + map->length) and
77 * [phys_addr, phys_addr + length) have intersection. The virtual address in the
78 * intersection are the same?
79 */
80static inline bool mapping_conflict(MemoryMapping *map,
a8170e5e
AK
81 hwaddr phys_addr,
82 hwaddr virt_addr)
80167a8a
WC
83{
84 return virt_addr - map->virt_addr != phys_addr - map->phys_addr;
85}
86
87/*
88 * [map->virt_addr, map->virt_addr + map->length) and
89 * [virt_addr, virt_addr + length) have intersection. And the physical address
90 * in the intersection are the same.
91 */
92static inline void mapping_merge(MemoryMapping *map,
a8170e5e 93 hwaddr virt_addr,
80167a8a
WC
94 ram_addr_t length)
95{
96 if (virt_addr < map->virt_addr) {
97 map->length += map->virt_addr - virt_addr;
98 map->virt_addr = virt_addr;
99 }
100
101 if ((virt_addr + length) >
102 (map->virt_addr + map->length)) {
103 map->length = virt_addr + length - map->virt_addr;
104 }
105}
106
107void memory_mapping_list_add_merge_sorted(MemoryMappingList *list,
a8170e5e
AK
108 hwaddr phys_addr,
109 hwaddr virt_addr,
80167a8a
WC
110 ram_addr_t length)
111{
112 MemoryMapping *memory_mapping, *last_mapping;
113
114 if (QTAILQ_EMPTY(&list->head)) {
115 create_new_memory_mapping(list, phys_addr, virt_addr, length);
116 return;
117 }
118
119 last_mapping = list->last_mapping;
120 if (last_mapping) {
121 if (mapping_contiguous(last_mapping, phys_addr, virt_addr)) {
122 last_mapping->length += length;
123 return;
124 }
125 }
126
127 QTAILQ_FOREACH(memory_mapping, &list->head, next) {
128 if (mapping_contiguous(memory_mapping, phys_addr, virt_addr)) {
129 memory_mapping->length += length;
130 list->last_mapping = memory_mapping;
131 return;
132 }
133
134 if (phys_addr + length < memory_mapping->phys_addr) {
135 /* create a new region before memory_mapping */
136 break;
137 }
138
139 if (mapping_have_same_region(memory_mapping, phys_addr, length)) {
140 if (mapping_conflict(memory_mapping, phys_addr, virt_addr)) {
141 continue;
142 }
143
144 /* merge this region into memory_mapping */
145 mapping_merge(memory_mapping, virt_addr, length);
146 list->last_mapping = memory_mapping;
147 return;
148 }
149 }
150
151 /* this region can not be merged into any existed memory mapping. */
152 create_new_memory_mapping(list, phys_addr, virt_addr, length);
153}
154
155void memory_mapping_list_free(MemoryMappingList *list)
156{
157 MemoryMapping *p, *q;
158
159 QTAILQ_FOREACH_SAFE(p, &list->head, next, q) {
160 QTAILQ_REMOVE(&list->head, p, next);
161 g_free(p);
162 }
163
164 list->num = 0;
165 list->last_mapping = NULL;
166}
167
168void memory_mapping_list_init(MemoryMappingList *list)
169{
170 list->num = 0;
171 list->last_mapping = NULL;
172 QTAILQ_INIT(&list->head);
173}
c517076d 174
5ee163e8
LE
175void guest_phys_blocks_free(GuestPhysBlockList *list)
176{
177 GuestPhysBlock *p, *q;
178
179 QTAILQ_FOREACH_SAFE(p, &list->head, next, q) {
180 QTAILQ_REMOVE(&list->head, p, next);
1fbeff72 181 memory_region_unref(p->mr);
5ee163e8
LE
182 g_free(p);
183 }
184 list->num = 0;
185}
186
187void guest_phys_blocks_init(GuestPhysBlockList *list)
188{
189 list->num = 0;
190 QTAILQ_INIT(&list->head);
191}
192
c5d7f60f
LE
193typedef struct GuestPhysListener {
194 GuestPhysBlockList *list;
195 MemoryListener listener;
196} GuestPhysListener;
197
198static void guest_phys_blocks_region_add(MemoryListener *listener,
199 MemoryRegionSection *section)
200{
201 GuestPhysListener *g;
202 uint64_t section_size;
203 hwaddr target_start, target_end;
204 uint8_t *host_addr;
205 GuestPhysBlock *predecessor;
206
207 /* we only care about RAM */
e4dc3f59 208 if (!memory_region_is_ram(section->mr) ||
21e00fa5 209 memory_region_is_ram_device(section->mr)) {
c5d7f60f
LE
210 return;
211 }
212
213 g = container_of(listener, GuestPhysListener, listener);
214 section_size = int128_get64(section->size);
215 target_start = section->offset_within_address_space;
216 target_end = target_start + section_size;
217 host_addr = memory_region_get_ram_ptr(section->mr) +
218 section->offset_within_region;
219 predecessor = NULL;
220
221 /* find continuity in guest physical address space */
222 if (!QTAILQ_EMPTY(&g->list->head)) {
223 hwaddr predecessor_size;
224
225 predecessor = QTAILQ_LAST(&g->list->head, GuestPhysBlockHead);
226 predecessor_size = predecessor->target_end - predecessor->target_start;
227
228 /* the memory API guarantees monotonically increasing traversal */
229 g_assert(predecessor->target_end <= target_start);
230
231 /* we want continuity in both guest-physical and host-virtual memory */
232 if (predecessor->target_end < target_start ||
233 predecessor->host_addr + predecessor_size != host_addr) {
234 predecessor = NULL;
235 }
236 }
237
238 if (predecessor == NULL) {
239 /* isolated mapping, allocate it and add it to the list */
240 GuestPhysBlock *block = g_malloc0(sizeof *block);
241
242 block->target_start = target_start;
243 block->target_end = target_end;
244 block->host_addr = host_addr;
1fbeff72
PX
245 block->mr = section->mr;
246 memory_region_ref(section->mr);
c5d7f60f
LE
247
248 QTAILQ_INSERT_TAIL(&g->list->head, block, next);
249 ++g->list->num;
250 } else {
251 /* expand predecessor until @target_end; predecessor's start doesn't
252 * change
253 */
254 predecessor->target_end = target_end;
255 }
256
257#ifdef DEBUG_GUEST_PHYS_REGION_ADD
258 fprintf(stderr, "%s: target_start=" TARGET_FMT_plx " target_end="
259 TARGET_FMT_plx ": %s (count: %u)\n", __FUNCTION__, target_start,
260 target_end, predecessor ? "joined" : "added", g->list->num);
261#endif
262}
263
264void guest_phys_blocks_append(GuestPhysBlockList *list)
265{
266 GuestPhysListener g = { 0 };
267
268 g.list = list;
269 g.listener.region_add = &guest_phys_blocks_region_add;
270 memory_listener_register(&g.listener, &address_space_memory);
271 memory_listener_unregister(&g.listener);
272}
273
182735ef 274static CPUState *find_paging_enabled_cpu(CPUState *start_cpu)
c517076d 275{
182735ef 276 CPUState *cpu;
c517076d 277
bdc44640 278 CPU_FOREACH(cpu) {
182735ef
AF
279 if (cpu_paging_enabled(cpu)) {
280 return cpu;
c517076d
WC
281 }
282 }
283
284 return NULL;
285}
286
56c4bfb3
LE
287void qemu_get_guest_memory_mapping(MemoryMappingList *list,
288 const GuestPhysBlockList *guest_phys_blocks,
289 Error **errp)
c517076d 290{
182735ef 291 CPUState *cpu, *first_paging_enabled_cpu;
56c4bfb3 292 GuestPhysBlock *block;
c517076d 293 ram_addr_t offset, length;
c517076d
WC
294
295 first_paging_enabled_cpu = find_paging_enabled_cpu(first_cpu);
296 if (first_paging_enabled_cpu) {
bdc44640
AF
297 for (cpu = first_paging_enabled_cpu; cpu != NULL;
298 cpu = CPU_NEXT(cpu)) {
a23bbfda 299 Error *err = NULL;
182735ef 300 cpu_get_memory_mapping(cpu, list, &err);
a23bbfda 301 if (err) {
11ed09cf
AF
302 error_propagate(errp, err);
303 return;
c517076d
WC
304 }
305 }
11ed09cf 306 return;
c517076d
WC
307 }
308
309 /*
310 * If the guest doesn't use paging, the virtual address is equal to physical
311 * address.
312 */
56c4bfb3
LE
313 QTAILQ_FOREACH(block, &guest_phys_blocks->head, next) {
314 offset = block->target_start;
315 length = block->target_end - block->target_start;
c517076d
WC
316 create_new_memory_mapping(list, offset, offset, length);
317 }
c517076d 318}
2b05ab52 319
56c4bfb3
LE
320void qemu_get_guest_simple_memory_mapping(MemoryMappingList *list,
321 const GuestPhysBlockList *guest_phys_blocks)
2b05ab52 322{
56c4bfb3 323 GuestPhysBlock *block;
2b05ab52 324
56c4bfb3
LE
325 QTAILQ_FOREACH(block, &guest_phys_blocks->head, next) {
326 create_new_memory_mapping(list, block->target_start, 0,
327 block->target_end - block->target_start);
2b05ab52
WC
328 }
329}
783e9b48
WC
330
331void memory_mapping_filter(MemoryMappingList *list, int64_t begin,
332 int64_t length)
333{
334 MemoryMapping *cur, *next;
335
336 QTAILQ_FOREACH_SAFE(cur, &list->head, next, next) {
337 if (cur->phys_addr >= begin + length ||
338 cur->phys_addr + cur->length <= begin) {
339 QTAILQ_REMOVE(&list->head, cur, next);
22c3aea8 340 g_free(cur);
783e9b48
WC
341 list->num--;
342 continue;
343 }
344
345 if (cur->phys_addr < begin) {
346 cur->length -= begin - cur->phys_addr;
347 if (cur->virt_addr) {
348 cur->virt_addr += begin - cur->phys_addr;
349 }
350 cur->phys_addr = begin;
351 }
352
353 if (cur->phys_addr + cur->length > begin + length) {
354 cur->length -= cur->phys_addr + cur->length - begin - length;
355 }
356 }
357}