Emulated CCID card: QOMify
[qemu/ar7.git] / memory_mapping.c
blob04db3ac7faf2caaec260959e7950400a993226d0
1 /*
2 * QEMU memory mapping
4 * Copyright Fujitsu, Corp. 2011, 2012
6 * Authors:
7 * Wen Congyang <wency@cn.fujitsu.com>
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.
14 #include "qemu/osdep.h"
15 #include <glib.h>
17 #include "qemu-common.h"
18 #include "cpu.h"
19 #include "sysemu/memory_mapping.h"
20 #include "exec/memory.h"
21 #include "exec/address-spaces.h"
23 //#define DEBUG_GUEST_PHYS_REGION_ADD
25 static void memory_mapping_list_add_mapping_sorted(MemoryMappingList *list,
26 MemoryMapping *mapping)
28 MemoryMapping *p;
30 QTAILQ_FOREACH(p, &list->head, next) {
31 if (p->phys_addr >= mapping->phys_addr) {
32 QTAILQ_INSERT_BEFORE(p, mapping, next);
33 return;
36 QTAILQ_INSERT_TAIL(&list->head, mapping, next);
39 static void create_new_memory_mapping(MemoryMappingList *list,
40 hwaddr phys_addr,
41 hwaddr virt_addr,
42 ram_addr_t length)
44 MemoryMapping *memory_mapping;
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);
55 static inline bool mapping_contiguous(MemoryMapping *map,
56 hwaddr phys_addr,
57 hwaddr virt_addr)
59 return phys_addr == map->phys_addr + map->length &&
60 virt_addr == map->virt_addr + map->length;
64 * [map->phys_addr, map->phys_addr + map->length) and
65 * [phys_addr, phys_addr + length) have intersection?
67 static inline bool mapping_have_same_region(MemoryMapping *map,
68 hwaddr phys_addr,
69 ram_addr_t length)
71 return !(phys_addr + length < map->phys_addr ||
72 phys_addr >= map->phys_addr + map->length);
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?
80 static inline bool mapping_conflict(MemoryMapping *map,
81 hwaddr phys_addr,
82 hwaddr virt_addr)
84 return virt_addr - map->virt_addr != phys_addr - map->phys_addr;
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.
92 static inline void mapping_merge(MemoryMapping *map,
93 hwaddr virt_addr,
94 ram_addr_t length)
96 if (virt_addr < map->virt_addr) {
97 map->length += map->virt_addr - virt_addr;
98 map->virt_addr = virt_addr;
101 if ((virt_addr + length) >
102 (map->virt_addr + map->length)) {
103 map->length = virt_addr + length - map->virt_addr;
107 void memory_mapping_list_add_merge_sorted(MemoryMappingList *list,
108 hwaddr phys_addr,
109 hwaddr virt_addr,
110 ram_addr_t length)
112 MemoryMapping *memory_mapping, *last_mapping;
114 if (QTAILQ_EMPTY(&list->head)) {
115 create_new_memory_mapping(list, phys_addr, virt_addr, length);
116 return;
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;
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;
134 if (phys_addr + length < memory_mapping->phys_addr) {
135 /* create a new region before memory_mapping */
136 break;
139 if (mapping_have_same_region(memory_mapping, phys_addr, length)) {
140 if (mapping_conflict(memory_mapping, phys_addr, virt_addr)) {
141 continue;
144 /* merge this region into memory_mapping */
145 mapping_merge(memory_mapping, virt_addr, length);
146 list->last_mapping = memory_mapping;
147 return;
151 /* this region can not be merged into any existed memory mapping. */
152 create_new_memory_mapping(list, phys_addr, virt_addr, length);
155 void memory_mapping_list_free(MemoryMappingList *list)
157 MemoryMapping *p, *q;
159 QTAILQ_FOREACH_SAFE(p, &list->head, next, q) {
160 QTAILQ_REMOVE(&list->head, p, next);
161 g_free(p);
164 list->num = 0;
165 list->last_mapping = NULL;
168 void memory_mapping_list_init(MemoryMappingList *list)
170 list->num = 0;
171 list->last_mapping = NULL;
172 QTAILQ_INIT(&list->head);
175 void guest_phys_blocks_free(GuestPhysBlockList *list)
177 GuestPhysBlock *p, *q;
179 QTAILQ_FOREACH_SAFE(p, &list->head, next, q) {
180 QTAILQ_REMOVE(&list->head, p, next);
181 g_free(p);
183 list->num = 0;
186 void guest_phys_blocks_init(GuestPhysBlockList *list)
188 list->num = 0;
189 QTAILQ_INIT(&list->head);
192 typedef struct GuestPhysListener {
193 GuestPhysBlockList *list;
194 MemoryListener listener;
195 } GuestPhysListener;
197 static void guest_phys_blocks_region_add(MemoryListener *listener,
198 MemoryRegionSection *section)
200 GuestPhysListener *g;
201 uint64_t section_size;
202 hwaddr target_start, target_end;
203 uint8_t *host_addr;
204 GuestPhysBlock *predecessor;
206 /* we only care about RAM */
207 if (!memory_region_is_ram(section->mr) ||
208 memory_region_is_skip_dump(section->mr)) {
209 return;
212 g = container_of(listener, GuestPhysListener, listener);
213 section_size = int128_get64(section->size);
214 target_start = section->offset_within_address_space;
215 target_end = target_start + section_size;
216 host_addr = memory_region_get_ram_ptr(section->mr) +
217 section->offset_within_region;
218 predecessor = NULL;
220 /* find continuity in guest physical address space */
221 if (!QTAILQ_EMPTY(&g->list->head)) {
222 hwaddr predecessor_size;
224 predecessor = QTAILQ_LAST(&g->list->head, GuestPhysBlockHead);
225 predecessor_size = predecessor->target_end - predecessor->target_start;
227 /* the memory API guarantees monotonically increasing traversal */
228 g_assert(predecessor->target_end <= target_start);
230 /* we want continuity in both guest-physical and host-virtual memory */
231 if (predecessor->target_end < target_start ||
232 predecessor->host_addr + predecessor_size != host_addr) {
233 predecessor = NULL;
237 if (predecessor == NULL) {
238 /* isolated mapping, allocate it and add it to the list */
239 GuestPhysBlock *block = g_malloc0(sizeof *block);
241 block->target_start = target_start;
242 block->target_end = target_end;
243 block->host_addr = host_addr;
245 QTAILQ_INSERT_TAIL(&g->list->head, block, next);
246 ++g->list->num;
247 } else {
248 /* expand predecessor until @target_end; predecessor's start doesn't
249 * change
251 predecessor->target_end = target_end;
254 #ifdef DEBUG_GUEST_PHYS_REGION_ADD
255 fprintf(stderr, "%s: target_start=" TARGET_FMT_plx " target_end="
256 TARGET_FMT_plx ": %s (count: %u)\n", __FUNCTION__, target_start,
257 target_end, predecessor ? "joined" : "added", g->list->num);
258 #endif
261 void guest_phys_blocks_append(GuestPhysBlockList *list)
263 GuestPhysListener g = { 0 };
265 g.list = list;
266 g.listener.region_add = &guest_phys_blocks_region_add;
267 memory_listener_register(&g.listener, &address_space_memory);
268 memory_listener_unregister(&g.listener);
271 static CPUState *find_paging_enabled_cpu(CPUState *start_cpu)
273 CPUState *cpu;
275 CPU_FOREACH(cpu) {
276 if (cpu_paging_enabled(cpu)) {
277 return cpu;
281 return NULL;
284 void qemu_get_guest_memory_mapping(MemoryMappingList *list,
285 const GuestPhysBlockList *guest_phys_blocks,
286 Error **errp)
288 CPUState *cpu, *first_paging_enabled_cpu;
289 GuestPhysBlock *block;
290 ram_addr_t offset, length;
292 first_paging_enabled_cpu = find_paging_enabled_cpu(first_cpu);
293 if (first_paging_enabled_cpu) {
294 for (cpu = first_paging_enabled_cpu; cpu != NULL;
295 cpu = CPU_NEXT(cpu)) {
296 Error *err = NULL;
297 cpu_get_memory_mapping(cpu, list, &err);
298 if (err) {
299 error_propagate(errp, err);
300 return;
303 return;
307 * If the guest doesn't use paging, the virtual address is equal to physical
308 * address.
310 QTAILQ_FOREACH(block, &guest_phys_blocks->head, next) {
311 offset = block->target_start;
312 length = block->target_end - block->target_start;
313 create_new_memory_mapping(list, offset, offset, length);
317 void qemu_get_guest_simple_memory_mapping(MemoryMappingList *list,
318 const GuestPhysBlockList *guest_phys_blocks)
320 GuestPhysBlock *block;
322 QTAILQ_FOREACH(block, &guest_phys_blocks->head, next) {
323 create_new_memory_mapping(list, block->target_start, 0,
324 block->target_end - block->target_start);
328 void memory_mapping_filter(MemoryMappingList *list, int64_t begin,
329 int64_t length)
331 MemoryMapping *cur, *next;
333 QTAILQ_FOREACH_SAFE(cur, &list->head, next, next) {
334 if (cur->phys_addr >= begin + length ||
335 cur->phys_addr + cur->length <= begin) {
336 QTAILQ_REMOVE(&list->head, cur, next);
337 list->num--;
338 continue;
341 if (cur->phys_addr < begin) {
342 cur->length -= begin - cur->phys_addr;
343 if (cur->virt_addr) {
344 cur->virt_addr += begin - cur->phys_addr;
346 cur->phys_addr = begin;
349 if (cur->phys_addr + cur->length > begin + length) {
350 cur->length -= cur->phys_addr + cur->length - begin - length;