]> git.proxmox.com Git - mirror_qemu.git/blame - include/exec/memory.h
Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20190903' into staging
[mirror_qemu.git] / include / exec / memory.h
CommitLineData
093bc2cd
AK
1/*
2 * Physical memory management API
3 *
4 * Copyright 2011 Red Hat, Inc. and/or its affiliates
5 *
6 * Authors:
7 * Avi Kivity <avi@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14#ifndef MEMORY_H
15#define MEMORY_H
16
17#ifndef CONFIG_USER_ONLY
18
022c62cb
PB
19#include "exec/cpu-common.h"
20#include "exec/hwaddr.h"
cc05c43a 21#include "exec/memattrs.h"
e67c9046 22#include "exec/memop.h"
0987d735 23#include "exec/ramlist.h"
1b53ecd9 24#include "qemu/bswap.h"
1de7afc9 25#include "qemu/queue.h"
1de7afc9 26#include "qemu/int128.h"
06866575 27#include "qemu/notify.h"
b4fefef9 28#include "qom/object.h"
374f2981 29#include "qemu/rcu.h"
093bc2cd 30
07bdaa41
PB
31#define RAM_ADDR_INVALID (~(ram_addr_t)0)
32
052e87b0
PB
33#define MAX_PHYS_ADDR_SPACE_BITS 62
34#define MAX_PHYS_ADDR (((hwaddr)1 << MAX_PHYS_ADDR_SPACE_BITS) - 1)
35
b4fefef9
PC
36#define TYPE_MEMORY_REGION "qemu:memory-region"
37#define MEMORY_REGION(obj) \
38 OBJECT_CHECK(MemoryRegion, (obj), TYPE_MEMORY_REGION)
39
3df9d748
AK
40#define TYPE_IOMMU_MEMORY_REGION "qemu:iommu-memory-region"
41#define IOMMU_MEMORY_REGION(obj) \
42 OBJECT_CHECK(IOMMUMemoryRegion, (obj), TYPE_IOMMU_MEMORY_REGION)
1221a474
AK
43#define IOMMU_MEMORY_REGION_CLASS(klass) \
44 OBJECT_CLASS_CHECK(IOMMUMemoryRegionClass, (klass), \
45 TYPE_IOMMU_MEMORY_REGION)
46#define IOMMU_MEMORY_REGION_GET_CLASS(obj) \
47 OBJECT_GET_CLASS(IOMMUMemoryRegionClass, (obj), \
48 TYPE_IOMMU_MEMORY_REGION)
3df9d748 49
ae7a2bca
PX
50extern bool global_dirty_log;
51
093bc2cd 52typedef struct MemoryRegionOps MemoryRegionOps;
74901c3b 53typedef struct MemoryRegionMmio MemoryRegionMmio;
093bc2cd 54
74901c3b
AK
55struct MemoryRegionMmio {
56 CPUReadMemoryFunc *read[3];
57 CPUWriteMemoryFunc *write[3];
58};
59
30951157
AK
60typedef struct IOMMUTLBEntry IOMMUTLBEntry;
61
62/* See address_space_translate: bit 0 is read, bit 1 is write. */
63typedef enum {
64 IOMMU_NONE = 0,
65 IOMMU_RO = 1,
66 IOMMU_WO = 2,
67 IOMMU_RW = 3,
68} IOMMUAccessFlags;
69
f06a696d
PX
70#define IOMMU_ACCESS_FLAG(r, w) (((r) ? IOMMU_RO : 0) | ((w) ? IOMMU_WO : 0))
71
30951157
AK
72struct IOMMUTLBEntry {
73 AddressSpace *target_as;
74 hwaddr iova;
75 hwaddr translated_addr;
76 hwaddr addr_mask; /* 0xfff = 4k translation */
77 IOMMUAccessFlags perm;
78};
79
cdb30812
PX
80/*
81 * Bitmap for different IOMMUNotifier capabilities. Each notifier can
82 * register with one or multiple IOMMU Notifier capability bit(s).
83 */
84typedef enum {
85 IOMMU_NOTIFIER_NONE = 0,
86 /* Notify cache invalidations */
87 IOMMU_NOTIFIER_UNMAP = 0x1,
88 /* Notify entry changes (newly created entries) */
89 IOMMU_NOTIFIER_MAP = 0x2,
90} IOMMUNotifierFlag;
91
92#define IOMMU_NOTIFIER_ALL (IOMMU_NOTIFIER_MAP | IOMMU_NOTIFIER_UNMAP)
93
698feb5e
PX
94struct IOMMUNotifier;
95typedef void (*IOMMUNotify)(struct IOMMUNotifier *notifier,
96 IOMMUTLBEntry *data);
97
cdb30812 98struct IOMMUNotifier {
698feb5e 99 IOMMUNotify notify;
cdb30812 100 IOMMUNotifierFlag notifier_flags;
698feb5e
PX
101 /* Notify for address space range start <= addr <= end */
102 hwaddr start;
103 hwaddr end;
cb1efcf4 104 int iommu_idx;
cdb30812
PX
105 QLIST_ENTRY(IOMMUNotifier) node;
106};
107typedef struct IOMMUNotifier IOMMUNotifier;
108
b0e5de93
JH
109/* RAM is pre-allocated and passed into qemu_ram_alloc_from_ptr */
110#define RAM_PREALLOC (1 << 0)
111
112/* RAM is mmap-ed with MAP_SHARED */
113#define RAM_SHARED (1 << 1)
114
115/* Only a portion of RAM (used_length) is actually used, and migrated.
116 * This used_length size can change across reboots.
117 */
118#define RAM_RESIZEABLE (1 << 2)
119
120/* UFFDIO_ZEROPAGE is available on this RAMBlock to atomically
121 * zero the page and wake waiting processes.
122 * (Set during postcopy)
123 */
124#define RAM_UF_ZEROPAGE (1 << 3)
125
126/* RAM can be migrated */
127#define RAM_MIGRATABLE (1 << 4)
128
a4de8552
JH
129/* RAM is a persistent kind memory */
130#define RAM_PMEM (1 << 5)
131
698feb5e
PX
132static inline void iommu_notifier_init(IOMMUNotifier *n, IOMMUNotify fn,
133 IOMMUNotifierFlag flags,
cb1efcf4
PM
134 hwaddr start, hwaddr end,
135 int iommu_idx)
698feb5e
PX
136{
137 n->notify = fn;
138 n->notifier_flags = flags;
139 n->start = start;
140 n->end = end;
cb1efcf4 141 n->iommu_idx = iommu_idx;
698feb5e
PX
142}
143
093bc2cd
AK
144/*
145 * Memory region callbacks
146 */
147struct MemoryRegionOps {
148 /* Read from the memory region. @addr is relative to @mr; @size is
149 * in bytes. */
150 uint64_t (*read)(void *opaque,
a8170e5e 151 hwaddr addr,
093bc2cd
AK
152 unsigned size);
153 /* Write to the memory region. @addr is relative to @mr; @size is
154 * in bytes. */
155 void (*write)(void *opaque,
a8170e5e 156 hwaddr addr,
093bc2cd
AK
157 uint64_t data,
158 unsigned size);
159
cc05c43a
PM
160 MemTxResult (*read_with_attrs)(void *opaque,
161 hwaddr addr,
162 uint64_t *data,
163 unsigned size,
164 MemTxAttrs attrs);
165 MemTxResult (*write_with_attrs)(void *opaque,
166 hwaddr addr,
167 uint64_t data,
168 unsigned size,
169 MemTxAttrs attrs);
170
093bc2cd
AK
171 enum device_endian endianness;
172 /* Guest-visible constraints: */
173 struct {
174 /* If nonzero, specify bounds on access sizes beyond which a machine
175 * check is thrown.
176 */
177 unsigned min_access_size;
178 unsigned max_access_size;
179 /* If true, unaligned accesses are supported. Otherwise unaligned
180 * accesses throw machine checks.
181 */
182 bool unaligned;
897fa7cf
AK
183 /*
184 * If present, and returns #false, the transaction is not accepted
185 * by the device (and results in machine dependent behaviour such
186 * as a machine check exception).
187 */
a8170e5e 188 bool (*accepts)(void *opaque, hwaddr addr,
8372d383
PM
189 unsigned size, bool is_write,
190 MemTxAttrs attrs);
093bc2cd
AK
191 } valid;
192 /* Internal implementation constraints: */
193 struct {
194 /* If nonzero, specifies the minimum size implemented. Smaller sizes
195 * will be rounded upwards and a partial result will be returned.
196 */
197 unsigned min_access_size;
198 /* If nonzero, specifies the maximum size implemented. Larger sizes
199 * will be done as a series of accesses with smaller sizes.
200 */
201 unsigned max_access_size;
202 /* If true, unaligned accesses are supported. Otherwise all accesses
203 * are converted to (possibly multiple) naturally aligned accesses.
204 */
edc1ba7a 205 bool unaligned;
093bc2cd
AK
206 } impl;
207};
208
1b53ecd9
MA
209typedef struct MemoryRegionClass {
210 /* private */
211 ObjectClass parent_class;
212} MemoryRegionClass;
213
214
f1334de6
AK
215enum IOMMUMemoryRegionAttr {
216 IOMMU_ATTR_SPAPR_TCE_FD
217};
218
2ce931d0
PM
219/**
220 * IOMMUMemoryRegionClass:
221 *
222 * All IOMMU implementations need to subclass TYPE_IOMMU_MEMORY_REGION
223 * and provide an implementation of at least the @translate method here
224 * to handle requests to the memory region. Other methods are optional.
225 *
226 * The IOMMU implementation must use the IOMMU notifier infrastructure
227 * to report whenever mappings are changed, by calling
228 * memory_region_notify_iommu() (or, if necessary, by calling
229 * memory_region_notify_one() for each registered notifier).
21f40209
PM
230 *
231 * Conceptually an IOMMU provides a mapping from input address
232 * to an output TLB entry. If the IOMMU is aware of memory transaction
233 * attributes and the output TLB entry depends on the transaction
234 * attributes, we represent this using IOMMU indexes. Each index
235 * selects a particular translation table that the IOMMU has:
236 * @attrs_to_index returns the IOMMU index for a set of transaction attributes
237 * @translate takes an input address and an IOMMU index
238 * and the mapping returned can only depend on the input address and the
239 * IOMMU index.
240 *
241 * Most IOMMUs don't care about the transaction attributes and support
242 * only a single IOMMU index. A more complex IOMMU might have one index
243 * for secure transactions and one for non-secure transactions.
2ce931d0 244 */
1221a474
AK
245typedef struct IOMMUMemoryRegionClass {
246 /* private */
1b53ecd9 247 MemoryRegionClass parent_class;
30951157 248
bf55b7af 249 /*
2ce931d0
PM
250 * Return a TLB entry that contains a given address.
251 *
252 * The IOMMUAccessFlags indicated via @flag are optional and may
253 * be specified as IOMMU_NONE to indicate that the caller needs
254 * the full translation information for both reads and writes. If
255 * the access flags are specified then the IOMMU implementation
256 * may use this as an optimization, to stop doing a page table
257 * walk as soon as it knows that the requested permissions are not
258 * allowed. If IOMMU_NONE is passed then the IOMMU must do the
259 * full page table walk and report the permissions in the returned
260 * IOMMUTLBEntry. (Note that this implies that an IOMMU may not
261 * return different mappings for reads and writes.)
262 *
263 * The returned information remains valid while the caller is
264 * holding the big QEMU lock or is inside an RCU critical section;
265 * if the caller wishes to cache the mapping beyond that it must
266 * register an IOMMU notifier so it can invalidate its cached
267 * information when the IOMMU mapping changes.
268 *
269 * @iommu: the IOMMUMemoryRegion
270 * @hwaddr: address to be translated within the memory region
271 * @flag: requested access permissions
2c91bcf2 272 * @iommu_idx: IOMMU index for the translation
bf55b7af 273 */
3df9d748 274 IOMMUTLBEntry (*translate)(IOMMUMemoryRegion *iommu, hwaddr addr,
2c91bcf2 275 IOMMUAccessFlags flag, int iommu_idx);
2ce931d0
PM
276 /* Returns minimum supported page size in bytes.
277 * If this method is not provided then the minimum is assumed to
278 * be TARGET_PAGE_SIZE.
279 *
280 * @iommu: the IOMMUMemoryRegion
281 */
3df9d748 282 uint64_t (*get_min_page_size)(IOMMUMemoryRegion *iommu);
2ce931d0
PM
283 /* Called when IOMMU Notifier flag changes (ie when the set of
284 * events which IOMMU users are requesting notification for changes).
285 * Optional method -- need not be provided if the IOMMU does not
286 * need to know exactly which events must be notified.
287 *
288 * @iommu: the IOMMUMemoryRegion
289 * @old_flags: events which previously needed to be notified
290 * @new_flags: events which now need to be notified
291 */
3df9d748 292 void (*notify_flag_changed)(IOMMUMemoryRegion *iommu,
5bf3d319
PX
293 IOMMUNotifierFlag old_flags,
294 IOMMUNotifierFlag new_flags);
2ce931d0
PM
295 /* Called to handle memory_region_iommu_replay().
296 *
297 * The default implementation of memory_region_iommu_replay() is to
298 * call the IOMMU translate method for every page in the address space
299 * with flag == IOMMU_NONE and then call the notifier if translate
300 * returns a valid mapping. If this method is implemented then it
301 * overrides the default behaviour, and must provide the full semantics
302 * of memory_region_iommu_replay(), by calling @notifier for every
303 * translation present in the IOMMU.
304 *
305 * Optional method -- an IOMMU only needs to provide this method
306 * if the default is inefficient or produces undesirable side effects.
307 *
308 * Note: this is not related to record-and-replay functionality.
309 */
3df9d748 310 void (*replay)(IOMMUMemoryRegion *iommu, IOMMUNotifier *notifier);
f1334de6 311
2ce931d0
PM
312 /* Get IOMMU misc attributes. This is an optional method that
313 * can be used to allow users of the IOMMU to get implementation-specific
314 * information. The IOMMU implements this method to handle calls
315 * by IOMMU users to memory_region_iommu_get_attr() by filling in
316 * the arbitrary data pointer for any IOMMUMemoryRegionAttr values that
317 * the IOMMU supports. If the method is unimplemented then
318 * memory_region_iommu_get_attr() will always return -EINVAL.
319 *
320 * @iommu: the IOMMUMemoryRegion
321 * @attr: attribute being queried
322 * @data: memory to fill in with the attribute data
323 *
324 * Returns 0 on success, or a negative errno; in particular
325 * returns -EINVAL for unrecognized or unimplemented attribute types.
326 */
327 int (*get_attr)(IOMMUMemoryRegion *iommu, enum IOMMUMemoryRegionAttr attr,
f1334de6 328 void *data);
21f40209
PM
329
330 /* Return the IOMMU index to use for a given set of transaction attributes.
331 *
332 * Optional method: if an IOMMU only supports a single IOMMU index then
333 * the default implementation of memory_region_iommu_attrs_to_index()
334 * will return 0.
335 *
336 * The indexes supported by an IOMMU must be contiguous, starting at 0.
337 *
338 * @iommu: the IOMMUMemoryRegion
339 * @attrs: memory transaction attributes
340 */
341 int (*attrs_to_index)(IOMMUMemoryRegion *iommu, MemTxAttrs attrs);
342
343 /* Return the number of IOMMU indexes this IOMMU supports.
344 *
345 * Optional method: if this method is not provided, then
346 * memory_region_iommu_num_indexes() will return 1, indicating that
347 * only a single IOMMU index is supported.
348 *
349 * @iommu: the IOMMUMemoryRegion
350 */
351 int (*num_indexes)(IOMMUMemoryRegion *iommu);
1221a474 352} IOMMUMemoryRegionClass;
30951157 353
093bc2cd 354typedef struct CoalescedMemoryRange CoalescedMemoryRange;
3e9d69e7 355typedef struct MemoryRegionIoeventfd MemoryRegionIoeventfd;
093bc2cd
AK
356
357struct MemoryRegion {
b4fefef9 358 Object parent_obj;
a676854f 359
093bc2cd 360 /* All fields are private - violators will be prosecuted */
a676854f
PB
361
362 /* The following fields should fit in a cache line */
363 bool romd_mode;
364 bool ram;
365 bool subpage;
366 bool readonly; /* For RAM regions */
c26763f8 367 bool nonvolatile;
a676854f
PB
368 bool rom_device;
369 bool flush_coalesced_mmio;
370 bool global_locking;
371 uint8_t dirty_log_mask;
3df9d748 372 bool is_iommu;
58eaa217 373 RAMBlock *ram_block;
612263cf 374 Object *owner;
a676854f
PB
375
376 const MemoryRegionOps *ops;
093bc2cd 377 void *opaque;
feca4ac1 378 MemoryRegion *container;
08dafab4 379 Int128 size;
a8170e5e 380 hwaddr addr;
545e92e0 381 void (*destructor)(MemoryRegion *mr);
a2b257d6 382 uint64_t align;
14a3c10a 383 bool terminates;
21e00fa5 384 bool ram_device;
6bba19ba 385 bool enabled;
1660e72d 386 bool warning_printed; /* For reservations */
deb809ed 387 uint8_t vga_logging_count;
093bc2cd 388 MemoryRegion *alias;
a8170e5e 389 hwaddr alias_offset;
d33382da 390 int32_t priority;
b58deb34 391 QTAILQ_HEAD(, MemoryRegion) subregions;
093bc2cd 392 QTAILQ_ENTRY(MemoryRegion) subregions_link;
b58deb34 393 QTAILQ_HEAD(, CoalescedMemoryRange) coalesced;
302fa283 394 const char *name;
3e9d69e7
AK
395 unsigned ioeventfd_nb;
396 MemoryRegionIoeventfd *ioeventfds;
3df9d748
AK
397};
398
399struct IOMMUMemoryRegion {
400 MemoryRegion parent_obj;
401
cdb30812 402 QLIST_HEAD(, IOMMUNotifier) iommu_notify;
5bf3d319 403 IOMMUNotifierFlag iommu_notify_flags;
093bc2cd
AK
404};
405
512fa408
PX
406#define IOMMU_NOTIFIER_FOREACH(n, mr) \
407 QLIST_FOREACH((n), &(mr)->iommu_notify, node)
408
c2fc83e8
PB
409/**
410 * MemoryListener: callbacks structure for updates to the physical memory map
411 *
412 * Allows a component to adjust to changes in the guest-visible memory map.
413 * Use with memory_listener_register() and memory_listener_unregister().
414 */
415struct MemoryListener {
416 void (*begin)(MemoryListener *listener);
417 void (*commit)(MemoryListener *listener);
418 void (*region_add)(MemoryListener *listener, MemoryRegionSection *section);
419 void (*region_del)(MemoryListener *listener, MemoryRegionSection *section);
420 void (*region_nop)(MemoryListener *listener, MemoryRegionSection *section);
b2dfd71c
PB
421 void (*log_start)(MemoryListener *listener, MemoryRegionSection *section,
422 int old, int new);
423 void (*log_stop)(MemoryListener *listener, MemoryRegionSection *section,
424 int old, int new);
c2fc83e8 425 void (*log_sync)(MemoryListener *listener, MemoryRegionSection *section);
077874e0 426 void (*log_clear)(MemoryListener *listener, MemoryRegionSection *section);
c2fc83e8
PB
427 void (*log_global_start)(MemoryListener *listener);
428 void (*log_global_stop)(MemoryListener *listener);
9458a9a1 429 void (*log_global_after_sync)(MemoryListener *listener);
c2fc83e8
PB
430 void (*eventfd_add)(MemoryListener *listener, MemoryRegionSection *section,
431 bool match_data, uint64_t data, EventNotifier *e);
432 void (*eventfd_del)(MemoryListener *listener, MemoryRegionSection *section,
433 bool match_data, uint64_t data, EventNotifier *e);
e6d34aee 434 void (*coalesced_io_add)(MemoryListener *listener, MemoryRegionSection *section,
c2fc83e8 435 hwaddr addr, hwaddr len);
e6d34aee 436 void (*coalesced_io_del)(MemoryListener *listener, MemoryRegionSection *section,
c2fc83e8
PB
437 hwaddr addr, hwaddr len);
438 /* Lower = earlier (during add), later (during del) */
439 unsigned priority;
d45fa784 440 AddressSpace *address_space;
c2fc83e8 441 QTAILQ_ENTRY(MemoryListener) link;
9a54635d 442 QTAILQ_ENTRY(MemoryListener) link_as;
c2fc83e8
PB
443};
444
9ad2bbc1
AK
445/**
446 * AddressSpace: describes a mapping of addresses to #MemoryRegion objects
447 */
448struct AddressSpace {
449 /* All fields are private. */
374f2981 450 struct rcu_head rcu;
7dca8043 451 char *name;
9ad2bbc1 452 MemoryRegion *root;
374f2981
PB
453
454 /* Accessed via RCU. */
9ad2bbc1 455 struct FlatView *current_map;
374f2981 456
9ad2bbc1
AK
457 int ioeventfd_nb;
458 struct MemoryRegionIoeventfd *ioeventfds;
eae3eb3e 459 QTAILQ_HEAD(, MemoryListener) listeners;
0d673e36 460 QTAILQ_ENTRY(AddressSpace) address_spaces_link;
9ad2bbc1
AK
461};
462
785a507e
PB
463typedef struct AddressSpaceDispatch AddressSpaceDispatch;
464typedef struct FlatRange FlatRange;
465
466/* Flattened global view of current active memory hierarchy. Kept in sorted
467 * order.
468 */
469struct FlatView {
470 struct rcu_head rcu;
471 unsigned ref;
472 FlatRange *ranges;
473 unsigned nr;
474 unsigned nr_allocated;
475 struct AddressSpaceDispatch *dispatch;
476 MemoryRegion *root;
477};
478
479static inline FlatView *address_space_to_flatview(AddressSpace *as)
480{
481 return atomic_rcu_read(&as->current_map);
482}
483
16620684 484
e2177955
AK
485/**
486 * MemoryRegionSection: describes a fragment of a #MemoryRegion
487 *
488 * @mr: the region, or %NULL if empty
57914ecb 489 * @fv: the flat view of the address space the region is mapped in
e2177955
AK
490 * @offset_within_region: the beginning of the section, relative to @mr's start
491 * @size: the size of the section; will not exceed @mr's boundaries
492 * @offset_within_address_space: the address of the first byte of the section
493 * relative to the region's address space
7a8499e8 494 * @readonly: writes to this section are ignored
c26763f8 495 * @nonvolatile: this section is non-volatile
e2177955
AK
496 */
497struct MemoryRegionSection {
498 MemoryRegion *mr;
16620684 499 FlatView *fv;
a8170e5e 500 hwaddr offset_within_region;
052e87b0 501 Int128 size;
a8170e5e 502 hwaddr offset_within_address_space;
7a8499e8 503 bool readonly;
c26763f8 504 bool nonvolatile;
e2177955
AK
505};
506
093bc2cd
AK
507/**
508 * memory_region_init: Initialize a memory region
509 *
69ddaf66 510 * The region typically acts as a container for other memory regions. Use
093bc2cd
AK
511 * memory_region_add_subregion() to add subregions.
512 *
513 * @mr: the #MemoryRegion to be initialized
2c9b15ca 514 * @owner: the object that tracks the region's reference count
093bc2cd
AK
515 * @name: used for debugging; not visible to the user or ABI
516 * @size: size of the region; any subregions beyond this size will be clipped
517 */
518void memory_region_init(MemoryRegion *mr,
2c9b15ca 519 struct Object *owner,
093bc2cd
AK
520 const char *name,
521 uint64_t size);
46637be2
PB
522
523/**
524 * memory_region_ref: Add 1 to a memory region's reference count
525 *
526 * Whenever memory regions are accessed outside the BQL, they need to be
527 * preserved against hot-unplug. MemoryRegions actually do not have their
528 * own reference count; they piggyback on a QOM object, their "owner".
529 * This function adds a reference to the owner.
530 *
531 * All MemoryRegions must have an owner if they can disappear, even if the
532 * device they belong to operates exclusively under the BQL. This is because
533 * the region could be returned at any time by memory_region_find, and this
534 * is usually under guest control.
535 *
536 * @mr: the #MemoryRegion
537 */
538void memory_region_ref(MemoryRegion *mr);
539
540/**
541 * memory_region_unref: Remove 1 to a memory region's reference count
542 *
543 * Whenever memory regions are accessed outside the BQL, they need to be
544 * preserved against hot-unplug. MemoryRegions actually do not have their
545 * own reference count; they piggyback on a QOM object, their "owner".
546 * This function removes a reference to the owner and possibly destroys it.
547 *
548 * @mr: the #MemoryRegion
549 */
550void memory_region_unref(MemoryRegion *mr);
551
093bc2cd
AK
552/**
553 * memory_region_init_io: Initialize an I/O memory region.
554 *
69ddaf66 555 * Accesses into the region will cause the callbacks in @ops to be called.
093bc2cd
AK
556 * if @size is nonzero, subregions will be clipped to @size.
557 *
558 * @mr: the #MemoryRegion to be initialized.
2c9b15ca 559 * @owner: the object that tracks the region's reference count
093bc2cd
AK
560 * @ops: a structure containing read and write callbacks to be used when
561 * I/O is performed on the region.
b6af0975 562 * @opaque: passed to the read and write callbacks of the @ops structure.
093bc2cd
AK
563 * @name: used for debugging; not visible to the user or ABI
564 * @size: size of the region.
565 */
566void memory_region_init_io(MemoryRegion *mr,
2c9b15ca 567 struct Object *owner,
093bc2cd
AK
568 const MemoryRegionOps *ops,
569 void *opaque,
570 const char *name,
571 uint64_t size);
572
573/**
1cfe48c1
PM
574 * memory_region_init_ram_nomigrate: Initialize RAM memory region. Accesses
575 * into the region will modify memory
576 * directly.
093bc2cd
AK
577 *
578 * @mr: the #MemoryRegion to be initialized.
2c9b15ca 579 * @owner: the object that tracks the region's reference count
e8f5fe2d
DDAG
580 * @name: Region name, becomes part of RAMBlock name used in migration stream
581 * must be unique within any device
093bc2cd 582 * @size: size of the region.
49946538 583 * @errp: pointer to Error*, to store an error if it happens.
a5c0234b
PM
584 *
585 * Note that this function does not do anything to cause the data in the
586 * RAM memory region to be migrated; that is the responsibility of the caller.
093bc2cd 587 */
1cfe48c1
PM
588void memory_region_init_ram_nomigrate(MemoryRegion *mr,
589 struct Object *owner,
590 const char *name,
591 uint64_t size,
592 Error **errp);
093bc2cd 593
06329cce
MA
594/**
595 * memory_region_init_ram_shared_nomigrate: Initialize RAM memory region.
596 * Accesses into the region will
597 * modify memory directly.
598 *
599 * @mr: the #MemoryRegion to be initialized.
600 * @owner: the object that tracks the region's reference count
601 * @name: Region name, becomes part of RAMBlock name used in migration stream
602 * must be unique within any device
603 * @size: size of the region.
604 * @share: allow remapping RAM to different addresses
605 * @errp: pointer to Error*, to store an error if it happens.
606 *
607 * Note that this function is similar to memory_region_init_ram_nomigrate.
608 * The only difference is part of the RAM region can be remapped.
609 */
610void memory_region_init_ram_shared_nomigrate(MemoryRegion *mr,
611 struct Object *owner,
612 const char *name,
613 uint64_t size,
614 bool share,
615 Error **errp);
616
60786ef3
MT
617/**
618 * memory_region_init_resizeable_ram: Initialize memory region with resizeable
619 * RAM. Accesses into the region will
620 * modify memory directly. Only an initial
621 * portion of this RAM is actually used.
622 * The used size can change across reboots.
623 *
624 * @mr: the #MemoryRegion to be initialized.
625 * @owner: the object that tracks the region's reference count
e8f5fe2d
DDAG
626 * @name: Region name, becomes part of RAMBlock name used in migration stream
627 * must be unique within any device
60786ef3
MT
628 * @size: used size of the region.
629 * @max_size: max size of the region.
630 * @resized: callback to notify owner about used size change.
631 * @errp: pointer to Error*, to store an error if it happens.
a5c0234b
PM
632 *
633 * Note that this function does not do anything to cause the data in the
634 * RAM memory region to be migrated; that is the responsibility of the caller.
60786ef3
MT
635 */
636void memory_region_init_resizeable_ram(MemoryRegion *mr,
637 struct Object *owner,
638 const char *name,
639 uint64_t size,
640 uint64_t max_size,
641 void (*resized)(const char*,
642 uint64_t length,
643 void *host),
644 Error **errp);
d5dbde46 645#ifdef CONFIG_POSIX
cbfc0171 646
0b183fc8
PB
647/**
648 * memory_region_init_ram_from_file: Initialize RAM memory region with a
649 * mmap-ed backend.
650 *
651 * @mr: the #MemoryRegion to be initialized.
652 * @owner: the object that tracks the region's reference count
e8f5fe2d
DDAG
653 * @name: Region name, becomes part of RAMBlock name used in migration stream
654 * must be unique within any device
0b183fc8 655 * @size: size of the region.
98376843
HZ
656 * @align: alignment of the region base address; if 0, the default alignment
657 * (getpagesize()) will be used.
cbfc0171
JH
658 * @ram_flags: Memory region features:
659 * - RAM_SHARED: memory must be mmaped with the MAP_SHARED flag
a4de8552 660 * - RAM_PMEM: the memory is persistent memory
cbfc0171 661 * Other bits are ignored now.
0b183fc8 662 * @path: the path in which to allocate the RAM.
7f56e740 663 * @errp: pointer to Error*, to store an error if it happens.
a5c0234b
PM
664 *
665 * Note that this function does not do anything to cause the data in the
666 * RAM memory region to be migrated; that is the responsibility of the caller.
0b183fc8
PB
667 */
668void memory_region_init_ram_from_file(MemoryRegion *mr,
669 struct Object *owner,
670 const char *name,
671 uint64_t size,
98376843 672 uint64_t align,
cbfc0171 673 uint32_t ram_flags,
7f56e740
PB
674 const char *path,
675 Error **errp);
fea617c5
MAL
676
677/**
678 * memory_region_init_ram_from_fd: Initialize RAM memory region with a
679 * mmap-ed backend.
680 *
681 * @mr: the #MemoryRegion to be initialized.
682 * @owner: the object that tracks the region's reference count
683 * @name: the name of the region.
684 * @size: size of the region.
685 * @share: %true if memory must be mmaped with the MAP_SHARED flag
686 * @fd: the fd to mmap.
687 * @errp: pointer to Error*, to store an error if it happens.
a5c0234b
PM
688 *
689 * Note that this function does not do anything to cause the data in the
690 * RAM memory region to be migrated; that is the responsibility of the caller.
fea617c5
MAL
691 */
692void memory_region_init_ram_from_fd(MemoryRegion *mr,
693 struct Object *owner,
694 const char *name,
695 uint64_t size,
696 bool share,
697 int fd,
698 Error **errp);
0b183fc8
PB
699#endif
700
093bc2cd 701/**
1a7e8cae
BZ
702 * memory_region_init_ram_ptr: Initialize RAM memory region from a
703 * user-provided pointer. Accesses into the
704 * region will modify memory directly.
093bc2cd
AK
705 *
706 * @mr: the #MemoryRegion to be initialized.
2c9b15ca 707 * @owner: the object that tracks the region's reference count
e8f5fe2d
DDAG
708 * @name: Region name, becomes part of RAMBlock name used in migration stream
709 * must be unique within any device
093bc2cd
AK
710 * @size: size of the region.
711 * @ptr: memory to be mapped; must contain at least @size bytes.
a5c0234b
PM
712 *
713 * Note that this function does not do anything to cause the data in the
714 * RAM memory region to be migrated; that is the responsibility of the caller.
093bc2cd
AK
715 */
716void memory_region_init_ram_ptr(MemoryRegion *mr,
2c9b15ca 717 struct Object *owner,
093bc2cd
AK
718 const char *name,
719 uint64_t size,
720 void *ptr);
721
21e00fa5
AW
722/**
723 * memory_region_init_ram_device_ptr: Initialize RAM device memory region from
724 * a user-provided pointer.
725 *
726 * A RAM device represents a mapping to a physical device, such as to a PCI
727 * MMIO BAR of an vfio-pci assigned device. The memory region may be mapped
728 * into the VM address space and access to the region will modify memory
729 * directly. However, the memory region should not be included in a memory
730 * dump (device may not be enabled/mapped at the time of the dump), and
731 * operations incompatible with manipulating MMIO should be avoided. Replaces
732 * skip_dump flag.
733 *
734 * @mr: the #MemoryRegion to be initialized.
735 * @owner: the object that tracks the region's reference count
736 * @name: the name of the region.
737 * @size: size of the region.
738 * @ptr: memory to be mapped; must contain at least @size bytes.
a5c0234b
PM
739 *
740 * Note that this function does not do anything to cause the data in the
741 * RAM memory region to be migrated; that is the responsibility of the caller.
742 * (For RAM device memory regions, migrating the contents rarely makes sense.)
21e00fa5
AW
743 */
744void memory_region_init_ram_device_ptr(MemoryRegion *mr,
745 struct Object *owner,
746 const char *name,
747 uint64_t size,
748 void *ptr);
749
093bc2cd
AK
750/**
751 * memory_region_init_alias: Initialize a memory region that aliases all or a
752 * part of another memory region.
753 *
754 * @mr: the #MemoryRegion to be initialized.
2c9b15ca 755 * @owner: the object that tracks the region's reference count
093bc2cd
AK
756 * @name: used for debugging; not visible to the user or ABI
757 * @orig: the region to be referenced; @mr will be equivalent to
758 * @orig between @offset and @offset + @size - 1.
759 * @offset: start of the section in @orig to be referenced.
760 * @size: size of the region.
761 */
762void memory_region_init_alias(MemoryRegion *mr,
2c9b15ca 763 struct Object *owner,
093bc2cd
AK
764 const char *name,
765 MemoryRegion *orig,
a8170e5e 766 hwaddr offset,
093bc2cd 767 uint64_t size);
d0a9b5bc 768
a1777f7f 769/**
b59821a9 770 * memory_region_init_rom_nomigrate: Initialize a ROM memory region.
a1777f7f 771 *
b59821a9 772 * This has the same effect as calling memory_region_init_ram_nomigrate()
a1777f7f
PM
773 * and then marking the resulting region read-only with
774 * memory_region_set_readonly().
775 *
b59821a9
PM
776 * Note that this function does not do anything to cause the data in the
777 * RAM side of the memory region to be migrated; that is the responsibility
778 * of the caller.
779 *
a1777f7f
PM
780 * @mr: the #MemoryRegion to be initialized.
781 * @owner: the object that tracks the region's reference count
e8f5fe2d
DDAG
782 * @name: Region name, becomes part of RAMBlock name used in migration stream
783 * must be unique within any device
a1777f7f
PM
784 * @size: size of the region.
785 * @errp: pointer to Error*, to store an error if it happens.
786 */
b59821a9
PM
787void memory_region_init_rom_nomigrate(MemoryRegion *mr,
788 struct Object *owner,
789 const char *name,
790 uint64_t size,
791 Error **errp);
a1777f7f 792
d0a9b5bc 793/**
b59821a9
PM
794 * memory_region_init_rom_device_nomigrate: Initialize a ROM memory region.
795 * Writes are handled via callbacks.
796 *
797 * Note that this function does not do anything to cause the data in the
798 * RAM side of the memory region to be migrated; that is the responsibility
799 * of the caller.
d0a9b5bc
AK
800 *
801 * @mr: the #MemoryRegion to be initialized.
2c9b15ca 802 * @owner: the object that tracks the region's reference count
39e0b03d 803 * @ops: callbacks for write access handling (must not be NULL).
57914ecb 804 * @opaque: passed to the read and write callbacks of the @ops structure.
e8f5fe2d
DDAG
805 * @name: Region name, becomes part of RAMBlock name used in migration stream
806 * must be unique within any device
d0a9b5bc 807 * @size: size of the region.
33e0eb52 808 * @errp: pointer to Error*, to store an error if it happens.
d0a9b5bc 809 */
b59821a9
PM
810void memory_region_init_rom_device_nomigrate(MemoryRegion *mr,
811 struct Object *owner,
812 const MemoryRegionOps *ops,
813 void *opaque,
814 const char *name,
815 uint64_t size,
816 Error **errp);
d0a9b5bc 817
30951157 818/**
1221a474
AK
819 * memory_region_init_iommu: Initialize a memory region of a custom type
820 * that translates addresses
30951157
AK
821 *
822 * An IOMMU region translates addresses and forwards accesses to a target
823 * memory region.
824 *
2ce931d0
PM
825 * The IOMMU implementation must define a subclass of TYPE_IOMMU_MEMORY_REGION.
826 * @_iommu_mr should be a pointer to enough memory for an instance of
827 * that subclass, @instance_size is the size of that subclass, and
828 * @mrtypename is its name. This function will initialize @_iommu_mr as an
829 * instance of the subclass, and its methods will then be called to handle
830 * accesses to the memory region. See the documentation of
831 * #IOMMUMemoryRegionClass for further details.
832 *
1221a474
AK
833 * @_iommu_mr: the #IOMMUMemoryRegion to be initialized
834 * @instance_size: the IOMMUMemoryRegion subclass instance size
57914ecb 835 * @mrtypename: the type name of the #IOMMUMemoryRegion
2c9b15ca 836 * @owner: the object that tracks the region's reference count
30951157
AK
837 * @name: used for debugging; not visible to the user or ABI
838 * @size: size of the region.
839 */
1221a474
AK
840void memory_region_init_iommu(void *_iommu_mr,
841 size_t instance_size,
842 const char *mrtypename,
843 Object *owner,
30951157
AK
844 const char *name,
845 uint64_t size);
846
b08199c6
PM
847/**
848 * memory_region_init_ram - Initialize RAM memory region. Accesses into the
849 * region will modify memory directly.
850 *
851 * @mr: the #MemoryRegion to be initialized
852 * @owner: the object that tracks the region's reference count (must be
853 * TYPE_DEVICE or a subclass of TYPE_DEVICE, or NULL)
854 * @name: name of the memory region
855 * @size: size of the region in bytes
856 * @errp: pointer to Error*, to store an error if it happens.
857 *
858 * This function allocates RAM for a board model or device, and
859 * arranges for it to be migrated (by calling vmstate_register_ram()
860 * if @owner is a DeviceState, or vmstate_register_ram_global() if
861 * @owner is NULL).
862 *
863 * TODO: Currently we restrict @owner to being either NULL (for
864 * global RAM regions with no owner) or devices, so that we can
865 * give the RAM block a unique name for migration purposes.
866 * We should lift this restriction and allow arbitrary Objects.
867 * If you pass a non-NULL non-device @owner then we will assert.
868 */
869void memory_region_init_ram(MemoryRegion *mr,
870 struct Object *owner,
871 const char *name,
872 uint64_t size,
873 Error **errp);
874
875/**
876 * memory_region_init_rom: Initialize a ROM memory region.
877 *
878 * This has the same effect as calling memory_region_init_ram()
879 * and then marking the resulting region read-only with
880 * memory_region_set_readonly(). This includes arranging for the
881 * contents to be migrated.
882 *
883 * TODO: Currently we restrict @owner to being either NULL (for
884 * global RAM regions with no owner) or devices, so that we can
885 * give the RAM block a unique name for migration purposes.
886 * We should lift this restriction and allow arbitrary Objects.
887 * If you pass a non-NULL non-device @owner then we will assert.
888 *
889 * @mr: the #MemoryRegion to be initialized.
890 * @owner: the object that tracks the region's reference count
891 * @name: Region name, becomes part of RAMBlock name used in migration stream
892 * must be unique within any device
893 * @size: size of the region.
894 * @errp: pointer to Error*, to store an error if it happens.
895 */
896void memory_region_init_rom(MemoryRegion *mr,
897 struct Object *owner,
898 const char *name,
899 uint64_t size,
900 Error **errp);
901
902/**
903 * memory_region_init_rom_device: Initialize a ROM memory region.
904 * Writes are handled via callbacks.
905 *
906 * This function initializes a memory region backed by RAM for reads
907 * and callbacks for writes, and arranges for the RAM backing to
908 * be migrated (by calling vmstate_register_ram()
909 * if @owner is a DeviceState, or vmstate_register_ram_global() if
910 * @owner is NULL).
911 *
912 * TODO: Currently we restrict @owner to being either NULL (for
913 * global RAM regions with no owner) or devices, so that we can
914 * give the RAM block a unique name for migration purposes.
915 * We should lift this restriction and allow arbitrary Objects.
916 * If you pass a non-NULL non-device @owner then we will assert.
917 *
918 * @mr: the #MemoryRegion to be initialized.
919 * @owner: the object that tracks the region's reference count
920 * @ops: callbacks for write access handling (must not be NULL).
921 * @name: Region name, becomes part of RAMBlock name used in migration stream
922 * must be unique within any device
923 * @size: size of the region.
924 * @errp: pointer to Error*, to store an error if it happens.
925 */
926void memory_region_init_rom_device(MemoryRegion *mr,
927 struct Object *owner,
928 const MemoryRegionOps *ops,
929 void *opaque,
930 const char *name,
931 uint64_t size,
932 Error **errp);
933
934
803c0816
PB
935/**
936 * memory_region_owner: get a memory region's owner.
937 *
938 * @mr: the memory region being queried.
939 */
940struct Object *memory_region_owner(MemoryRegion *mr);
941
093bc2cd
AK
942/**
943 * memory_region_size: get a memory region's size.
944 *
945 * @mr: the memory region being queried.
946 */
947uint64_t memory_region_size(MemoryRegion *mr);
948
8ea9252a
AK
949/**
950 * memory_region_is_ram: check whether a memory region is random access
951 *
847b31f0 952 * Returns %true if a memory region is random access.
8ea9252a
AK
953 *
954 * @mr: the memory region being queried
955 */
1619d1fe
PB
956static inline bool memory_region_is_ram(MemoryRegion *mr)
957{
958 return mr->ram;
959}
8ea9252a 960
e4dc3f59 961/**
21e00fa5 962 * memory_region_is_ram_device: check whether a memory region is a ram device
e4dc3f59 963 *
847b31f0 964 * Returns %true if a memory region is a device backed ram region
e4dc3f59
ND
965 *
966 * @mr: the memory region being queried
967 */
21e00fa5 968bool memory_region_is_ram_device(MemoryRegion *mr);
e4dc3f59 969
fd062573 970/**
5f9a5ea1 971 * memory_region_is_romd: check whether a memory region is in ROMD mode
fd062573 972 *
5f9a5ea1 973 * Returns %true if a memory region is a ROM device and currently set to allow
fd062573
BS
974 * direct reads.
975 *
976 * @mr: the memory region being queried
977 */
978static inline bool memory_region_is_romd(MemoryRegion *mr)
979{
5f9a5ea1 980 return mr->rom_device && mr->romd_mode;
fd062573
BS
981}
982
30951157 983/**
3df9d748 984 * memory_region_get_iommu: check whether a memory region is an iommu
30951157 985 *
3df9d748
AK
986 * Returns pointer to IOMMUMemoryRegion if a memory region is an iommu,
987 * otherwise NULL.
30951157
AK
988 *
989 * @mr: the memory region being queried
990 */
3df9d748 991static inline IOMMUMemoryRegion *memory_region_get_iommu(MemoryRegion *mr)
1619d1fe 992{
12d37882 993 if (mr->alias) {
3df9d748
AK
994 return memory_region_get_iommu(mr->alias);
995 }
996 if (mr->is_iommu) {
997 return (IOMMUMemoryRegion *) mr;
12d37882 998 }
3df9d748 999 return NULL;
1619d1fe
PB
1000}
1001
1221a474
AK
1002/**
1003 * memory_region_get_iommu_class_nocheck: returns iommu memory region class
1004 * if an iommu or NULL if not
1005 *
57914ecb
JZ
1006 * Returns pointer to IOMMUMemoryRegionClass if a memory region is an iommu,
1007 * otherwise NULL. This is fast path avoiding QOM checking, use with caution.
1221a474
AK
1008 *
1009 * @mr: the memory region being queried
1010 */
1011static inline IOMMUMemoryRegionClass *memory_region_get_iommu_class_nocheck(
1012 IOMMUMemoryRegion *iommu_mr)
1013{
1014 return (IOMMUMemoryRegionClass *) (((Object *)iommu_mr)->class);
1015}
1016
3df9d748 1017#define memory_region_is_iommu(mr) (memory_region_get_iommu(mr) != NULL)
30951157 1018
f682e9c2
AK
1019/**
1020 * memory_region_iommu_get_min_page_size: get minimum supported page size
1021 * for an iommu
1022 *
1023 * Returns minimum supported page size for an iommu.
1024 *
3df9d748 1025 * @iommu_mr: the memory region being queried
f682e9c2 1026 */
3df9d748 1027uint64_t memory_region_iommu_get_min_page_size(IOMMUMemoryRegion *iommu_mr);
f682e9c2 1028
06866575
DG
1029/**
1030 * memory_region_notify_iommu: notify a change in an IOMMU translation entry.
1031 *
cdb30812
PX
1032 * The notification type will be decided by entry.perm bits:
1033 *
1034 * - For UNMAP (cache invalidation) notifies: set entry.perm to IOMMU_NONE.
1035 * - For MAP (newly added entry) notifies: set entry.perm to the
1036 * permission of the page (which is definitely !IOMMU_NONE).
1037 *
1038 * Note: for any IOMMU implementation, an in-place mapping change
1039 * should be notified with an UNMAP followed by a MAP.
1040 *
3df9d748 1041 * @iommu_mr: the memory region that was changed
cb1efcf4 1042 * @iommu_idx: the IOMMU index for the translation table which has changed
06866575
DG
1043 * @entry: the new entry in the IOMMU translation table. The entry
1044 * replaces all old entries for the same virtual I/O address range.
1045 * Deleted entries have .@perm == 0.
1046 */
3df9d748 1047void memory_region_notify_iommu(IOMMUMemoryRegion *iommu_mr,
cb1efcf4 1048 int iommu_idx,
06866575
DG
1049 IOMMUTLBEntry entry);
1050
bd2bfa4c
PX
1051/**
1052 * memory_region_notify_one: notify a change in an IOMMU translation
1053 * entry to a single notifier
1054 *
1055 * This works just like memory_region_notify_iommu(), but it only
1056 * notifies a specific notifier, not all of them.
1057 *
1058 * @notifier: the notifier to be notified
1059 * @entry: the new entry in the IOMMU translation table. The entry
1060 * replaces all old entries for the same virtual I/O address range.
1061 * Deleted entries have .@perm == 0.
1062 */
1063void memory_region_notify_one(IOMMUNotifier *notifier,
1064 IOMMUTLBEntry *entry);
1065
06866575
DG
1066/**
1067 * memory_region_register_iommu_notifier: register a notifier for changes to
1068 * IOMMU translation entries.
1069 *
1070 * @mr: the memory region to observe
cdb30812
PX
1071 * @n: the IOMMUNotifier to be added; the notify callback receives a
1072 * pointer to an #IOMMUTLBEntry as the opaque value; the pointer
1073 * ceases to be valid on exit from the notifier.
06866575 1074 */
cdb30812
PX
1075void memory_region_register_iommu_notifier(MemoryRegion *mr,
1076 IOMMUNotifier *n);
06866575 1077
a788f227
DG
1078/**
1079 * memory_region_iommu_replay: replay existing IOMMU translations to
f682e9c2
AK
1080 * a notifier with the minimum page granularity returned by
1081 * mr->iommu_ops->get_page_size().
a788f227 1082 *
2ce931d0
PM
1083 * Note: this is not related to record-and-replay functionality.
1084 *
3df9d748 1085 * @iommu_mr: the memory region to observe
a788f227 1086 * @n: the notifier to which to replay iommu mappings
a788f227 1087 */
3df9d748 1088void memory_region_iommu_replay(IOMMUMemoryRegion *iommu_mr, IOMMUNotifier *n);
a788f227 1089
06866575
DG
1090/**
1091 * memory_region_unregister_iommu_notifier: unregister a notifier for
1092 * changes to IOMMU translation entries.
1093 *
d22d8956
AK
1094 * @mr: the memory region which was observed and for which notity_stopped()
1095 * needs to be called
06866575
DG
1096 * @n: the notifier to be removed.
1097 */
cdb30812
PX
1098void memory_region_unregister_iommu_notifier(MemoryRegion *mr,
1099 IOMMUNotifier *n);
06866575 1100
f1334de6
AK
1101/**
1102 * memory_region_iommu_get_attr: return an IOMMU attr if get_attr() is
1103 * defined on the IOMMU.
1104 *
2ce931d0
PM
1105 * Returns 0 on success, or a negative errno otherwise. In particular,
1106 * -EINVAL indicates that the IOMMU does not support the requested
1107 * attribute.
f1334de6
AK
1108 *
1109 * @iommu_mr: the memory region
1110 * @attr: the requested attribute
1111 * @data: a pointer to the requested attribute data
1112 */
1113int memory_region_iommu_get_attr(IOMMUMemoryRegion *iommu_mr,
1114 enum IOMMUMemoryRegionAttr attr,
1115 void *data);
1116
21f40209
PM
1117/**
1118 * memory_region_iommu_attrs_to_index: return the IOMMU index to
1119 * use for translations with the given memory transaction attributes.
1120 *
1121 * @iommu_mr: the memory region
1122 * @attrs: the memory transaction attributes
1123 */
1124int memory_region_iommu_attrs_to_index(IOMMUMemoryRegion *iommu_mr,
1125 MemTxAttrs attrs);
1126
1127/**
1128 * memory_region_iommu_num_indexes: return the total number of IOMMU
1129 * indexes that this IOMMU supports.
1130 *
1131 * @iommu_mr: the memory region
1132 */
1133int memory_region_iommu_num_indexes(IOMMUMemoryRegion *iommu_mr);
1134
8991c79b
AK
1135/**
1136 * memory_region_name: get a memory region's name
1137 *
1138 * Returns the string that was used to initialize the memory region.
1139 *
1140 * @mr: the memory region being queried
1141 */
5d546d4b 1142const char *memory_region_name(const MemoryRegion *mr);
8991c79b 1143
55043ba3
AK
1144/**
1145 * memory_region_is_logging: return whether a memory region is logging writes
1146 *
2d1a35be 1147 * Returns %true if the memory region is logging writes for the given client
55043ba3
AK
1148 *
1149 * @mr: the memory region being queried
2d1a35be 1150 * @client: the client being queried
55043ba3 1151 */
2d1a35be
PB
1152bool memory_region_is_logging(MemoryRegion *mr, uint8_t client);
1153
1154/**
1155 * memory_region_get_dirty_log_mask: return the clients for which a
1156 * memory region is logging writes.
1157 *
677e7805
PB
1158 * Returns a bitmap of clients, in which the DIRTY_MEMORY_* constants
1159 * are the bit indices.
2d1a35be
PB
1160 *
1161 * @mr: the memory region being queried
1162 */
1163uint8_t memory_region_get_dirty_log_mask(MemoryRegion *mr);
55043ba3 1164
ce7923da
AK
1165/**
1166 * memory_region_is_rom: check whether a memory region is ROM
1167 *
847b31f0 1168 * Returns %true if a memory region is read-only memory.
ce7923da
AK
1169 *
1170 * @mr: the memory region being queried
1171 */
1619d1fe
PB
1172static inline bool memory_region_is_rom(MemoryRegion *mr)
1173{
1174 return mr->ram && mr->readonly;
1175}
1176
c26763f8
MAL
1177/**
1178 * memory_region_is_nonvolatile: check whether a memory region is non-volatile
1179 *
1180 * Returns %true is a memory region is non-volatile memory.
1181 *
1182 * @mr: the memory region being queried
1183 */
1184static inline bool memory_region_is_nonvolatile(MemoryRegion *mr)
1185{
1186 return mr->nonvolatile;
1187}
ce7923da 1188
a35ba7be
PB
1189/**
1190 * memory_region_get_fd: Get a file descriptor backing a RAM memory region.
1191 *
1192 * Returns a file descriptor backing a file-based RAM memory region,
1193 * or -1 if the region is not a file-based RAM memory region.
1194 *
1195 * @mr: the RAM or alias memory region being queried.
1196 */
1197int memory_region_get_fd(MemoryRegion *mr);
1198
07bdaa41
PB
1199/**
1200 * memory_region_from_host: Convert a pointer into a RAM memory region
1201 * and an offset within it.
1202 *
1203 * Given a host pointer inside a RAM memory region (created with
1204 * memory_region_init_ram() or memory_region_init_ram_ptr()), return
1205 * the MemoryRegion and the offset within it.
1206 *
1207 * Use with care; by the time this function returns, the returned pointer is
1208 * not protected by RCU anymore. If the caller is not within an RCU critical
1209 * section and does not hold the iothread lock, it must have other means of
1210 * protecting the pointer, such as a reference to the region that includes
1211 * the incoming ram_addr_t.
1212 *
57914ecb
JZ
1213 * @ptr: the host pointer to be converted
1214 * @offset: the offset within memory region
07bdaa41
PB
1215 */
1216MemoryRegion *memory_region_from_host(void *ptr, ram_addr_t *offset);
1217
093bc2cd
AK
1218/**
1219 * memory_region_get_ram_ptr: Get a pointer into a RAM memory region.
1220 *
1221 * Returns a host pointer to a RAM memory region (created with
49b24afc
PB
1222 * memory_region_init_ram() or memory_region_init_ram_ptr()).
1223 *
1224 * Use with care; by the time this function returns, the returned pointer is
1225 * not protected by RCU anymore. If the caller is not within an RCU critical
1226 * section and does not hold the iothread lock, it must have other means of
1227 * protecting the pointer, such as a reference to the region that includes
1228 * the incoming ram_addr_t.
093bc2cd
AK
1229 *
1230 * @mr: the memory region being queried.
1231 */
1232void *memory_region_get_ram_ptr(MemoryRegion *mr);
1233
37d7c084
PB
1234/* memory_region_ram_resize: Resize a RAM region.
1235 *
1236 * Only legal before guest might have detected the memory size: e.g. on
1237 * incoming migration, or right after reset.
1238 *
1239 * @mr: a memory region created with @memory_region_init_resizeable_ram.
1240 * @newsize: the new size the region
1241 * @errp: pointer to Error*, to store an error if it happens.
1242 */
1243void memory_region_ram_resize(MemoryRegion *mr, ram_addr_t newsize,
1244 Error **errp);
1245
093bc2cd
AK
1246/**
1247 * memory_region_set_log: Turn dirty logging on or off for a region.
1248 *
1249 * Turns dirty logging on or off for a specified client (display, migration).
1250 * Only meaningful for RAM regions.
1251 *
1252 * @mr: the memory region being updated.
1253 * @log: whether dirty logging is to be enabled or disabled.
dbddac6d 1254 * @client: the user of the logging information; %DIRTY_MEMORY_VGA only.
093bc2cd
AK
1255 */
1256void memory_region_set_log(MemoryRegion *mr, bool log, unsigned client);
1257
093bc2cd 1258/**
fd4aa979 1259 * memory_region_set_dirty: Mark a range of bytes as dirty in a memory region.
093bc2cd 1260 *
fd4aa979
BS
1261 * Marks a range of bytes as dirty, after it has been dirtied outside
1262 * guest code.
093bc2cd 1263 *
fd4aa979 1264 * @mr: the memory region being dirtied.
093bc2cd 1265 * @addr: the address (relative to the start of the region) being dirtied.
fd4aa979 1266 * @size: size of the range being dirtied.
093bc2cd 1267 */
a8170e5e
AK
1268void memory_region_set_dirty(MemoryRegion *mr, hwaddr addr,
1269 hwaddr size);
093bc2cd 1270
077874e0
PX
1271/**
1272 * memory_region_clear_dirty_bitmap - clear dirty bitmap for memory range
1273 *
1274 * This function is called when the caller wants to clear the remote
1275 * dirty bitmap of a memory range within the memory region. This can
1276 * be used by e.g. KVM to manually clear dirty log when
1277 * KVM_CAP_MANUAL_DIRTY_LOG_PROTECT is declared support by the host
1278 * kernel.
1279 *
1280 * @mr: the memory region to clear the dirty log upon
1281 * @start: start address offset within the memory region
1282 * @len: length of the memory region to clear dirty bitmap
1283 */
1284void memory_region_clear_dirty_bitmap(MemoryRegion *mr, hwaddr start,
1285 hwaddr len);
1286
8deaf12c
GH
1287/**
1288 * memory_region_snapshot_and_clear_dirty: Get a snapshot of the dirty
1289 * bitmap and clear it.
1290 *
1291 * Creates a snapshot of the dirty bitmap, clears the dirty bitmap and
1292 * returns the snapshot. The snapshot can then be used to query dirty
77302fb5
PB
1293 * status, using memory_region_snapshot_get_dirty. Snapshotting allows
1294 * querying the same page multiple times, which is especially useful for
1295 * display updates where the scanlines often are not page aligned.
8deaf12c
GH
1296 *
1297 * The dirty bitmap region which gets copyed into the snapshot (and
1298 * cleared afterwards) can be larger than requested. The boundaries
1299 * are rounded up/down so complete bitmap longs (covering 64 pages on
1300 * 64bit hosts) can be copied over into the bitmap snapshot. Which
1301 * isn't a problem for display updates as the extra pages are outside
1302 * the visible area, and in case the visible area changes a full
1303 * display redraw is due anyway. Should other use cases for this
1304 * function emerge we might have to revisit this implementation
1305 * detail.
1306 *
1307 * Use g_free to release DirtyBitmapSnapshot.
1308 *
1309 * @mr: the memory region being queried.
1310 * @addr: the address (relative to the start of the region) being queried.
1311 * @size: the size of the range being queried.
1312 * @client: the user of the logging information; typically %DIRTY_MEMORY_VGA.
1313 */
1314DirtyBitmapSnapshot *memory_region_snapshot_and_clear_dirty(MemoryRegion *mr,
1315 hwaddr addr,
1316 hwaddr size,
1317 unsigned client);
1318
1319/**
1320 * memory_region_snapshot_get_dirty: Check whether a range of bytes is dirty
1321 * in the specified dirty bitmap snapshot.
1322 *
1323 * @mr: the memory region being queried.
1324 * @snap: the dirty bitmap snapshot
1325 * @addr: the address (relative to the start of the region) being queried.
1326 * @size: the size of the range being queried.
1327 */
1328bool memory_region_snapshot_get_dirty(MemoryRegion *mr,
1329 DirtyBitmapSnapshot *snap,
1330 hwaddr addr, hwaddr size);
1331
093bc2cd
AK
1332/**
1333 * memory_region_reset_dirty: Mark a range of pages as clean, for a specified
1334 * client.
1335 *
1336 * Marks a range of pages as no longer dirty.
1337 *
1338 * @mr: the region being updated.
1339 * @addr: the start of the subrange being cleaned.
1340 * @size: the size of the subrange being cleaned.
1341 * @client: the user of the logging information; %DIRTY_MEMORY_MIGRATION or
1342 * %DIRTY_MEMORY_VGA.
1343 */
a8170e5e
AK
1344void memory_region_reset_dirty(MemoryRegion *mr, hwaddr addr,
1345 hwaddr size, unsigned client);
093bc2cd 1346
047be4ed
SH
1347/**
1348 * memory_region_flush_rom_device: Mark a range of pages dirty and invalidate
1349 * TBs (for self-modifying code).
1350 *
1351 * The MemoryRegionOps->write() callback of a ROM device must use this function
1352 * to mark byte ranges that have been modified internally, such as by directly
1353 * accessing the memory returned by memory_region_get_ram_ptr().
1354 *
1355 * This function marks the range dirty and invalidates TBs so that TCG can
1356 * detect self-modifying code.
1357 *
1358 * @mr: the region being flushed.
1359 * @addr: the start, relative to the start of the region, of the range being
1360 * flushed.
1361 * @size: the size, in bytes, of the range being flushed.
1362 */
1363void memory_region_flush_rom_device(MemoryRegion *mr, hwaddr addr, hwaddr size);
1364
093bc2cd
AK
1365/**
1366 * memory_region_set_readonly: Turn a memory region read-only (or read-write)
1367 *
1368 * Allows a memory region to be marked as read-only (turning it into a ROM).
1369 * only useful on RAM regions.
1370 *
1371 * @mr: the region being updated.
1372 * @readonly: whether rhe region is to be ROM or RAM.
1373 */
1374void memory_region_set_readonly(MemoryRegion *mr, bool readonly);
1375
c26763f8
MAL
1376/**
1377 * memory_region_set_nonvolatile: Turn a memory region non-volatile
1378 *
1379 * Allows a memory region to be marked as non-volatile.
1380 * only useful on RAM regions.
1381 *
1382 * @mr: the region being updated.
1383 * @nonvolatile: whether rhe region is to be non-volatile.
1384 */
1385void memory_region_set_nonvolatile(MemoryRegion *mr, bool nonvolatile);
1386
d0a9b5bc 1387/**
5f9a5ea1 1388 * memory_region_rom_device_set_romd: enable/disable ROMD mode
d0a9b5bc
AK
1389 *
1390 * Allows a ROM device (initialized with memory_region_init_rom_device() to
5f9a5ea1
JK
1391 * set to ROMD mode (default) or MMIO mode. When it is in ROMD mode, the
1392 * device is mapped to guest memory and satisfies read access directly.
1393 * When in MMIO mode, reads are forwarded to the #MemoryRegion.read function.
1394 * Writes are always handled by the #MemoryRegion.write function.
d0a9b5bc
AK
1395 *
1396 * @mr: the memory region to be updated
5f9a5ea1 1397 * @romd_mode: %true to put the region into ROMD mode
d0a9b5bc 1398 */
5f9a5ea1 1399void memory_region_rom_device_set_romd(MemoryRegion *mr, bool romd_mode);
d0a9b5bc 1400
093bc2cd
AK
1401/**
1402 * memory_region_set_coalescing: Enable memory coalescing for the region.
1403 *
1404 * Enabled writes to a region to be queued for later processing. MMIO ->write
1405 * callbacks may be delayed until a non-coalesced MMIO is issued.
1406 * Only useful for IO regions. Roughly similar to write-combining hardware.
1407 *
1408 * @mr: the memory region to be write coalesced
1409 */
1410void memory_region_set_coalescing(MemoryRegion *mr);
1411
1412/**
1413 * memory_region_add_coalescing: Enable memory coalescing for a sub-range of
1414 * a region.
1415 *
1416 * Like memory_region_set_coalescing(), but works on a sub-range of a region.
1417 * Multiple calls can be issued coalesced disjoint ranges.
1418 *
1419 * @mr: the memory region to be updated.
1420 * @offset: the start of the range within the region to be coalesced.
1421 * @size: the size of the subrange to be coalesced.
1422 */
1423void memory_region_add_coalescing(MemoryRegion *mr,
a8170e5e 1424 hwaddr offset,
093bc2cd
AK
1425 uint64_t size);
1426
1427/**
1428 * memory_region_clear_coalescing: Disable MMIO coalescing for the region.
1429 *
1430 * Disables any coalescing caused by memory_region_set_coalescing() or
1431 * memory_region_add_coalescing(). Roughly equivalent to uncacheble memory
1432 * hardware.
1433 *
1434 * @mr: the memory region to be updated.
1435 */
1436void memory_region_clear_coalescing(MemoryRegion *mr);
1437
d410515e
JK
1438/**
1439 * memory_region_set_flush_coalesced: Enforce memory coalescing flush before
1440 * accesses.
1441 *
1442 * Ensure that pending coalesced MMIO request are flushed before the memory
1443 * region is accessed. This property is automatically enabled for all regions
1444 * passed to memory_region_set_coalescing() and memory_region_add_coalescing().
1445 *
1446 * @mr: the memory region to be updated.
1447 */
1448void memory_region_set_flush_coalesced(MemoryRegion *mr);
1449
1450/**
1451 * memory_region_clear_flush_coalesced: Disable memory coalescing flush before
1452 * accesses.
1453 *
1454 * Clear the automatic coalesced MMIO flushing enabled via
1455 * memory_region_set_flush_coalesced. Note that this service has no effect on
1456 * memory regions that have MMIO coalescing enabled for themselves. For them,
1457 * automatic flushing will stop once coalescing is disabled.
1458 *
1459 * @mr: the memory region to be updated.
1460 */
1461void memory_region_clear_flush_coalesced(MemoryRegion *mr);
1462
196ea131
JK
1463/**
1464 * memory_region_clear_global_locking: Declares that access processing does
1465 * not depend on the QEMU global lock.
1466 *
1467 * By clearing this property, accesses to the memory region will be processed
1468 * outside of QEMU's global lock (unless the lock is held on when issuing the
1469 * access request). In this case, the device model implementing the access
1470 * handlers is responsible for synchronization of concurrency.
1471 *
1472 * @mr: the memory region to be updated.
1473 */
1474void memory_region_clear_global_locking(MemoryRegion *mr);
1475
3e9d69e7
AK
1476/**
1477 * memory_region_add_eventfd: Request an eventfd to be triggered when a word
1478 * is written to a location.
1479 *
1480 * Marks a word in an IO region (initialized with memory_region_init_io())
1481 * as a trigger for an eventfd event. The I/O callback will not be called.
69ddaf66 1482 * The caller must be prepared to handle failure (that is, take the required
3e9d69e7
AK
1483 * action if the callback _is_ called).
1484 *
1485 * @mr: the memory region being updated.
1486 * @addr: the address within @mr that is to be monitored
1487 * @size: the size of the access to trigger the eventfd
1488 * @match_data: whether to match against @data, instead of just @addr
1489 * @data: the data to match against the guest write
57914ecb 1490 * @e: event notifier to be triggered when @addr, @size, and @data all match.
3e9d69e7
AK
1491 **/
1492void memory_region_add_eventfd(MemoryRegion *mr,
a8170e5e 1493 hwaddr addr,
3e9d69e7
AK
1494 unsigned size,
1495 bool match_data,
1496 uint64_t data,
753d5e14 1497 EventNotifier *e);
3e9d69e7
AK
1498
1499/**
69ddaf66 1500 * memory_region_del_eventfd: Cancel an eventfd.
3e9d69e7 1501 *
69ddaf66
ASRJ
1502 * Cancels an eventfd trigger requested by a previous
1503 * memory_region_add_eventfd() call.
3e9d69e7
AK
1504 *
1505 * @mr: the memory region being updated.
1506 * @addr: the address within @mr that is to be monitored
1507 * @size: the size of the access to trigger the eventfd
1508 * @match_data: whether to match against @data, instead of just @addr
1509 * @data: the data to match against the guest write
57914ecb 1510 * @e: event notifier to be triggered when @addr, @size, and @data all match.
3e9d69e7
AK
1511 */
1512void memory_region_del_eventfd(MemoryRegion *mr,
a8170e5e 1513 hwaddr addr,
3e9d69e7
AK
1514 unsigned size,
1515 bool match_data,
1516 uint64_t data,
753d5e14
PB
1517 EventNotifier *e);
1518
093bc2cd 1519/**
69ddaf66 1520 * memory_region_add_subregion: Add a subregion to a container.
093bc2cd 1521 *
69ddaf66 1522 * Adds a subregion at @offset. The subregion may not overlap with other
093bc2cd
AK
1523 * subregions (except for those explicitly marked as overlapping). A region
1524 * may only be added once as a subregion (unless removed with
1525 * memory_region_del_subregion()); use memory_region_init_alias() if you
1526 * want a region to be a subregion in multiple locations.
1527 *
1528 * @mr: the region to contain the new subregion; must be a container
1529 * initialized with memory_region_init().
1530 * @offset: the offset relative to @mr where @subregion is added.
1531 * @subregion: the subregion to be added.
1532 */
1533void memory_region_add_subregion(MemoryRegion *mr,
a8170e5e 1534 hwaddr offset,
093bc2cd
AK
1535 MemoryRegion *subregion);
1536/**
1a7e8cae
BZ
1537 * memory_region_add_subregion_overlap: Add a subregion to a container
1538 * with overlap.
093bc2cd 1539 *
69ddaf66 1540 * Adds a subregion at @offset. The subregion may overlap with other
093bc2cd
AK
1541 * subregions. Conflicts are resolved by having a higher @priority hide a
1542 * lower @priority. Subregions without priority are taken as @priority 0.
1543 * A region may only be added once as a subregion (unless removed with
1544 * memory_region_del_subregion()); use memory_region_init_alias() if you
1545 * want a region to be a subregion in multiple locations.
1546 *
1547 * @mr: the region to contain the new subregion; must be a container
1548 * initialized with memory_region_init().
1549 * @offset: the offset relative to @mr where @subregion is added.
1550 * @subregion: the subregion to be added.
1551 * @priority: used for resolving overlaps; highest priority wins.
1552 */
1553void memory_region_add_subregion_overlap(MemoryRegion *mr,
a8170e5e 1554 hwaddr offset,
093bc2cd 1555 MemoryRegion *subregion,
a1ff8ae0 1556 int priority);
e34911c4
AK
1557
1558/**
1559 * memory_region_get_ram_addr: Get the ram address associated with a memory
1560 * region
e34911c4 1561 */
7ebb2745 1562ram_addr_t memory_region_get_ram_addr(MemoryRegion *mr);
e34911c4 1563
a2b257d6 1564uint64_t memory_region_get_alignment(const MemoryRegion *mr);
093bc2cd
AK
1565/**
1566 * memory_region_del_subregion: Remove a subregion.
1567 *
1568 * Removes a subregion from its container.
1569 *
1570 * @mr: the container to be updated.
1571 * @subregion: the region being removed; must be a current subregion of @mr.
1572 */
1573void memory_region_del_subregion(MemoryRegion *mr,
1574 MemoryRegion *subregion);
1575
6bba19ba
AK
1576/*
1577 * memory_region_set_enabled: dynamically enable or disable a region
1578 *
1579 * Enables or disables a memory region. A disabled memory region
1580 * ignores all accesses to itself and its subregions. It does not
1581 * obscure sibling subregions with lower priority - it simply behaves as
1582 * if it was removed from the hierarchy.
1583 *
1584 * Regions default to being enabled.
1585 *
1586 * @mr: the region to be updated
1587 * @enabled: whether to enable or disable the region
1588 */
1589void memory_region_set_enabled(MemoryRegion *mr, bool enabled);
1590
2282e1af
AK
1591/*
1592 * memory_region_set_address: dynamically update the address of a region
1593 *
feca4ac1 1594 * Dynamically updates the address of a region, relative to its container.
2282e1af
AK
1595 * May be used on regions are currently part of a memory hierarchy.
1596 *
1597 * @mr: the region to be updated
feca4ac1 1598 * @addr: new address, relative to container region
2282e1af 1599 */
a8170e5e 1600void memory_region_set_address(MemoryRegion *mr, hwaddr addr);
2282e1af 1601
e7af4c67
MT
1602/*
1603 * memory_region_set_size: dynamically update the size of a region.
1604 *
1605 * Dynamically updates the size of a region.
1606 *
1607 * @mr: the region to be updated
1608 * @size: used size of the region.
1609 */
1610void memory_region_set_size(MemoryRegion *mr, uint64_t size);
1611
4703359e
AK
1612/*
1613 * memory_region_set_alias_offset: dynamically update a memory alias's offset
1614 *
1615 * Dynamically updates the offset into the target region that an alias points
1616 * to, as if the fourth argument to memory_region_init_alias() has changed.
1617 *
1618 * @mr: the #MemoryRegion to be updated; should be an alias.
1619 * @offset: the new offset into the target memory region
1620 */
1621void memory_region_set_alias_offset(MemoryRegion *mr,
a8170e5e 1622 hwaddr offset);
4703359e 1623
3ce10901 1624/**
feca4ac1
PB
1625 * memory_region_present: checks if an address relative to a @container
1626 * translates into #MemoryRegion within @container
3ce10901 1627 *
feca4ac1 1628 * Answer whether a #MemoryRegion within @container covers the address
3ce10901
PB
1629 * @addr.
1630 *
feca4ac1
PB
1631 * @container: a #MemoryRegion within which @addr is a relative address
1632 * @addr: the area within @container to be searched
3ce10901 1633 */
feca4ac1 1634bool memory_region_present(MemoryRegion *container, hwaddr addr);
3ce10901 1635
eed2bacf
IM
1636/**
1637 * memory_region_is_mapped: returns true if #MemoryRegion is mapped
1638 * into any address space.
1639 *
1640 * @mr: a #MemoryRegion which should be checked if it's mapped
1641 */
1642bool memory_region_is_mapped(MemoryRegion *mr);
1643
e2177955 1644/**
73034e9e
PB
1645 * memory_region_find: translate an address/size relative to a
1646 * MemoryRegion into a #MemoryRegionSection.
e2177955 1647 *
73034e9e
PB
1648 * Locates the first #MemoryRegion within @mr that overlaps the range
1649 * given by @addr and @size.
e2177955
AK
1650 *
1651 * Returns a #MemoryRegionSection that describes a contiguous overlap.
1652 * It will have the following characteristics:
e2177955
AK
1653 * .@size = 0 iff no overlap was found
1654 * .@mr is non-%NULL iff an overlap was found
1655 *
73034e9e
PB
1656 * Remember that in the return value the @offset_within_region is
1657 * relative to the returned region (in the .@mr field), not to the
1658 * @mr argument.
1659 *
1660 * Similarly, the .@offset_within_address_space is relative to the
1661 * address space that contains both regions, the passed and the
1662 * returned one. However, in the special case where the @mr argument
feca4ac1 1663 * has no container (and thus is the root of the address space), the
73034e9e
PB
1664 * following will hold:
1665 * .@offset_within_address_space >= @addr
1666 * .@offset_within_address_space + .@size <= @addr + @size
1667 *
1668 * @mr: a MemoryRegion within which @addr is a relative address
1669 * @addr: start of the area within @as to be searched
e2177955
AK
1670 * @size: size of the area to be searched
1671 */
73034e9e 1672MemoryRegionSection memory_region_find(MemoryRegion *mr,
a8170e5e 1673 hwaddr addr, uint64_t size);
e2177955 1674
86e775c6 1675/**
9c1f8f44 1676 * memory_global_dirty_log_sync: synchronize the dirty log for all memory
86e775c6 1677 *
9c1f8f44 1678 * Synchronizes the dirty page log for all address spaces.
86e775c6 1679 */
9c1f8f44 1680void memory_global_dirty_log_sync(void);
9458a9a1
PB
1681
1682/**
1683 * memory_global_dirty_log_sync: synchronize the dirty log for all memory
1684 *
1685 * Synchronizes the vCPUs with a thread that is reading the dirty bitmap.
1686 * This function must be called after the dirty log bitmap is cleared, and
1687 * before dirty guest memory pages are read. If you are using
1688 * #DirtyBitmapSnapshot, memory_region_snapshot_and_clear_dirty() takes
1689 * care of doing this.
1690 */
1691void memory_global_after_dirty_log_sync(void);
86e775c6 1692
69ddaf66
ASRJ
1693/**
1694 * memory_region_transaction_begin: Start a transaction.
1695 *
1696 * During a transaction, changes will be accumulated and made visible
dabdf394 1697 * only when the transaction ends (is committed).
4ef4db86
AK
1698 */
1699void memory_region_transaction_begin(void);
69ddaf66
ASRJ
1700
1701/**
1702 * memory_region_transaction_commit: Commit a transaction and make changes
1703 * visible to the guest.
4ef4db86
AK
1704 */
1705void memory_region_transaction_commit(void);
1706
7664e80c
AK
1707/**
1708 * memory_listener_register: register callbacks to be called when memory
1709 * sections are mapped or unmapped into an address
1710 * space
1711 *
1712 * @listener: an object containing the callbacks to be called
7376e582 1713 * @filter: if non-%NULL, only regions in this address space will be observed
7664e80c 1714 */
f6790af6 1715void memory_listener_register(MemoryListener *listener, AddressSpace *filter);
7664e80c
AK
1716
1717/**
1718 * memory_listener_unregister: undo the effect of memory_listener_register()
1719 *
1720 * @listener: an object containing the callbacks to be removed
1721 */
1722void memory_listener_unregister(MemoryListener *listener);
1723
1724/**
1725 * memory_global_dirty_log_start: begin dirty logging for all regions
1726 */
1727void memory_global_dirty_log_start(void);
1728
1729/**
1a7e8cae 1730 * memory_global_dirty_log_stop: end dirty logging for all regions
7664e80c
AK
1731 */
1732void memory_global_dirty_log_stop(void);
1733
b6b71cb5 1734void mtree_info(bool flatview, bool dispatch_tree, bool owner);
314e2987 1735
3b643495
PM
1736/**
1737 * memory_region_dispatch_read: perform a read directly to the specified
1738 * MemoryRegion.
1739 *
1740 * @mr: #MemoryRegion to access
1741 * @addr: address within that region
1742 * @pval: pointer to uint64_t which the data is written to
e67c9046 1743 * @op: size, sign, and endianness of the memory operation
3b643495
PM
1744 * @attrs: memory transaction attributes to use for the access
1745 */
1746MemTxResult memory_region_dispatch_read(MemoryRegion *mr,
1747 hwaddr addr,
1748 uint64_t *pval,
e67c9046 1749 MemOp op,
3b643495
PM
1750 MemTxAttrs attrs);
1751/**
1752 * memory_region_dispatch_write: perform a write directly to the specified
1753 * MemoryRegion.
1754 *
1755 * @mr: #MemoryRegion to access
1756 * @addr: address within that region
1757 * @data: data to write
e67c9046 1758 * @op: size, sign, and endianness of the memory operation
3b643495
PM
1759 * @attrs: memory transaction attributes to use for the access
1760 */
1761MemTxResult memory_region_dispatch_write(MemoryRegion *mr,
1762 hwaddr addr,
1763 uint64_t data,
e67c9046 1764 MemOp op,
3b643495
PM
1765 MemTxAttrs attrs);
1766
9ad2bbc1
AK
1767/**
1768 * address_space_init: initializes an address space
1769 *
1770 * @as: an uninitialized #AddressSpace
67cc32eb 1771 * @root: a #MemoryRegion that routes addresses for the address space
7dca8043
AK
1772 * @name: an address space name. The name is only used for debugging
1773 * output.
9ad2bbc1 1774 */
7dca8043 1775void address_space_init(AddressSpace *as, MemoryRegion *root, const char *name);
9ad2bbc1 1776
83f3c251
AK
1777/**
1778 * address_space_destroy: destroy an address space
1779 *
1780 * Releases all resources associated with an address space. After an address space
1781 * is destroyed, its root memory region (given by address_space_init()) may be destroyed
1782 * as well.
1783 *
1784 * @as: address space to be destroyed
1785 */
1786void address_space_destroy(AddressSpace *as);
1787
a2166410
GK
1788/**
1789 * address_space_remove_listeners: unregister all listeners of an address space
1790 *
1791 * Removes all callbacks previously registered with memory_listener_register()
1792 * for @as.
1793 *
1794 * @as: an initialized #AddressSpace
1795 */
1796void address_space_remove_listeners(AddressSpace *as);
1797
ac1970fb
AK
1798/**
1799 * address_space_rw: read from or write to an address space.
1800 *
5c9eb028
PM
1801 * Return a MemTxResult indicating whether the operation succeeded
1802 * or failed (eg unassigned memory, device rejected the transaction,
1803 * IOMMU fault).
fd8aaa76 1804 *
ac1970fb
AK
1805 * @as: #AddressSpace to be accessed
1806 * @addr: address within that address space
5c9eb028 1807 * @attrs: memory transaction attributes
ac1970fb 1808 * @buf: buffer with the data transferred
57914ecb 1809 * @len: the number of bytes to read or write
ac1970fb
AK
1810 * @is_write: indicates the transfer direction
1811 */
5c9eb028
PM
1812MemTxResult address_space_rw(AddressSpace *as, hwaddr addr,
1813 MemTxAttrs attrs, uint8_t *buf,
0c249ff7 1814 hwaddr len, bool is_write);
ac1970fb
AK
1815
1816/**
1817 * address_space_write: write to address space.
1818 *
5c9eb028
PM
1819 * Return a MemTxResult indicating whether the operation succeeded
1820 * or failed (eg unassigned memory, device rejected the transaction,
1821 * IOMMU fault).
fd8aaa76 1822 *
ac1970fb
AK
1823 * @as: #AddressSpace to be accessed
1824 * @addr: address within that address space
5c9eb028 1825 * @attrs: memory transaction attributes
ac1970fb 1826 * @buf: buffer with the data transferred
57914ecb 1827 * @len: the number of bytes to write
ac1970fb 1828 */
5c9eb028
PM
1829MemTxResult address_space_write(AddressSpace *as, hwaddr addr,
1830 MemTxAttrs attrs,
0c249ff7 1831 const uint8_t *buf, hwaddr len);
ac1970fb 1832
3c8133f9
PM
1833/**
1834 * address_space_write_rom: write to address space, including ROM.
1835 *
1836 * This function writes to the specified address space, but will
1837 * write data to both ROM and RAM. This is used for non-guest
1838 * writes like writes from the gdb debug stub or initial loading
1839 * of ROM contents.
1840 *
1841 * Note that portions of the write which attempt to write data to
1842 * a device will be silently ignored -- only real RAM and ROM will
1843 * be written to.
1844 *
1845 * Return a MemTxResult indicating whether the operation succeeded
1846 * or failed (eg unassigned memory, device rejected the transaction,
1847 * IOMMU fault).
1848 *
1849 * @as: #AddressSpace to be accessed
1850 * @addr: address within that address space
1851 * @attrs: memory transaction attributes
1852 * @buf: buffer with the data transferred
1853 * @len: the number of bytes to write
1854 */
1855MemTxResult address_space_write_rom(AddressSpace *as, hwaddr addr,
1856 MemTxAttrs attrs,
0c249ff7 1857 const uint8_t *buf, hwaddr len);
3c8133f9 1858
3cc8f884 1859/* address_space_ld*: load from an address space
50013115
PM
1860 * address_space_st*: store to an address space
1861 *
1862 * These functions perform a load or store of the byte, word,
1863 * longword or quad to the specified address within the AddressSpace.
1864 * The _le suffixed functions treat the data as little endian;
1865 * _be indicates big endian; no suffix indicates "same endianness
1866 * as guest CPU".
1867 *
1868 * The "guest CPU endianness" accessors are deprecated for use outside
1869 * target-* code; devices should be CPU-agnostic and use either the LE
1870 * or the BE accessors.
1871 *
1872 * @as #AddressSpace to be accessed
1873 * @addr: address within that address space
1874 * @val: data value, for stores
1875 * @attrs: memory transaction attributes
1876 * @result: location to write the success/failure of the transaction;
1877 * if NULL, this information is discarded
1878 */
4269c82b
PB
1879
1880#define SUFFIX
1881#define ARG1 as
1882#define ARG1_DECL AddressSpace *as
1883#include "exec/memory_ldst.inc.h"
1884
1885#define SUFFIX
1886#define ARG1 as
1887#define ARG1_DECL AddressSpace *as
1888#include "exec/memory_ldst_phys.inc.h"
0ce265ff 1889
1f4e496e 1890struct MemoryRegionCache {
48564041 1891 void *ptr;
1f4e496e 1892 hwaddr xlat;
1f4e496e 1893 hwaddr len;
48564041
PB
1894 FlatView *fv;
1895 MemoryRegionSection mrs;
1896 bool is_write;
1f4e496e
PB
1897};
1898
48564041
PB
1899#define MEMORY_REGION_CACHE_INVALID ((MemoryRegionCache) { .mrs.mr = NULL })
1900
5eba0404 1901
4269c82b
PB
1902/* address_space_ld*_cached: load from a cached #MemoryRegion
1903 * address_space_st*_cached: store into a cached #MemoryRegion
1904 *
1905 * These functions perform a load or store of the byte, word,
1906 * longword or quad to the specified address. The address is
1907 * a physical address in the AddressSpace, but it must lie within
1908 * a #MemoryRegion that was mapped with address_space_cache_init.
1909 *
1910 * The _le suffixed functions treat the data as little endian;
1911 * _be indicates big endian; no suffix indicates "same endianness
1912 * as guest CPU".
1913 *
1914 * The "guest CPU endianness" accessors are deprecated for use outside
1915 * target-* code; devices should be CPU-agnostic and use either the LE
1916 * or the BE accessors.
1917 *
1918 * @cache: previously initialized #MemoryRegionCache to be accessed
1919 * @addr: address within the address space
1920 * @val: data value, for stores
1921 * @attrs: memory transaction attributes
1922 * @result: location to write the success/failure of the transaction;
1923 * if NULL, this information is discarded
1924 */
1925
48564041 1926#define SUFFIX _cached_slow
4269c82b
PB
1927#define ARG1 cache
1928#define ARG1_DECL MemoryRegionCache *cache
1929#include "exec/memory_ldst.inc.h"
1930
48564041
PB
1931/* Inline fast path for direct RAM access. */
1932static inline uint8_t address_space_ldub_cached(MemoryRegionCache *cache,
1933 hwaddr addr, MemTxAttrs attrs, MemTxResult *result)
1934{
1935 assert(addr < cache->len);
1936 if (likely(cache->ptr)) {
1937 return ldub_p(cache->ptr + addr);
1938 } else {
1939 return address_space_ldub_cached_slow(cache, addr, attrs, result);
1940 }
1941}
1942
1943static inline void address_space_stb_cached(MemoryRegionCache *cache,
1944 hwaddr addr, uint32_t val, MemTxAttrs attrs, MemTxResult *result)
1945{
1946 assert(addr < cache->len);
1947 if (likely(cache->ptr)) {
1948 stb_p(cache->ptr + addr, val);
1949 } else {
1950 address_space_stb_cached_slow(cache, addr, val, attrs, result);
1951 }
1952}
1953
1954#define ENDIANNESS _le
1955#include "exec/memory_ldst_cached.inc.h"
1956
1957#define ENDIANNESS _be
1958#include "exec/memory_ldst_cached.inc.h"
1959
4269c82b
PB
1960#define SUFFIX _cached
1961#define ARG1 cache
1962#define ARG1_DECL MemoryRegionCache *cache
1963#include "exec/memory_ldst_phys.inc.h"
1964
1f4e496e
PB
1965/* address_space_cache_init: prepare for repeated access to a physical
1966 * memory region
1967 *
1968 * @cache: #MemoryRegionCache to be filled
1969 * @as: #AddressSpace to be accessed
1970 * @addr: address within that address space
1971 * @len: length of buffer
1972 * @is_write: indicates the transfer direction
1973 *
1974 * Will only work with RAM, and may map a subset of the requested range by
1975 * returning a value that is less than @len. On failure, return a negative
1976 * errno value.
1977 *
1978 * Because it only works with RAM, this function can be used for
1979 * read-modify-write operations. In this case, is_write should be %true.
1980 *
1981 * Note that addresses passed to the address_space_*_cached functions
1982 * are relative to @addr.
1983 */
1984int64_t address_space_cache_init(MemoryRegionCache *cache,
1985 AddressSpace *as,
1986 hwaddr addr,
1987 hwaddr len,
1988 bool is_write);
1989
1990/**
1991 * address_space_cache_invalidate: complete a write to a #MemoryRegionCache
1992 *
1993 * @cache: The #MemoryRegionCache to operate on.
1994 * @addr: The first physical address that was written, relative to the
1995 * address that was passed to @address_space_cache_init.
1996 * @access_len: The number of bytes that were written starting at @addr.
1997 */
1998void address_space_cache_invalidate(MemoryRegionCache *cache,
1999 hwaddr addr,
2000 hwaddr access_len);
2001
2002/**
2003 * address_space_cache_destroy: free a #MemoryRegionCache
2004 *
2005 * @cache: The #MemoryRegionCache whose memory should be released.
2006 */
2007void address_space_cache_destroy(MemoryRegionCache *cache);
2008
052c8fa9
JW
2009/* address_space_get_iotlb_entry: translate an address into an IOTLB
2010 * entry. Should be called from an RCU critical section.
2011 */
2012IOMMUTLBEntry address_space_get_iotlb_entry(AddressSpace *as, hwaddr addr,
7446eb07 2013 bool is_write, MemTxAttrs attrs);
1f4e496e 2014
149f54b5 2015/* address_space_translate: translate an address range into an address space
41063e1e
PB
2016 * into a MemoryRegion and an address range into that section. Should be
2017 * called from an RCU critical section, to avoid that the last reference
2018 * to the returned region disappears after address_space_translate returns.
149f54b5 2019 *
57914ecb 2020 * @fv: #FlatView to be accessed
149f54b5
PB
2021 * @addr: address within that address space
2022 * @xlat: pointer to address within the returned memory region section's
2023 * #MemoryRegion.
2024 * @len: pointer to length
2025 * @is_write: indicates the transfer direction
bc6b1cec 2026 * @attrs: memory attributes
149f54b5 2027 */
16620684
AK
2028MemoryRegion *flatview_translate(FlatView *fv,
2029 hwaddr addr, hwaddr *xlat,
efa99a2f
PM
2030 hwaddr *len, bool is_write,
2031 MemTxAttrs attrs);
16620684
AK
2032
2033static inline MemoryRegion *address_space_translate(AddressSpace *as,
2034 hwaddr addr, hwaddr *xlat,
bc6b1cec
PM
2035 hwaddr *len, bool is_write,
2036 MemTxAttrs attrs)
16620684
AK
2037{
2038 return flatview_translate(address_space_to_flatview(as),
efa99a2f 2039 addr, xlat, len, is_write, attrs);
16620684 2040}
149f54b5 2041
51644ab7
PB
2042/* address_space_access_valid: check for validity of accessing an address
2043 * space range
2044 *
30951157
AK
2045 * Check whether memory is assigned to the given address space range, and
2046 * access is permitted by any IOMMU regions that are active for the address
2047 * space.
51644ab7
PB
2048 *
2049 * For now, addr and len should be aligned to a page size. This limitation
2050 * will be lifted in the future.
2051 *
2052 * @as: #AddressSpace to be accessed
2053 * @addr: address within that address space
2054 * @len: length of the area to be checked
2055 * @is_write: indicates the transfer direction
fddffa42 2056 * @attrs: memory attributes
51644ab7 2057 */
0c249ff7 2058bool address_space_access_valid(AddressSpace *as, hwaddr addr, hwaddr len,
fddffa42 2059 bool is_write, MemTxAttrs attrs);
51644ab7 2060
ac1970fb
AK
2061/* address_space_map: map a physical memory region into a host virtual address
2062 *
2063 * May map a subset of the requested range, given by and returned in @plen.
2064 * May return %NULL if resources needed to perform the mapping are exhausted.
2065 * Use only for reads OR writes - not for read-modify-write operations.
2066 * Use cpu_register_map_client() to know when retrying the map operation is
2067 * likely to succeed.
2068 *
2069 * @as: #AddressSpace to be accessed
2070 * @addr: address within that address space
2071 * @plen: pointer to length of buffer; updated on return
2072 * @is_write: indicates the transfer direction
f26404fb 2073 * @attrs: memory attributes
ac1970fb 2074 */
a8170e5e 2075void *address_space_map(AddressSpace *as, hwaddr addr,
f26404fb 2076 hwaddr *plen, bool is_write, MemTxAttrs attrs);
ac1970fb
AK
2077
2078/* address_space_unmap: Unmaps a memory region previously mapped by address_space_map()
2079 *
2080 * Will also mark the memory as dirty if @is_write == %true. @access_len gives
2081 * the amount of memory that was actually read or written by the caller.
2082 *
2083 * @as: #AddressSpace used
57914ecb 2084 * @buffer: host pointer as returned by address_space_map()
ac1970fb
AK
2085 * @len: buffer length as returned by address_space_map()
2086 * @access_len: amount of data actually transferred
2087 * @is_write: indicates the transfer direction
2088 */
a8170e5e
AK
2089void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len,
2090 int is_write, hwaddr access_len);
ac1970fb
AK
2091
2092
a203ac70 2093/* Internal functions, part of the implementation of address_space_read. */
b2a44fca 2094MemTxResult address_space_read_full(AddressSpace *as, hwaddr addr,
0c249ff7 2095 MemTxAttrs attrs, uint8_t *buf, hwaddr len);
16620684
AK
2096MemTxResult flatview_read_continue(FlatView *fv, hwaddr addr,
2097 MemTxAttrs attrs, uint8_t *buf,
0c249ff7 2098 hwaddr len, hwaddr addr1, hwaddr l,
16620684 2099 MemoryRegion *mr);
0878d0e1 2100void *qemu_map_ram_ptr(RAMBlock *ram_block, ram_addr_t addr);
3cc8f884 2101
48564041
PB
2102/* Internal functions, part of the implementation of address_space_read_cached
2103 * and address_space_write_cached. */
2104void address_space_read_cached_slow(MemoryRegionCache *cache,
0c249ff7 2105 hwaddr addr, void *buf, hwaddr len);
48564041 2106void address_space_write_cached_slow(MemoryRegionCache *cache,
0c249ff7 2107 hwaddr addr, const void *buf, hwaddr len);
48564041 2108
3cc8f884
PB
2109static inline bool memory_access_is_direct(MemoryRegion *mr, bool is_write)
2110{
2111 if (is_write) {
4a2e242b
AW
2112 return memory_region_is_ram(mr) &&
2113 !mr->readonly && !memory_region_is_ram_device(mr);
3cc8f884 2114 } else {
4a2e242b
AW
2115 return (memory_region_is_ram(mr) && !memory_region_is_ram_device(mr)) ||
2116 memory_region_is_romd(mr);
3cc8f884 2117 }
3cc8f884
PB
2118}
2119
2120/**
2121 * address_space_read: read from an address space.
2122 *
2123 * Return a MemTxResult indicating whether the operation succeeded
2124 * or failed (eg unassigned memory, device rejected the transaction,
b2a44fca 2125 * IOMMU fault). Called within RCU critical section.
3cc8f884 2126 *
b2a44fca 2127 * @as: #AddressSpace to be accessed
3cc8f884
PB
2128 * @addr: address within that address space
2129 * @attrs: memory transaction attributes
2130 * @buf: buffer with the data transferred
2131 */
2132static inline __attribute__((__always_inline__))
b2a44fca
PB
2133MemTxResult address_space_read(AddressSpace *as, hwaddr addr,
2134 MemTxAttrs attrs, uint8_t *buf,
0c249ff7 2135 hwaddr len)
3cc8f884
PB
2136{
2137 MemTxResult result = MEMTX_OK;
2138 hwaddr l, addr1;
2139 void *ptr;
2140 MemoryRegion *mr;
b2a44fca 2141 FlatView *fv;
3cc8f884
PB
2142
2143 if (__builtin_constant_p(len)) {
2144 if (len) {
2145 rcu_read_lock();
b2a44fca 2146 fv = address_space_to_flatview(as);
3cc8f884 2147 l = len;
efa99a2f 2148 mr = flatview_translate(fv, addr, &addr1, &l, false, attrs);
3cc8f884 2149 if (len == l && memory_access_is_direct(mr, false)) {
0878d0e1 2150 ptr = qemu_map_ram_ptr(mr->ram_block, addr1);
3cc8f884
PB
2151 memcpy(buf, ptr, len);
2152 } else {
16620684
AK
2153 result = flatview_read_continue(fv, addr, attrs, buf, len,
2154 addr1, l, mr);
3cc8f884
PB
2155 }
2156 rcu_read_unlock();
2157 }
2158 } else {
b2a44fca 2159 result = address_space_read_full(as, addr, attrs, buf, len);
3cc8f884
PB
2160 }
2161 return result;
2162}
a203ac70 2163
1f4e496e
PB
2164/**
2165 * address_space_read_cached: read from a cached RAM region
2166 *
2167 * @cache: Cached region to be addressed
2168 * @addr: address relative to the base of the RAM region
2169 * @buf: buffer with the data transferred
2170 * @len: length of the data transferred
2171 */
2172static inline void
2173address_space_read_cached(MemoryRegionCache *cache, hwaddr addr,
0c249ff7 2174 void *buf, hwaddr len)
1f4e496e
PB
2175{
2176 assert(addr < cache->len && len <= cache->len - addr);
48564041
PB
2177 if (likely(cache->ptr)) {
2178 memcpy(buf, cache->ptr + addr, len);
2179 } else {
2180 address_space_read_cached_slow(cache, addr, buf, len);
2181 }
1f4e496e
PB
2182}
2183
2184/**
2185 * address_space_write_cached: write to a cached RAM region
2186 *
2187 * @cache: Cached region to be addressed
2188 * @addr: address relative to the base of the RAM region
2189 * @buf: buffer with the data transferred
2190 * @len: length of the data transferred
2191 */
2192static inline void
2193address_space_write_cached(MemoryRegionCache *cache, hwaddr addr,
0c249ff7 2194 void *buf, hwaddr len)
1f4e496e
PB
2195{
2196 assert(addr < cache->len && len <= cache->len - addr);
48564041
PB
2197 if (likely(cache->ptr)) {
2198 memcpy(cache->ptr + addr, buf, len);
2199 } else {
2200 address_space_write_cached_slow(cache, addr, buf, len);
2201 }
1f4e496e
PB
2202}
2203
d5d680ca
TN
2204/* enum device_endian to MemOp. */
2205MemOp devend_memop(enum device_endian end);
2206
093bc2cd
AK
2207#endif
2208
2209#endif