2 * Physical memory management API
4 * Copyright 2011 Red Hat, Inc. and/or its affiliates
7 * Avi Kivity <avi@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
17 #ifndef CONFIG_USER_ONLY
19 #include "exec/cpu-common.h"
20 #include "exec/hwaddr.h"
21 #include "exec/memattrs.h"
22 #include "exec/memop.h"
23 #include "exec/ramlist.h"
24 #include "qemu/bswap.h"
25 #include "qemu/queue.h"
26 #include "qemu/int128.h"
27 #include "qemu/notify.h"
28 #include "qom/object.h"
31 #define RAM_ADDR_INVALID (~(ram_addr_t)0)
33 #define MAX_PHYS_ADDR_SPACE_BITS 62
34 #define MAX_PHYS_ADDR (((hwaddr)1 << MAX_PHYS_ADDR_SPACE_BITS) - 1)
36 #define TYPE_MEMORY_REGION "memory-region"
37 DECLARE_INSTANCE_CHECKER(MemoryRegion
, MEMORY_REGION
,
40 #define TYPE_IOMMU_MEMORY_REGION "iommu-memory-region"
41 typedef struct IOMMUMemoryRegionClass IOMMUMemoryRegionClass
;
42 DECLARE_OBJ_CHECKERS(IOMMUMemoryRegion
, IOMMUMemoryRegionClass
,
43 IOMMU_MEMORY_REGION
, TYPE_IOMMU_MEMORY_REGION
)
45 #define TYPE_RAM_DISCARD_MANAGER "qemu:ram-discard-manager"
46 typedef struct RamDiscardManagerClass RamDiscardManagerClass
;
47 typedef struct RamDiscardManager RamDiscardManager
;
48 DECLARE_OBJ_CHECKERS(RamDiscardManager
, RamDiscardManagerClass
,
49 RAM_DISCARD_MANAGER
, TYPE_RAM_DISCARD_MANAGER
);
52 void fuzz_dma_read_cb(size_t addr
,
56 static inline void fuzz_dma_read_cb(size_t addr
,
64 extern bool global_dirty_log
;
66 typedef struct MemoryRegionOps MemoryRegionOps
;
68 struct ReservedRegion
{
75 * struct MemoryRegionSection: describes a fragment of a #MemoryRegion
77 * @mr: the region, or %NULL if empty
78 * @fv: the flat view of the address space the region is mapped in
79 * @offset_within_region: the beginning of the section, relative to @mr's start
80 * @size: the size of the section; will not exceed @mr's boundaries
81 * @offset_within_address_space: the address of the first byte of the section
82 * relative to the region's address space
83 * @readonly: writes to this section are ignored
84 * @nonvolatile: this section is non-volatile
86 struct MemoryRegionSection
{
90 hwaddr offset_within_region
;
91 hwaddr offset_within_address_space
;
96 typedef struct IOMMUTLBEntry IOMMUTLBEntry
;
98 /* See address_space_translate: bit 0 is read, bit 1 is write. */
106 #define IOMMU_ACCESS_FLAG(r, w) (((r) ? IOMMU_RO : 0) | ((w) ? IOMMU_WO : 0))
108 struct IOMMUTLBEntry
{
109 AddressSpace
*target_as
;
111 hwaddr translated_addr
;
112 hwaddr addr_mask
; /* 0xfff = 4k translation */
113 IOMMUAccessFlags perm
;
117 * Bitmap for different IOMMUNotifier capabilities. Each notifier can
118 * register with one or multiple IOMMU Notifier capability bit(s).
121 IOMMU_NOTIFIER_NONE
= 0,
122 /* Notify cache invalidations */
123 IOMMU_NOTIFIER_UNMAP
= 0x1,
124 /* Notify entry changes (newly created entries) */
125 IOMMU_NOTIFIER_MAP
= 0x2,
126 /* Notify changes on device IOTLB entries */
127 IOMMU_NOTIFIER_DEVIOTLB_UNMAP
= 0x04,
130 #define IOMMU_NOTIFIER_IOTLB_EVENTS (IOMMU_NOTIFIER_MAP | IOMMU_NOTIFIER_UNMAP)
131 #define IOMMU_NOTIFIER_DEVIOTLB_EVENTS IOMMU_NOTIFIER_DEVIOTLB_UNMAP
132 #define IOMMU_NOTIFIER_ALL (IOMMU_NOTIFIER_IOTLB_EVENTS | \
133 IOMMU_NOTIFIER_DEVIOTLB_EVENTS)
135 struct IOMMUNotifier
;
136 typedef void (*IOMMUNotify
)(struct IOMMUNotifier
*notifier
,
137 IOMMUTLBEntry
*data
);
139 struct IOMMUNotifier
{
141 IOMMUNotifierFlag notifier_flags
;
142 /* Notify for address space range start <= addr <= end */
146 QLIST_ENTRY(IOMMUNotifier
) node
;
148 typedef struct IOMMUNotifier IOMMUNotifier
;
150 typedef struct IOMMUTLBEvent
{
151 IOMMUNotifierFlag type
;
155 /* RAM is pre-allocated and passed into qemu_ram_alloc_from_ptr */
156 #define RAM_PREALLOC (1 << 0)
158 /* RAM is mmap-ed with MAP_SHARED */
159 #define RAM_SHARED (1 << 1)
161 /* Only a portion of RAM (used_length) is actually used, and migrated.
162 * Resizing RAM while migrating can result in the migration being canceled.
164 #define RAM_RESIZEABLE (1 << 2)
166 /* UFFDIO_ZEROPAGE is available on this RAMBlock to atomically
167 * zero the page and wake waiting processes.
168 * (Set during postcopy)
170 #define RAM_UF_ZEROPAGE (1 << 3)
172 /* RAM can be migrated */
173 #define RAM_MIGRATABLE (1 << 4)
175 /* RAM is a persistent kind memory */
176 #define RAM_PMEM (1 << 5)
180 * UFFDIO_WRITEPROTECT is used on this RAMBlock to
181 * support 'write-tracking' migration type.
182 * Implies ram_state->ram_wt_enabled.
184 #define RAM_UF_WRITEPROTECT (1 << 6)
187 * RAM is mmap-ed with MAP_NORESERVE. When set, reserving swap space (or huge
188 * pages if applicable) is skipped: will bail out if not supported. When not
189 * set, the OS will do the reservation, if supported for the memory type.
191 #define RAM_NORESERVE (1 << 7)
193 /* RAM that isn't accessible through normal means. */
194 #define RAM_PROTECTED (1 << 8)
196 static inline void iommu_notifier_init(IOMMUNotifier
*n
, IOMMUNotify fn
,
197 IOMMUNotifierFlag flags
,
198 hwaddr start
, hwaddr end
,
202 n
->notifier_flags
= flags
;
205 n
->iommu_idx
= iommu_idx
;
209 * Memory region callbacks
211 struct MemoryRegionOps
{
212 /* Read from the memory region. @addr is relative to @mr; @size is
214 uint64_t (*read
)(void *opaque
,
217 /* Write to the memory region. @addr is relative to @mr; @size is
219 void (*write
)(void *opaque
,
224 MemTxResult (*read_with_attrs
)(void *opaque
,
229 MemTxResult (*write_with_attrs
)(void *opaque
,
235 enum device_endian endianness
;
236 /* Guest-visible constraints: */
238 /* If nonzero, specify bounds on access sizes beyond which a machine
241 unsigned min_access_size
;
242 unsigned max_access_size
;
243 /* If true, unaligned accesses are supported. Otherwise unaligned
244 * accesses throw machine checks.
248 * If present, and returns #false, the transaction is not accepted
249 * by the device (and results in machine dependent behaviour such
250 * as a machine check exception).
252 bool (*accepts
)(void *opaque
, hwaddr addr
,
253 unsigned size
, bool is_write
,
256 /* Internal implementation constraints: */
258 /* If nonzero, specifies the minimum size implemented. Smaller sizes
259 * will be rounded upwards and a partial result will be returned.
261 unsigned min_access_size
;
262 /* If nonzero, specifies the maximum size implemented. Larger sizes
263 * will be done as a series of accesses with smaller sizes.
265 unsigned max_access_size
;
266 /* If true, unaligned accesses are supported. Otherwise all accesses
267 * are converted to (possibly multiple) naturally aligned accesses.
273 typedef struct MemoryRegionClass
{
275 ObjectClass parent_class
;
279 enum IOMMUMemoryRegionAttr
{
280 IOMMU_ATTR_SPAPR_TCE_FD
284 * IOMMUMemoryRegionClass:
286 * All IOMMU implementations need to subclass TYPE_IOMMU_MEMORY_REGION
287 * and provide an implementation of at least the @translate method here
288 * to handle requests to the memory region. Other methods are optional.
290 * The IOMMU implementation must use the IOMMU notifier infrastructure
291 * to report whenever mappings are changed, by calling
292 * memory_region_notify_iommu() (or, if necessary, by calling
293 * memory_region_notify_iommu_one() for each registered notifier).
295 * Conceptually an IOMMU provides a mapping from input address
296 * to an output TLB entry. If the IOMMU is aware of memory transaction
297 * attributes and the output TLB entry depends on the transaction
298 * attributes, we represent this using IOMMU indexes. Each index
299 * selects a particular translation table that the IOMMU has:
301 * @attrs_to_index returns the IOMMU index for a set of transaction attributes
303 * @translate takes an input address and an IOMMU index
305 * and the mapping returned can only depend on the input address and the
308 * Most IOMMUs don't care about the transaction attributes and support
309 * only a single IOMMU index. A more complex IOMMU might have one index
310 * for secure transactions and one for non-secure transactions.
312 struct IOMMUMemoryRegionClass
{
314 MemoryRegionClass parent_class
;
320 * Return a TLB entry that contains a given address.
322 * The IOMMUAccessFlags indicated via @flag are optional and may
323 * be specified as IOMMU_NONE to indicate that the caller needs
324 * the full translation information for both reads and writes. If
325 * the access flags are specified then the IOMMU implementation
326 * may use this as an optimization, to stop doing a page table
327 * walk as soon as it knows that the requested permissions are not
328 * allowed. If IOMMU_NONE is passed then the IOMMU must do the
329 * full page table walk and report the permissions in the returned
330 * IOMMUTLBEntry. (Note that this implies that an IOMMU may not
331 * return different mappings for reads and writes.)
333 * The returned information remains valid while the caller is
334 * holding the big QEMU lock or is inside an RCU critical section;
335 * if the caller wishes to cache the mapping beyond that it must
336 * register an IOMMU notifier so it can invalidate its cached
337 * information when the IOMMU mapping changes.
339 * @iommu: the IOMMUMemoryRegion
341 * @hwaddr: address to be translated within the memory region
343 * @flag: requested access permission
345 * @iommu_idx: IOMMU index for the translation
347 IOMMUTLBEntry (*translate
)(IOMMUMemoryRegion
*iommu
, hwaddr addr
,
348 IOMMUAccessFlags flag
, int iommu_idx
);
350 * @get_min_page_size:
352 * Returns minimum supported page size in bytes.
354 * If this method is not provided then the minimum is assumed to
355 * be TARGET_PAGE_SIZE.
357 * @iommu: the IOMMUMemoryRegion
359 uint64_t (*get_min_page_size
)(IOMMUMemoryRegion
*iommu
);
361 * @notify_flag_changed:
363 * Called when IOMMU Notifier flag changes (ie when the set of
364 * events which IOMMU users are requesting notification for changes).
365 * Optional method -- need not be provided if the IOMMU does not
366 * need to know exactly which events must be notified.
368 * @iommu: the IOMMUMemoryRegion
370 * @old_flags: events which previously needed to be notified
372 * @new_flags: events which now need to be notified
374 * Returns 0 on success, or a negative errno; in particular
375 * returns -EINVAL if the new flag bitmap is not supported by the
376 * IOMMU memory region. In case of failure, the error object
379 int (*notify_flag_changed
)(IOMMUMemoryRegion
*iommu
,
380 IOMMUNotifierFlag old_flags
,
381 IOMMUNotifierFlag new_flags
,
386 * Called to handle memory_region_iommu_replay().
388 * The default implementation of memory_region_iommu_replay() is to
389 * call the IOMMU translate method for every page in the address space
390 * with flag == IOMMU_NONE and then call the notifier if translate
391 * returns a valid mapping. If this method is implemented then it
392 * overrides the default behaviour, and must provide the full semantics
393 * of memory_region_iommu_replay(), by calling @notifier for every
394 * translation present in the IOMMU.
396 * Optional method -- an IOMMU only needs to provide this method
397 * if the default is inefficient or produces undesirable side effects.
399 * Note: this is not related to record-and-replay functionality.
401 void (*replay
)(IOMMUMemoryRegion
*iommu
, IOMMUNotifier
*notifier
);
406 * Get IOMMU misc attributes. This is an optional method that
407 * can be used to allow users of the IOMMU to get implementation-specific
408 * information. The IOMMU implements this method to handle calls
409 * by IOMMU users to memory_region_iommu_get_attr() by filling in
410 * the arbitrary data pointer for any IOMMUMemoryRegionAttr values that
411 * the IOMMU supports. If the method is unimplemented then
412 * memory_region_iommu_get_attr() will always return -EINVAL.
414 * @iommu: the IOMMUMemoryRegion
416 * @attr: attribute being queried
418 * @data: memory to fill in with the attribute data
420 * Returns 0 on success, or a negative errno; in particular
421 * returns -EINVAL for unrecognized or unimplemented attribute types.
423 int (*get_attr
)(IOMMUMemoryRegion
*iommu
, enum IOMMUMemoryRegionAttr attr
,
429 * Return the IOMMU index to use for a given set of transaction attributes.
431 * Optional method: if an IOMMU only supports a single IOMMU index then
432 * the default implementation of memory_region_iommu_attrs_to_index()
435 * The indexes supported by an IOMMU must be contiguous, starting at 0.
437 * @iommu: the IOMMUMemoryRegion
438 * @attrs: memory transaction attributes
440 int (*attrs_to_index
)(IOMMUMemoryRegion
*iommu
, MemTxAttrs attrs
);
445 * Return the number of IOMMU indexes this IOMMU supports.
447 * Optional method: if this method is not provided, then
448 * memory_region_iommu_num_indexes() will return 1, indicating that
449 * only a single IOMMU index is supported.
451 * @iommu: the IOMMUMemoryRegion
453 int (*num_indexes
)(IOMMUMemoryRegion
*iommu
);
456 * @iommu_set_page_size_mask:
458 * Restrict the page size mask that can be supported with a given IOMMU
459 * memory region. Used for example to propagate host physical IOMMU page
460 * size mask limitations to the virtual IOMMU.
462 * Optional method: if this method is not provided, then the default global
465 * @iommu: the IOMMUMemoryRegion
467 * @page_size_mask: a bitmask of supported page sizes. At least one bit,
468 * representing the smallest page size, must be set. Additional set bits
469 * represent supported block sizes. For example a host physical IOMMU that
470 * uses page tables with a page size of 4kB, and supports 2MB and 4GB
471 * blocks, will set mask 0x40201000. A granule of 4kB with indiscriminate
472 * block sizes is specified with mask 0xfffffffffffff000.
474 * Returns 0 on success, or a negative error. In case of failure, the error
475 * object must be created.
477 int (*iommu_set_page_size_mask
)(IOMMUMemoryRegion
*iommu
,
478 uint64_t page_size_mask
,
482 typedef struct RamDiscardListener RamDiscardListener
;
483 typedef int (*NotifyRamPopulate
)(RamDiscardListener
*rdl
,
484 MemoryRegionSection
*section
);
485 typedef void (*NotifyRamDiscard
)(RamDiscardListener
*rdl
,
486 MemoryRegionSection
*section
);
488 struct RamDiscardListener
{
492 * Notification that previously discarded memory is about to get populated.
493 * Listeners are able to object. If any listener objects, already
494 * successfully notified listeners are notified about a discard again.
496 * @rdl: the #RamDiscardListener getting notified
497 * @section: the #MemoryRegionSection to get populated. The section
498 * is aligned within the memory region to the minimum granularity
499 * unless it would exceed the registered section.
501 * Returns 0 on success. If the notification is rejected by the listener,
502 * an error is returned.
504 NotifyRamPopulate notify_populate
;
509 * Notification that previously populated memory was discarded successfully
510 * and listeners should drop all references to such memory and prevent
511 * new population (e.g., unmap).
513 * @rdl: the #RamDiscardListener getting notified
514 * @section: the #MemoryRegionSection to get populated. The section
515 * is aligned within the memory region to the minimum granularity
516 * unless it would exceed the registered section.
518 NotifyRamDiscard notify_discard
;
521 * @double_discard_supported:
523 * The listener suppors getting @notify_discard notifications that span
524 * already discarded parts.
526 bool double_discard_supported
;
528 MemoryRegionSection
*section
;
529 QLIST_ENTRY(RamDiscardListener
) next
;
532 static inline void ram_discard_listener_init(RamDiscardListener
*rdl
,
533 NotifyRamPopulate populate_fn
,
534 NotifyRamDiscard discard_fn
,
535 bool double_discard_supported
)
537 rdl
->notify_populate
= populate_fn
;
538 rdl
->notify_discard
= discard_fn
;
539 rdl
->double_discard_supported
= double_discard_supported
;
542 typedef int (*ReplayRamPopulate
)(MemoryRegionSection
*section
, void *opaque
);
545 * RamDiscardManagerClass:
547 * A #RamDiscardManager coordinates which parts of specific RAM #MemoryRegion
548 * regions are currently populated to be used/accessed by the VM, notifying
549 * after parts were discarded (freeing up memory) and before parts will be
550 * populated (consuming memory), to be used/acessed by the VM.
552 * A #RamDiscardManager can only be set for a RAM #MemoryRegion while the
553 * #MemoryRegion isn't mapped yet; it cannot change while the #MemoryRegion is
556 * The #RamDiscardManager is intended to be used by technologies that are
557 * incompatible with discarding of RAM (e.g., VFIO, which may pin all
558 * memory inside a #MemoryRegion), and require proper coordination to only
559 * map the currently populated parts, to hinder parts that are expected to
560 * remain discarded from silently getting populated and consuming memory.
561 * Technologies that support discarding of RAM don't have to bother and can
562 * simply map the whole #MemoryRegion.
564 * An example #RamDiscardManager is virtio-mem, which logically (un)plugs
565 * memory within an assigned RAM #MemoryRegion, coordinated with the VM.
566 * Logically unplugging memory consists of discarding RAM. The VM agreed to not
567 * access unplugged (discarded) memory - especially via DMA. virtio-mem will
568 * properly coordinate with listeners before memory is plugged (populated),
569 * and after memory is unplugged (discarded).
571 * Listeners are called in multiples of the minimum granularity (unless it
572 * would exceed the registered range) and changes are aligned to the minimum
573 * granularity within the #MemoryRegion. Listeners have to prepare for memory
574 * becomming discarded in a different granularity than it was populated and the
577 struct RamDiscardManagerClass
{
579 InterfaceClass parent_class
;
584 * @get_min_granularity:
586 * Get the minimum granularity in which listeners will get notified
587 * about changes within the #MemoryRegion via the #RamDiscardManager.
589 * @rdm: the #RamDiscardManager
590 * @mr: the #MemoryRegion
592 * Returns the minimum granularity.
594 uint64_t (*get_min_granularity
)(const RamDiscardManager
*rdm
,
595 const MemoryRegion
*mr
);
600 * Check whether the given #MemoryRegionSection is completely populated
601 * (i.e., no parts are currently discarded) via the #RamDiscardManager.
602 * There are no alignment requirements.
604 * @rdm: the #RamDiscardManager
605 * @section: the #MemoryRegionSection
607 * Returns whether the given range is completely populated.
609 bool (*is_populated
)(const RamDiscardManager
*rdm
,
610 const MemoryRegionSection
*section
);
615 * Call the #ReplayRamPopulate callback for all populated parts within the
616 * #MemoryRegionSection via the #RamDiscardManager.
618 * In case any call fails, no further calls are made.
620 * @rdm: the #RamDiscardManager
621 * @section: the #MemoryRegionSection
622 * @replay_fn: the #ReplayRamPopulate callback
623 * @opaque: pointer to forward to the callback
625 * Returns 0 on success, or a negative error if any notification failed.
627 int (*replay_populated
)(const RamDiscardManager
*rdm
,
628 MemoryRegionSection
*section
,
629 ReplayRamPopulate replay_fn
, void *opaque
);
632 * @register_listener:
634 * Register a #RamDiscardListener for the given #MemoryRegionSection and
635 * immediately notify the #RamDiscardListener about all populated parts
636 * within the #MemoryRegionSection via the #RamDiscardManager.
638 * In case any notification fails, no further notifications are triggered
639 * and an error is logged.
641 * @rdm: the #RamDiscardManager
642 * @rdl: the #RamDiscardListener
643 * @section: the #MemoryRegionSection
645 void (*register_listener
)(RamDiscardManager
*rdm
,
646 RamDiscardListener
*rdl
,
647 MemoryRegionSection
*section
);
650 * @unregister_listener:
652 * Unregister a previously registered #RamDiscardListener via the
653 * #RamDiscardManager after notifying the #RamDiscardListener about all
654 * populated parts becoming unpopulated within the registered
655 * #MemoryRegionSection.
657 * @rdm: the #RamDiscardManager
658 * @rdl: the #RamDiscardListener
660 void (*unregister_listener
)(RamDiscardManager
*rdm
,
661 RamDiscardListener
*rdl
);
664 uint64_t ram_discard_manager_get_min_granularity(const RamDiscardManager
*rdm
,
665 const MemoryRegion
*mr
);
667 bool ram_discard_manager_is_populated(const RamDiscardManager
*rdm
,
668 const MemoryRegionSection
*section
);
670 int ram_discard_manager_replay_populated(const RamDiscardManager
*rdm
,
671 MemoryRegionSection
*section
,
672 ReplayRamPopulate replay_fn
,
675 void ram_discard_manager_register_listener(RamDiscardManager
*rdm
,
676 RamDiscardListener
*rdl
,
677 MemoryRegionSection
*section
);
679 void ram_discard_manager_unregister_listener(RamDiscardManager
*rdm
,
680 RamDiscardListener
*rdl
);
682 typedef struct CoalescedMemoryRange CoalescedMemoryRange
;
683 typedef struct MemoryRegionIoeventfd MemoryRegionIoeventfd
;
687 * A struct representing a memory region.
689 struct MemoryRegion
{
694 /* The following fields should fit in a cache line */
698 bool readonly
; /* For RAM regions */
701 bool flush_coalesced_mmio
;
702 uint8_t dirty_log_mask
;
707 const MemoryRegionOps
*ops
;
709 MemoryRegion
*container
;
712 void (*destructor
)(MemoryRegion
*mr
);
717 bool warning_printed
; /* For reservations */
718 uint8_t vga_logging_count
;
722 QTAILQ_HEAD(, MemoryRegion
) subregions
;
723 QTAILQ_ENTRY(MemoryRegion
) subregions_link
;
724 QTAILQ_HEAD(, CoalescedMemoryRange
) coalesced
;
726 unsigned ioeventfd_nb
;
727 MemoryRegionIoeventfd
*ioeventfds
;
728 RamDiscardManager
*rdm
; /* Only for RAM */
731 struct IOMMUMemoryRegion
{
732 MemoryRegion parent_obj
;
734 QLIST_HEAD(, IOMMUNotifier
) iommu_notify
;
735 IOMMUNotifierFlag iommu_notify_flags
;
738 #define IOMMU_NOTIFIER_FOREACH(n, mr) \
739 QLIST_FOREACH((n), &(mr)->iommu_notify, node)
742 * struct MemoryListener: callbacks structure for updates to the physical memory map
744 * Allows a component to adjust to changes in the guest-visible memory map.
745 * Use with memory_listener_register() and memory_listener_unregister().
747 struct MemoryListener
{
751 * Called at the beginning of an address space update transaction.
752 * Followed by calls to #MemoryListener.region_add(),
753 * #MemoryListener.region_del(), #MemoryListener.region_nop(),
754 * #MemoryListener.log_start() and #MemoryListener.log_stop() in
755 * increasing address order.
757 * @listener: The #MemoryListener.
759 void (*begin
)(MemoryListener
*listener
);
764 * Called at the end of an address space update transaction,
765 * after the last call to #MemoryListener.region_add(),
766 * #MemoryListener.region_del() or #MemoryListener.region_nop(),
767 * #MemoryListener.log_start() and #MemoryListener.log_stop().
769 * @listener: The #MemoryListener.
771 void (*commit
)(MemoryListener
*listener
);
776 * Called during an address space update transaction,
777 * for a section of the address space that is new in this address space
778 * space since the last transaction.
780 * @listener: The #MemoryListener.
781 * @section: The new #MemoryRegionSection.
783 void (*region_add
)(MemoryListener
*listener
, MemoryRegionSection
*section
);
788 * Called during an address space update transaction,
789 * for a section of the address space that has disappeared in the address
790 * space since the last transaction.
792 * @listener: The #MemoryListener.
793 * @section: The old #MemoryRegionSection.
795 void (*region_del
)(MemoryListener
*listener
, MemoryRegionSection
*section
);
800 * Called during an address space update transaction,
801 * for a section of the address space that is in the same place in the address
802 * space as in the last transaction.
804 * @listener: The #MemoryListener.
805 * @section: The #MemoryRegionSection.
807 void (*region_nop
)(MemoryListener
*listener
, MemoryRegionSection
*section
);
812 * Called during an address space update transaction, after
813 * one of #MemoryListener.region_add(), #MemoryListener.region_del() or
814 * #MemoryListener.region_nop(), if dirty memory logging clients have
815 * become active since the last transaction.
817 * @listener: The #MemoryListener.
818 * @section: The #MemoryRegionSection.
819 * @old: A bitmap of dirty memory logging clients that were active in
820 * the previous transaction.
821 * @new: A bitmap of dirty memory logging clients that are active in
822 * the current transaction.
824 void (*log_start
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
830 * Called during an address space update transaction, after
831 * one of #MemoryListener.region_add(), #MemoryListener.region_del() or
832 * #MemoryListener.region_nop() and possibly after
833 * #MemoryListener.log_start(), if dirty memory logging clients have
834 * become inactive since the last transaction.
836 * @listener: The #MemoryListener.
837 * @section: The #MemoryRegionSection.
838 * @old: A bitmap of dirty memory logging clients that were active in
839 * the previous transaction.
840 * @new: A bitmap of dirty memory logging clients that are active in
841 * the current transaction.
843 void (*log_stop
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
849 * Called by memory_region_snapshot_and_clear_dirty() and
850 * memory_global_dirty_log_sync(), before accessing QEMU's "official"
851 * copy of the dirty memory bitmap for a #MemoryRegionSection.
853 * @listener: The #MemoryListener.
854 * @section: The #MemoryRegionSection.
856 void (*log_sync
)(MemoryListener
*listener
, MemoryRegionSection
*section
);
861 * This is the global version of @log_sync when the listener does
862 * not have a way to synchronize the log with finer granularity.
863 * When the listener registers with @log_sync_global defined, then
864 * its @log_sync must be NULL. Vice versa.
866 * @listener: The #MemoryListener.
868 void (*log_sync_global
)(MemoryListener
*listener
);
873 * Called before reading the dirty memory bitmap for a
874 * #MemoryRegionSection.
876 * @listener: The #MemoryListener.
877 * @section: The #MemoryRegionSection.
879 void (*log_clear
)(MemoryListener
*listener
, MemoryRegionSection
*section
);
884 * Called by memory_global_dirty_log_start(), which
885 * enables the %DIRTY_LOG_MIGRATION client on all memory regions in
886 * the address space. #MemoryListener.log_global_start() is also
887 * called when a #MemoryListener is added, if global dirty logging is
888 * active at that time.
890 * @listener: The #MemoryListener.
892 void (*log_global_start
)(MemoryListener
*listener
);
897 * Called by memory_global_dirty_log_stop(), which
898 * disables the %DIRTY_LOG_MIGRATION client on all memory regions in
901 * @listener: The #MemoryListener.
903 void (*log_global_stop
)(MemoryListener
*listener
);
906 * @log_global_after_sync:
908 * Called after reading the dirty memory bitmap
909 * for any #MemoryRegionSection.
911 * @listener: The #MemoryListener.
913 void (*log_global_after_sync
)(MemoryListener
*listener
);
918 * Called during an address space update transaction,
919 * for a section of the address space that has had a new ioeventfd
920 * registration since the last transaction.
922 * @listener: The #MemoryListener.
923 * @section: The new #MemoryRegionSection.
924 * @match_data: The @match_data parameter for the new ioeventfd.
925 * @data: The @data parameter for the new ioeventfd.
926 * @e: The #EventNotifier parameter for the new ioeventfd.
928 void (*eventfd_add
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
929 bool match_data
, uint64_t data
, EventNotifier
*e
);
934 * Called during an address space update transaction,
935 * for a section of the address space that has dropped an ioeventfd
936 * registration since the last transaction.
938 * @listener: The #MemoryListener.
939 * @section: The new #MemoryRegionSection.
940 * @match_data: The @match_data parameter for the dropped ioeventfd.
941 * @data: The @data parameter for the dropped ioeventfd.
942 * @e: The #EventNotifier parameter for the dropped ioeventfd.
944 void (*eventfd_del
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
945 bool match_data
, uint64_t data
, EventNotifier
*e
);
950 * Called during an address space update transaction,
951 * for a section of the address space that has had a new coalesced
952 * MMIO range registration since the last transaction.
954 * @listener: The #MemoryListener.
955 * @section: The new #MemoryRegionSection.
956 * @addr: The starting address for the coalesced MMIO range.
957 * @len: The length of the coalesced MMIO range.
959 void (*coalesced_io_add
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
960 hwaddr addr
, hwaddr len
);
965 * Called during an address space update transaction,
966 * for a section of the address space that has dropped a coalesced
967 * MMIO range since the last transaction.
969 * @listener: The #MemoryListener.
970 * @section: The new #MemoryRegionSection.
971 * @addr: The starting address for the coalesced MMIO range.
972 * @len: The length of the coalesced MMIO range.
974 void (*coalesced_io_del
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
975 hwaddr addr
, hwaddr len
);
979 * Govern the order in which memory listeners are invoked. Lower priorities
980 * are invoked earlier for "add" or "start" callbacks, and later for "delete"
981 * or "stop" callbacks.
988 * Name of the listener. It can be used in contexts where we'd like to
989 * identify one memory listener with the rest.
994 AddressSpace
*address_space
;
995 QTAILQ_ENTRY(MemoryListener
) link
;
996 QTAILQ_ENTRY(MemoryListener
) link_as
;
1000 * struct AddressSpace: describes a mapping of addresses to #MemoryRegion objects
1002 struct AddressSpace
{
1004 struct rcu_head rcu
;
1008 /* Accessed via RCU. */
1009 struct FlatView
*current_map
;
1012 struct MemoryRegionIoeventfd
*ioeventfds
;
1013 QTAILQ_HEAD(, MemoryListener
) listeners
;
1014 QTAILQ_ENTRY(AddressSpace
) address_spaces_link
;
1017 typedef struct AddressSpaceDispatch AddressSpaceDispatch
;
1018 typedef struct FlatRange FlatRange
;
1020 /* Flattened global view of current active memory hierarchy. Kept in sorted
1024 struct rcu_head rcu
;
1028 unsigned nr_allocated
;
1029 struct AddressSpaceDispatch
*dispatch
;
1033 static inline FlatView
*address_space_to_flatview(AddressSpace
*as
)
1035 return qatomic_rcu_read(&as
->current_map
);
1039 * typedef flatview_cb: callback for flatview_for_each_range()
1041 * @start: start address of the range within the FlatView
1042 * @len: length of the range in bytes
1043 * @mr: MemoryRegion covering this range
1044 * @offset_in_region: offset of the first byte of the range within @mr
1045 * @opaque: data pointer passed to flatview_for_each_range()
1047 * Returns: true to stop the iteration, false to keep going.
1049 typedef bool (*flatview_cb
)(Int128 start
,
1051 const MemoryRegion
*mr
,
1052 hwaddr offset_in_region
,
1056 * flatview_for_each_range: Iterate through a FlatView
1057 * @fv: the FlatView to iterate through
1058 * @cb: function to call for each range
1059 * @opaque: opaque data pointer to pass to @cb
1061 * A FlatView is made up of a list of non-overlapping ranges, each of
1062 * which is a slice of a MemoryRegion. This function iterates through
1063 * each range in @fv, calling @cb. The callback function can terminate
1064 * iteration early by returning 'true'.
1066 void flatview_for_each_range(FlatView
*fv
, flatview_cb cb
, void *opaque
);
1068 static inline bool MemoryRegionSection_eq(MemoryRegionSection
*a
,
1069 MemoryRegionSection
*b
)
1071 return a
->mr
== b
->mr
&&
1073 a
->offset_within_region
== b
->offset_within_region
&&
1074 a
->offset_within_address_space
== b
->offset_within_address_space
&&
1075 int128_eq(a
->size
, b
->size
) &&
1076 a
->readonly
== b
->readonly
&&
1077 a
->nonvolatile
== b
->nonvolatile
;
1081 * memory_region_section_new_copy: Copy a memory region section
1083 * Allocate memory for a new copy, copy the memory region section, and
1084 * properly take a reference on all relevant members.
1086 * @s: the #MemoryRegionSection to copy
1088 MemoryRegionSection
*memory_region_section_new_copy(MemoryRegionSection
*s
);
1091 * memory_region_section_new_copy: Free a copied memory region section
1093 * Free a copy of a memory section created via memory_region_section_new_copy().
1094 * properly dropping references on all relevant members.
1096 * @s: the #MemoryRegionSection to copy
1098 void memory_region_section_free_copy(MemoryRegionSection
*s
);
1101 * memory_region_init: Initialize a memory region
1103 * The region typically acts as a container for other memory regions. Use
1104 * memory_region_add_subregion() to add subregions.
1106 * @mr: the #MemoryRegion to be initialized
1107 * @owner: the object that tracks the region's reference count
1108 * @name: used for debugging; not visible to the user or ABI
1109 * @size: size of the region; any subregions beyond this size will be clipped
1111 void memory_region_init(MemoryRegion
*mr
,
1117 * memory_region_ref: Add 1 to a memory region's reference count
1119 * Whenever memory regions are accessed outside the BQL, they need to be
1120 * preserved against hot-unplug. MemoryRegions actually do not have their
1121 * own reference count; they piggyback on a QOM object, their "owner".
1122 * This function adds a reference to the owner.
1124 * All MemoryRegions must have an owner if they can disappear, even if the
1125 * device they belong to operates exclusively under the BQL. This is because
1126 * the region could be returned at any time by memory_region_find, and this
1127 * is usually under guest control.
1129 * @mr: the #MemoryRegion
1131 void memory_region_ref(MemoryRegion
*mr
);
1134 * memory_region_unref: Remove 1 to a memory region's reference count
1136 * Whenever memory regions are accessed outside the BQL, they need to be
1137 * preserved against hot-unplug. MemoryRegions actually do not have their
1138 * own reference count; they piggyback on a QOM object, their "owner".
1139 * This function removes a reference to the owner and possibly destroys it.
1141 * @mr: the #MemoryRegion
1143 void memory_region_unref(MemoryRegion
*mr
);
1146 * memory_region_init_io: Initialize an I/O memory region.
1148 * Accesses into the region will cause the callbacks in @ops to be called.
1149 * if @size is nonzero, subregions will be clipped to @size.
1151 * @mr: the #MemoryRegion to be initialized.
1152 * @owner: the object that tracks the region's reference count
1153 * @ops: a structure containing read and write callbacks to be used when
1154 * I/O is performed on the region.
1155 * @opaque: passed to the read and write callbacks of the @ops structure.
1156 * @name: used for debugging; not visible to the user or ABI
1157 * @size: size of the region.
1159 void memory_region_init_io(MemoryRegion
*mr
,
1161 const MemoryRegionOps
*ops
,
1167 * memory_region_init_ram_nomigrate: Initialize RAM memory region. Accesses
1168 * into the region will modify memory
1171 * @mr: the #MemoryRegion to be initialized.
1172 * @owner: the object that tracks the region's reference count
1173 * @name: Region name, becomes part of RAMBlock name used in migration stream
1174 * must be unique within any device
1175 * @size: size of the region.
1176 * @errp: pointer to Error*, to store an error if it happens.
1178 * Note that this function does not do anything to cause the data in the
1179 * RAM memory region to be migrated; that is the responsibility of the caller.
1181 void memory_region_init_ram_nomigrate(MemoryRegion
*mr
,
1188 * memory_region_init_ram_flags_nomigrate: Initialize RAM memory region.
1189 * Accesses into the region will
1190 * modify memory directly.
1192 * @mr: the #MemoryRegion to be initialized.
1193 * @owner: the object that tracks the region's reference count
1194 * @name: Region name, becomes part of RAMBlock name used in migration stream
1195 * must be unique within any device
1196 * @size: size of the region.
1197 * @ram_flags: RamBlock flags. Supported flags: RAM_SHARED, RAM_NORESERVE.
1198 * @errp: pointer to Error*, to store an error if it happens.
1200 * Note that this function does not do anything to cause the data in the
1201 * RAM memory region to be migrated; that is the responsibility of the caller.
1203 void memory_region_init_ram_flags_nomigrate(MemoryRegion
*mr
,
1211 * memory_region_init_resizeable_ram: Initialize memory region with resizeable
1212 * RAM. Accesses into the region will
1213 * modify memory directly. Only an initial
1214 * portion of this RAM is actually used.
1215 * Changing the size while migrating
1216 * can result in the migration being
1219 * @mr: the #MemoryRegion to be initialized.
1220 * @owner: the object that tracks the region's reference count
1221 * @name: Region name, becomes part of RAMBlock name used in migration stream
1222 * must be unique within any device
1223 * @size: used size of the region.
1224 * @max_size: max size of the region.
1225 * @resized: callback to notify owner about used size change.
1226 * @errp: pointer to Error*, to store an error if it happens.
1228 * Note that this function does not do anything to cause the data in the
1229 * RAM memory region to be migrated; that is the responsibility of the caller.
1231 void memory_region_init_resizeable_ram(MemoryRegion
*mr
,
1236 void (*resized
)(const char*,
1243 * memory_region_init_ram_from_file: Initialize RAM memory region with a
1246 * @mr: the #MemoryRegion to be initialized.
1247 * @owner: the object that tracks the region's reference count
1248 * @name: Region name, becomes part of RAMBlock name used in migration stream
1249 * must be unique within any device
1250 * @size: size of the region.
1251 * @align: alignment of the region base address; if 0, the default alignment
1252 * (getpagesize()) will be used.
1253 * @ram_flags: RamBlock flags. Supported flags: RAM_SHARED, RAM_PMEM,
1255 * @path: the path in which to allocate the RAM.
1256 * @readonly: true to open @path for reading, false for read/write.
1257 * @errp: pointer to Error*, to store an error if it happens.
1259 * Note that this function does not do anything to cause the data in the
1260 * RAM memory region to be migrated; that is the responsibility of the caller.
1262 void memory_region_init_ram_from_file(MemoryRegion
*mr
,
1273 * memory_region_init_ram_from_fd: Initialize RAM memory region with a
1276 * @mr: the #MemoryRegion to be initialized.
1277 * @owner: the object that tracks the region's reference count
1278 * @name: the name of the region.
1279 * @size: size of the region.
1280 * @ram_flags: RamBlock flags. Supported flags: RAM_SHARED, RAM_PMEM,
1281 * RAM_NORESERVE, RAM_PROTECTED.
1282 * @fd: the fd to mmap.
1283 * @offset: offset within the file referenced by fd
1284 * @errp: pointer to Error*, to store an error if it happens.
1286 * Note that this function does not do anything to cause the data in the
1287 * RAM memory region to be migrated; that is the responsibility of the caller.
1289 void memory_region_init_ram_from_fd(MemoryRegion
*mr
,
1300 * memory_region_init_ram_ptr: Initialize RAM memory region from a
1301 * user-provided pointer. Accesses into the
1302 * region will modify memory directly.
1304 * @mr: the #MemoryRegion to be initialized.
1305 * @owner: the object that tracks the region's reference count
1306 * @name: Region name, becomes part of RAMBlock name used in migration stream
1307 * must be unique within any device
1308 * @size: size of the region.
1309 * @ptr: memory to be mapped; must contain at least @size bytes.
1311 * Note that this function does not do anything to cause the data in the
1312 * RAM memory region to be migrated; that is the responsibility of the caller.
1314 void memory_region_init_ram_ptr(MemoryRegion
*mr
,
1321 * memory_region_init_ram_device_ptr: Initialize RAM device memory region from
1322 * a user-provided pointer.
1324 * A RAM device represents a mapping to a physical device, such as to a PCI
1325 * MMIO BAR of an vfio-pci assigned device. The memory region may be mapped
1326 * into the VM address space and access to the region will modify memory
1327 * directly. However, the memory region should not be included in a memory
1328 * dump (device may not be enabled/mapped at the time of the dump), and
1329 * operations incompatible with manipulating MMIO should be avoided. Replaces
1332 * @mr: the #MemoryRegion to be initialized.
1333 * @owner: the object that tracks the region's reference count
1334 * @name: the name of the region.
1335 * @size: size of the region.
1336 * @ptr: memory to be mapped; must contain at least @size bytes.
1338 * Note that this function does not do anything to cause the data in the
1339 * RAM memory region to be migrated; that is the responsibility of the caller.
1340 * (For RAM device memory regions, migrating the contents rarely makes sense.)
1342 void memory_region_init_ram_device_ptr(MemoryRegion
*mr
,
1349 * memory_region_init_alias: Initialize a memory region that aliases all or a
1350 * part of another memory region.
1352 * @mr: the #MemoryRegion to be initialized.
1353 * @owner: the object that tracks the region's reference count
1354 * @name: used for debugging; not visible to the user or ABI
1355 * @orig: the region to be referenced; @mr will be equivalent to
1356 * @orig between @offset and @offset + @size - 1.
1357 * @offset: start of the section in @orig to be referenced.
1358 * @size: size of the region.
1360 void memory_region_init_alias(MemoryRegion
*mr
,
1368 * memory_region_init_rom_nomigrate: Initialize a ROM memory region.
1370 * This has the same effect as calling memory_region_init_ram_nomigrate()
1371 * and then marking the resulting region read-only with
1372 * memory_region_set_readonly().
1374 * Note that this function does not do anything to cause the data in the
1375 * RAM side of the memory region to be migrated; that is the responsibility
1378 * @mr: the #MemoryRegion to be initialized.
1379 * @owner: the object that tracks the region's reference count
1380 * @name: Region name, becomes part of RAMBlock name used in migration stream
1381 * must be unique within any device
1382 * @size: size of the region.
1383 * @errp: pointer to Error*, to store an error if it happens.
1385 void memory_region_init_rom_nomigrate(MemoryRegion
*mr
,
1392 * memory_region_init_rom_device_nomigrate: Initialize a ROM memory region.
1393 * Writes are handled via callbacks.
1395 * Note that this function does not do anything to cause the data in the
1396 * RAM side of the memory region to be migrated; that is the responsibility
1399 * @mr: the #MemoryRegion to be initialized.
1400 * @owner: the object that tracks the region's reference count
1401 * @ops: callbacks for write access handling (must not be NULL).
1402 * @opaque: passed to the read and write callbacks of the @ops structure.
1403 * @name: Region name, becomes part of RAMBlock name used in migration stream
1404 * must be unique within any device
1405 * @size: size of the region.
1406 * @errp: pointer to Error*, to store an error if it happens.
1408 void memory_region_init_rom_device_nomigrate(MemoryRegion
*mr
,
1410 const MemoryRegionOps
*ops
,
1417 * memory_region_init_iommu: Initialize a memory region of a custom type
1418 * that translates addresses
1420 * An IOMMU region translates addresses and forwards accesses to a target
1423 * The IOMMU implementation must define a subclass of TYPE_IOMMU_MEMORY_REGION.
1424 * @_iommu_mr should be a pointer to enough memory for an instance of
1425 * that subclass, @instance_size is the size of that subclass, and
1426 * @mrtypename is its name. This function will initialize @_iommu_mr as an
1427 * instance of the subclass, and its methods will then be called to handle
1428 * accesses to the memory region. See the documentation of
1429 * #IOMMUMemoryRegionClass for further details.
1431 * @_iommu_mr: the #IOMMUMemoryRegion to be initialized
1432 * @instance_size: the IOMMUMemoryRegion subclass instance size
1433 * @mrtypename: the type name of the #IOMMUMemoryRegion
1434 * @owner: the object that tracks the region's reference count
1435 * @name: used for debugging; not visible to the user or ABI
1436 * @size: size of the region.
1438 void memory_region_init_iommu(void *_iommu_mr
,
1439 size_t instance_size
,
1440 const char *mrtypename
,
1446 * memory_region_init_ram - Initialize RAM memory region. Accesses into the
1447 * region will modify memory directly.
1449 * @mr: the #MemoryRegion to be initialized
1450 * @owner: the object that tracks the region's reference count (must be
1451 * TYPE_DEVICE or a subclass of TYPE_DEVICE, or NULL)
1452 * @name: name of the memory region
1453 * @size: size of the region in bytes
1454 * @errp: pointer to Error*, to store an error if it happens.
1456 * This function allocates RAM for a board model or device, and
1457 * arranges for it to be migrated (by calling vmstate_register_ram()
1458 * if @owner is a DeviceState, or vmstate_register_ram_global() if
1461 * TODO: Currently we restrict @owner to being either NULL (for
1462 * global RAM regions with no owner) or devices, so that we can
1463 * give the RAM block a unique name for migration purposes.
1464 * We should lift this restriction and allow arbitrary Objects.
1465 * If you pass a non-NULL non-device @owner then we will assert.
1467 void memory_region_init_ram(MemoryRegion
*mr
,
1474 * memory_region_init_rom: Initialize a ROM memory region.
1476 * This has the same effect as calling memory_region_init_ram()
1477 * and then marking the resulting region read-only with
1478 * memory_region_set_readonly(). This includes arranging for the
1479 * contents to be migrated.
1481 * TODO: Currently we restrict @owner to being either NULL (for
1482 * global RAM regions with no owner) or devices, so that we can
1483 * give the RAM block a unique name for migration purposes.
1484 * We should lift this restriction and allow arbitrary Objects.
1485 * If you pass a non-NULL non-device @owner then we will assert.
1487 * @mr: the #MemoryRegion to be initialized.
1488 * @owner: the object that tracks the region's reference count
1489 * @name: Region name, becomes part of RAMBlock name used in migration stream
1490 * must be unique within any device
1491 * @size: size of the region.
1492 * @errp: pointer to Error*, to store an error if it happens.
1494 void memory_region_init_rom(MemoryRegion
*mr
,
1501 * memory_region_init_rom_device: Initialize a ROM memory region.
1502 * Writes are handled via callbacks.
1504 * This function initializes a memory region backed by RAM for reads
1505 * and callbacks for writes, and arranges for the RAM backing to
1506 * be migrated (by calling vmstate_register_ram()
1507 * if @owner is a DeviceState, or vmstate_register_ram_global() if
1510 * TODO: Currently we restrict @owner to being either NULL (for
1511 * global RAM regions with no owner) or devices, so that we can
1512 * give the RAM block a unique name for migration purposes.
1513 * We should lift this restriction and allow arbitrary Objects.
1514 * If you pass a non-NULL non-device @owner then we will assert.
1516 * @mr: the #MemoryRegion to be initialized.
1517 * @owner: the object that tracks the region's reference count
1518 * @ops: callbacks for write access handling (must not be NULL).
1519 * @opaque: passed to the read and write callbacks of the @ops structure.
1520 * @name: Region name, becomes part of RAMBlock name used in migration stream
1521 * must be unique within any device
1522 * @size: size of the region.
1523 * @errp: pointer to Error*, to store an error if it happens.
1525 void memory_region_init_rom_device(MemoryRegion
*mr
,
1527 const MemoryRegionOps
*ops
,
1535 * memory_region_owner: get a memory region's owner.
1537 * @mr: the memory region being queried.
1539 Object
*memory_region_owner(MemoryRegion
*mr
);
1542 * memory_region_size: get a memory region's size.
1544 * @mr: the memory region being queried.
1546 uint64_t memory_region_size(MemoryRegion
*mr
);
1549 * memory_region_is_ram: check whether a memory region is random access
1551 * Returns %true if a memory region is random access.
1553 * @mr: the memory region being queried
1555 static inline bool memory_region_is_ram(MemoryRegion
*mr
)
1561 * memory_region_is_ram_device: check whether a memory region is a ram device
1563 * Returns %true if a memory region is a device backed ram region
1565 * @mr: the memory region being queried
1567 bool memory_region_is_ram_device(MemoryRegion
*mr
);
1570 * memory_region_is_romd: check whether a memory region is in ROMD mode
1572 * Returns %true if a memory region is a ROM device and currently set to allow
1575 * @mr: the memory region being queried
1577 static inline bool memory_region_is_romd(MemoryRegion
*mr
)
1579 return mr
->rom_device
&& mr
->romd_mode
;
1583 * memory_region_is_protected: check whether a memory region is protected
1585 * Returns %true if a memory region is protected RAM and cannot be accessed
1586 * via standard mechanisms, e.g. DMA.
1588 * @mr: the memory region being queried
1590 bool memory_region_is_protected(MemoryRegion
*mr
);
1593 * memory_region_get_iommu: check whether a memory region is an iommu
1595 * Returns pointer to IOMMUMemoryRegion if a memory region is an iommu,
1598 * @mr: the memory region being queried
1600 static inline IOMMUMemoryRegion
*memory_region_get_iommu(MemoryRegion
*mr
)
1603 return memory_region_get_iommu(mr
->alias
);
1606 return (IOMMUMemoryRegion
*) mr
;
1612 * memory_region_get_iommu_class_nocheck: returns iommu memory region class
1613 * if an iommu or NULL if not
1615 * Returns pointer to IOMMUMemoryRegionClass if a memory region is an iommu,
1616 * otherwise NULL. This is fast path avoiding QOM checking, use with caution.
1618 * @iommu_mr: the memory region being queried
1620 static inline IOMMUMemoryRegionClass
*memory_region_get_iommu_class_nocheck(
1621 IOMMUMemoryRegion
*iommu_mr
)
1623 return (IOMMUMemoryRegionClass
*) (((Object
*)iommu_mr
)->class);
1626 #define memory_region_is_iommu(mr) (memory_region_get_iommu(mr) != NULL)
1629 * memory_region_iommu_get_min_page_size: get minimum supported page size
1632 * Returns minimum supported page size for an iommu.
1634 * @iommu_mr: the memory region being queried
1636 uint64_t memory_region_iommu_get_min_page_size(IOMMUMemoryRegion
*iommu_mr
);
1639 * memory_region_notify_iommu: notify a change in an IOMMU translation entry.
1641 * Note: for any IOMMU implementation, an in-place mapping change
1642 * should be notified with an UNMAP followed by a MAP.
1644 * @iommu_mr: the memory region that was changed
1645 * @iommu_idx: the IOMMU index for the translation table which has changed
1646 * @event: TLB event with the new entry in the IOMMU translation table.
1647 * The entry replaces all old entries for the same virtual I/O address
1650 void memory_region_notify_iommu(IOMMUMemoryRegion
*iommu_mr
,
1652 IOMMUTLBEvent event
);
1655 * memory_region_notify_iommu_one: notify a change in an IOMMU translation
1656 * entry to a single notifier
1658 * This works just like memory_region_notify_iommu(), but it only
1659 * notifies a specific notifier, not all of them.
1661 * @notifier: the notifier to be notified
1662 * @event: TLB event with the new entry in the IOMMU translation table.
1663 * The entry replaces all old entries for the same virtual I/O address
1666 void memory_region_notify_iommu_one(IOMMUNotifier
*notifier
,
1667 IOMMUTLBEvent
*event
);
1670 * memory_region_register_iommu_notifier: register a notifier for changes to
1671 * IOMMU translation entries.
1673 * Returns 0 on success, or a negative errno otherwise. In particular,
1674 * -EINVAL indicates that at least one of the attributes of the notifier
1675 * is not supported (flag/range) by the IOMMU memory region. In case of error
1676 * the error object must be created.
1678 * @mr: the memory region to observe
1679 * @n: the IOMMUNotifier to be added; the notify callback receives a
1680 * pointer to an #IOMMUTLBEntry as the opaque value; the pointer
1681 * ceases to be valid on exit from the notifier.
1682 * @errp: pointer to Error*, to store an error if it happens.
1684 int memory_region_register_iommu_notifier(MemoryRegion
*mr
,
1685 IOMMUNotifier
*n
, Error
**errp
);
1688 * memory_region_iommu_replay: replay existing IOMMU translations to
1689 * a notifier with the minimum page granularity returned by
1690 * mr->iommu_ops->get_page_size().
1692 * Note: this is not related to record-and-replay functionality.
1694 * @iommu_mr: the memory region to observe
1695 * @n: the notifier to which to replay iommu mappings
1697 void memory_region_iommu_replay(IOMMUMemoryRegion
*iommu_mr
, IOMMUNotifier
*n
);
1700 * memory_region_unregister_iommu_notifier: unregister a notifier for
1701 * changes to IOMMU translation entries.
1703 * @mr: the memory region which was observed and for which notity_stopped()
1704 * needs to be called
1705 * @n: the notifier to be removed.
1707 void memory_region_unregister_iommu_notifier(MemoryRegion
*mr
,
1711 * memory_region_iommu_get_attr: return an IOMMU attr if get_attr() is
1712 * defined on the IOMMU.
1714 * Returns 0 on success, or a negative errno otherwise. In particular,
1715 * -EINVAL indicates that the IOMMU does not support the requested
1718 * @iommu_mr: the memory region
1719 * @attr: the requested attribute
1720 * @data: a pointer to the requested attribute data
1722 int memory_region_iommu_get_attr(IOMMUMemoryRegion
*iommu_mr
,
1723 enum IOMMUMemoryRegionAttr attr
,
1727 * memory_region_iommu_attrs_to_index: return the IOMMU index to
1728 * use for translations with the given memory transaction attributes.
1730 * @iommu_mr: the memory region
1731 * @attrs: the memory transaction attributes
1733 int memory_region_iommu_attrs_to_index(IOMMUMemoryRegion
*iommu_mr
,
1737 * memory_region_iommu_num_indexes: return the total number of IOMMU
1738 * indexes that this IOMMU supports.
1740 * @iommu_mr: the memory region
1742 int memory_region_iommu_num_indexes(IOMMUMemoryRegion
*iommu_mr
);
1745 * memory_region_iommu_set_page_size_mask: set the supported page
1746 * sizes for a given IOMMU memory region
1748 * @iommu_mr: IOMMU memory region
1749 * @page_size_mask: supported page size mask
1750 * @errp: pointer to Error*, to store an error if it happens.
1752 int memory_region_iommu_set_page_size_mask(IOMMUMemoryRegion
*iommu_mr
,
1753 uint64_t page_size_mask
,
1757 * memory_region_name: get a memory region's name
1759 * Returns the string that was used to initialize the memory region.
1761 * @mr: the memory region being queried
1763 const char *memory_region_name(const MemoryRegion
*mr
);
1766 * memory_region_is_logging: return whether a memory region is logging writes
1768 * Returns %true if the memory region is logging writes for the given client
1770 * @mr: the memory region being queried
1771 * @client: the client being queried
1773 bool memory_region_is_logging(MemoryRegion
*mr
, uint8_t client
);
1776 * memory_region_get_dirty_log_mask: return the clients for which a
1777 * memory region is logging writes.
1779 * Returns a bitmap of clients, in which the DIRTY_MEMORY_* constants
1780 * are the bit indices.
1782 * @mr: the memory region being queried
1784 uint8_t memory_region_get_dirty_log_mask(MemoryRegion
*mr
);
1787 * memory_region_is_rom: check whether a memory region is ROM
1789 * Returns %true if a memory region is read-only memory.
1791 * @mr: the memory region being queried
1793 static inline bool memory_region_is_rom(MemoryRegion
*mr
)
1795 return mr
->ram
&& mr
->readonly
;
1799 * memory_region_is_nonvolatile: check whether a memory region is non-volatile
1801 * Returns %true is a memory region is non-volatile memory.
1803 * @mr: the memory region being queried
1805 static inline bool memory_region_is_nonvolatile(MemoryRegion
*mr
)
1807 return mr
->nonvolatile
;
1811 * memory_region_get_fd: Get a file descriptor backing a RAM memory region.
1813 * Returns a file descriptor backing a file-based RAM memory region,
1814 * or -1 if the region is not a file-based RAM memory region.
1816 * @mr: the RAM or alias memory region being queried.
1818 int memory_region_get_fd(MemoryRegion
*mr
);
1821 * memory_region_from_host: Convert a pointer into a RAM memory region
1822 * and an offset within it.
1824 * Given a host pointer inside a RAM memory region (created with
1825 * memory_region_init_ram() or memory_region_init_ram_ptr()), return
1826 * the MemoryRegion and the offset within it.
1828 * Use with care; by the time this function returns, the returned pointer is
1829 * not protected by RCU anymore. If the caller is not within an RCU critical
1830 * section and does not hold the iothread lock, it must have other means of
1831 * protecting the pointer, such as a reference to the region that includes
1832 * the incoming ram_addr_t.
1834 * @ptr: the host pointer to be converted
1835 * @offset: the offset within memory region
1837 MemoryRegion
*memory_region_from_host(void *ptr
, ram_addr_t
*offset
);
1840 * memory_region_get_ram_ptr: Get a pointer into a RAM memory region.
1842 * Returns a host pointer to a RAM memory region (created with
1843 * memory_region_init_ram() or memory_region_init_ram_ptr()).
1845 * Use with care; by the time this function returns, the returned pointer is
1846 * not protected by RCU anymore. If the caller is not within an RCU critical
1847 * section and does not hold the iothread lock, it must have other means of
1848 * protecting the pointer, such as a reference to the region that includes
1849 * the incoming ram_addr_t.
1851 * @mr: the memory region being queried.
1853 void *memory_region_get_ram_ptr(MemoryRegion
*mr
);
1855 /* memory_region_ram_resize: Resize a RAM region.
1857 * Resizing RAM while migrating can result in the migration being canceled.
1858 * Care has to be taken if the guest might have already detected the memory.
1860 * @mr: a memory region created with @memory_region_init_resizeable_ram.
1861 * @newsize: the new size the region
1862 * @errp: pointer to Error*, to store an error if it happens.
1864 void memory_region_ram_resize(MemoryRegion
*mr
, ram_addr_t newsize
,
1868 * memory_region_msync: Synchronize selected address range of
1869 * a memory mapped region
1871 * @mr: the memory region to be msync
1872 * @addr: the initial address of the range to be sync
1873 * @size: the size of the range to be sync
1875 void memory_region_msync(MemoryRegion
*mr
, hwaddr addr
, hwaddr size
);
1878 * memory_region_writeback: Trigger cache writeback for
1879 * selected address range
1881 * @mr: the memory region to be updated
1882 * @addr: the initial address of the range to be written back
1883 * @size: the size of the range to be written back
1885 void memory_region_writeback(MemoryRegion
*mr
, hwaddr addr
, hwaddr size
);
1888 * memory_region_set_log: Turn dirty logging on or off for a region.
1890 * Turns dirty logging on or off for a specified client (display, migration).
1891 * Only meaningful for RAM regions.
1893 * @mr: the memory region being updated.
1894 * @log: whether dirty logging is to be enabled or disabled.
1895 * @client: the user of the logging information; %DIRTY_MEMORY_VGA only.
1897 void memory_region_set_log(MemoryRegion
*mr
, bool log
, unsigned client
);
1900 * memory_region_set_dirty: Mark a range of bytes as dirty in a memory region.
1902 * Marks a range of bytes as dirty, after it has been dirtied outside
1905 * @mr: the memory region being dirtied.
1906 * @addr: the address (relative to the start of the region) being dirtied.
1907 * @size: size of the range being dirtied.
1909 void memory_region_set_dirty(MemoryRegion
*mr
, hwaddr addr
,
1913 * memory_region_clear_dirty_bitmap - clear dirty bitmap for memory range
1915 * This function is called when the caller wants to clear the remote
1916 * dirty bitmap of a memory range within the memory region. This can
1917 * be used by e.g. KVM to manually clear dirty log when
1918 * KVM_CAP_MANUAL_DIRTY_LOG_PROTECT is declared support by the host
1921 * @mr: the memory region to clear the dirty log upon
1922 * @start: start address offset within the memory region
1923 * @len: length of the memory region to clear dirty bitmap
1925 void memory_region_clear_dirty_bitmap(MemoryRegion
*mr
, hwaddr start
,
1929 * memory_region_snapshot_and_clear_dirty: Get a snapshot of the dirty
1930 * bitmap and clear it.
1932 * Creates a snapshot of the dirty bitmap, clears the dirty bitmap and
1933 * returns the snapshot. The snapshot can then be used to query dirty
1934 * status, using memory_region_snapshot_get_dirty. Snapshotting allows
1935 * querying the same page multiple times, which is especially useful for
1936 * display updates where the scanlines often are not page aligned.
1938 * The dirty bitmap region which gets copyed into the snapshot (and
1939 * cleared afterwards) can be larger than requested. The boundaries
1940 * are rounded up/down so complete bitmap longs (covering 64 pages on
1941 * 64bit hosts) can be copied over into the bitmap snapshot. Which
1942 * isn't a problem for display updates as the extra pages are outside
1943 * the visible area, and in case the visible area changes a full
1944 * display redraw is due anyway. Should other use cases for this
1945 * function emerge we might have to revisit this implementation
1948 * Use g_free to release DirtyBitmapSnapshot.
1950 * @mr: the memory region being queried.
1951 * @addr: the address (relative to the start of the region) being queried.
1952 * @size: the size of the range being queried.
1953 * @client: the user of the logging information; typically %DIRTY_MEMORY_VGA.
1955 DirtyBitmapSnapshot
*memory_region_snapshot_and_clear_dirty(MemoryRegion
*mr
,
1961 * memory_region_snapshot_get_dirty: Check whether a range of bytes is dirty
1962 * in the specified dirty bitmap snapshot.
1964 * @mr: the memory region being queried.
1965 * @snap: the dirty bitmap snapshot
1966 * @addr: the address (relative to the start of the region) being queried.
1967 * @size: the size of the range being queried.
1969 bool memory_region_snapshot_get_dirty(MemoryRegion
*mr
,
1970 DirtyBitmapSnapshot
*snap
,
1971 hwaddr addr
, hwaddr size
);
1974 * memory_region_reset_dirty: Mark a range of pages as clean, for a specified
1977 * Marks a range of pages as no longer dirty.
1979 * @mr: the region being updated.
1980 * @addr: the start of the subrange being cleaned.
1981 * @size: the size of the subrange being cleaned.
1982 * @client: the user of the logging information; %DIRTY_MEMORY_MIGRATION or
1983 * %DIRTY_MEMORY_VGA.
1985 void memory_region_reset_dirty(MemoryRegion
*mr
, hwaddr addr
,
1986 hwaddr size
, unsigned client
);
1989 * memory_region_flush_rom_device: Mark a range of pages dirty and invalidate
1990 * TBs (for self-modifying code).
1992 * The MemoryRegionOps->write() callback of a ROM device must use this function
1993 * to mark byte ranges that have been modified internally, such as by directly
1994 * accessing the memory returned by memory_region_get_ram_ptr().
1996 * This function marks the range dirty and invalidates TBs so that TCG can
1997 * detect self-modifying code.
1999 * @mr: the region being flushed.
2000 * @addr: the start, relative to the start of the region, of the range being
2002 * @size: the size, in bytes, of the range being flushed.
2004 void memory_region_flush_rom_device(MemoryRegion
*mr
, hwaddr addr
, hwaddr size
);
2007 * memory_region_set_readonly: Turn a memory region read-only (or read-write)
2009 * Allows a memory region to be marked as read-only (turning it into a ROM).
2010 * only useful on RAM regions.
2012 * @mr: the region being updated.
2013 * @readonly: whether rhe region is to be ROM or RAM.
2015 void memory_region_set_readonly(MemoryRegion
*mr
, bool readonly
);
2018 * memory_region_set_nonvolatile: Turn a memory region non-volatile
2020 * Allows a memory region to be marked as non-volatile.
2021 * only useful on RAM regions.
2023 * @mr: the region being updated.
2024 * @nonvolatile: whether rhe region is to be non-volatile.
2026 void memory_region_set_nonvolatile(MemoryRegion
*mr
, bool nonvolatile
);
2029 * memory_region_rom_device_set_romd: enable/disable ROMD mode
2031 * Allows a ROM device (initialized with memory_region_init_rom_device() to
2032 * set to ROMD mode (default) or MMIO mode. When it is in ROMD mode, the
2033 * device is mapped to guest memory and satisfies read access directly.
2034 * When in MMIO mode, reads are forwarded to the #MemoryRegion.read function.
2035 * Writes are always handled by the #MemoryRegion.write function.
2037 * @mr: the memory region to be updated
2038 * @romd_mode: %true to put the region into ROMD mode
2040 void memory_region_rom_device_set_romd(MemoryRegion
*mr
, bool romd_mode
);
2043 * memory_region_set_coalescing: Enable memory coalescing for the region.
2045 * Enabled writes to a region to be queued for later processing. MMIO ->write
2046 * callbacks may be delayed until a non-coalesced MMIO is issued.
2047 * Only useful for IO regions. Roughly similar to write-combining hardware.
2049 * @mr: the memory region to be write coalesced
2051 void memory_region_set_coalescing(MemoryRegion
*mr
);
2054 * memory_region_add_coalescing: Enable memory coalescing for a sub-range of
2057 * Like memory_region_set_coalescing(), but works on a sub-range of a region.
2058 * Multiple calls can be issued coalesced disjoint ranges.
2060 * @mr: the memory region to be updated.
2061 * @offset: the start of the range within the region to be coalesced.
2062 * @size: the size of the subrange to be coalesced.
2064 void memory_region_add_coalescing(MemoryRegion
*mr
,
2069 * memory_region_clear_coalescing: Disable MMIO coalescing for the region.
2071 * Disables any coalescing caused by memory_region_set_coalescing() or
2072 * memory_region_add_coalescing(). Roughly equivalent to uncacheble memory
2075 * @mr: the memory region to be updated.
2077 void memory_region_clear_coalescing(MemoryRegion
*mr
);
2080 * memory_region_set_flush_coalesced: Enforce memory coalescing flush before
2083 * Ensure that pending coalesced MMIO request are flushed before the memory
2084 * region is accessed. This property is automatically enabled for all regions
2085 * passed to memory_region_set_coalescing() and memory_region_add_coalescing().
2087 * @mr: the memory region to be updated.
2089 void memory_region_set_flush_coalesced(MemoryRegion
*mr
);
2092 * memory_region_clear_flush_coalesced: Disable memory coalescing flush before
2095 * Clear the automatic coalesced MMIO flushing enabled via
2096 * memory_region_set_flush_coalesced. Note that this service has no effect on
2097 * memory regions that have MMIO coalescing enabled for themselves. For them,
2098 * automatic flushing will stop once coalescing is disabled.
2100 * @mr: the memory region to be updated.
2102 void memory_region_clear_flush_coalesced(MemoryRegion
*mr
);
2105 * memory_region_add_eventfd: Request an eventfd to be triggered when a word
2106 * is written to a location.
2108 * Marks a word in an IO region (initialized with memory_region_init_io())
2109 * as a trigger for an eventfd event. The I/O callback will not be called.
2110 * The caller must be prepared to handle failure (that is, take the required
2111 * action if the callback _is_ called).
2113 * @mr: the memory region being updated.
2114 * @addr: the address within @mr that is to be monitored
2115 * @size: the size of the access to trigger the eventfd
2116 * @match_data: whether to match against @data, instead of just @addr
2117 * @data: the data to match against the guest write
2118 * @e: event notifier to be triggered when @addr, @size, and @data all match.
2120 void memory_region_add_eventfd(MemoryRegion
*mr
,
2128 * memory_region_del_eventfd: Cancel an eventfd.
2130 * Cancels an eventfd trigger requested by a previous
2131 * memory_region_add_eventfd() call.
2133 * @mr: the memory region being updated.
2134 * @addr: the address within @mr that is to be monitored
2135 * @size: the size of the access to trigger the eventfd
2136 * @match_data: whether to match against @data, instead of just @addr
2137 * @data: the data to match against the guest write
2138 * @e: event notifier to be triggered when @addr, @size, and @data all match.
2140 void memory_region_del_eventfd(MemoryRegion
*mr
,
2148 * memory_region_add_subregion: Add a subregion to a container.
2150 * Adds a subregion at @offset. The subregion may not overlap with other
2151 * subregions (except for those explicitly marked as overlapping). A region
2152 * may only be added once as a subregion (unless removed with
2153 * memory_region_del_subregion()); use memory_region_init_alias() if you
2154 * want a region to be a subregion in multiple locations.
2156 * @mr: the region to contain the new subregion; must be a container
2157 * initialized with memory_region_init().
2158 * @offset: the offset relative to @mr where @subregion is added.
2159 * @subregion: the subregion to be added.
2161 void memory_region_add_subregion(MemoryRegion
*mr
,
2163 MemoryRegion
*subregion
);
2165 * memory_region_add_subregion_overlap: Add a subregion to a container
2168 * Adds a subregion at @offset. The subregion may overlap with other
2169 * subregions. Conflicts are resolved by having a higher @priority hide a
2170 * lower @priority. Subregions without priority are taken as @priority 0.
2171 * A region may only be added once as a subregion (unless removed with
2172 * memory_region_del_subregion()); use memory_region_init_alias() if you
2173 * want a region to be a subregion in multiple locations.
2175 * @mr: the region to contain the new subregion; must be a container
2176 * initialized with memory_region_init().
2177 * @offset: the offset relative to @mr where @subregion is added.
2178 * @subregion: the subregion to be added.
2179 * @priority: used for resolving overlaps; highest priority wins.
2181 void memory_region_add_subregion_overlap(MemoryRegion
*mr
,
2183 MemoryRegion
*subregion
,
2187 * memory_region_get_ram_addr: Get the ram address associated with a memory
2190 * @mr: the region to be queried
2192 ram_addr_t
memory_region_get_ram_addr(MemoryRegion
*mr
);
2194 uint64_t memory_region_get_alignment(const MemoryRegion
*mr
);
2196 * memory_region_del_subregion: Remove a subregion.
2198 * Removes a subregion from its container.
2200 * @mr: the container to be updated.
2201 * @subregion: the region being removed; must be a current subregion of @mr.
2203 void memory_region_del_subregion(MemoryRegion
*mr
,
2204 MemoryRegion
*subregion
);
2207 * memory_region_set_enabled: dynamically enable or disable a region
2209 * Enables or disables a memory region. A disabled memory region
2210 * ignores all accesses to itself and its subregions. It does not
2211 * obscure sibling subregions with lower priority - it simply behaves as
2212 * if it was removed from the hierarchy.
2214 * Regions default to being enabled.
2216 * @mr: the region to be updated
2217 * @enabled: whether to enable or disable the region
2219 void memory_region_set_enabled(MemoryRegion
*mr
, bool enabled
);
2222 * memory_region_set_address: dynamically update the address of a region
2224 * Dynamically updates the address of a region, relative to its container.
2225 * May be used on regions are currently part of a memory hierarchy.
2227 * @mr: the region to be updated
2228 * @addr: new address, relative to container region
2230 void memory_region_set_address(MemoryRegion
*mr
, hwaddr addr
);
2233 * memory_region_set_size: dynamically update the size of a region.
2235 * Dynamically updates the size of a region.
2237 * @mr: the region to be updated
2238 * @size: used size of the region.
2240 void memory_region_set_size(MemoryRegion
*mr
, uint64_t size
);
2243 * memory_region_set_alias_offset: dynamically update a memory alias's offset
2245 * Dynamically updates the offset into the target region that an alias points
2246 * to, as if the fourth argument to memory_region_init_alias() has changed.
2248 * @mr: the #MemoryRegion to be updated; should be an alias.
2249 * @offset: the new offset into the target memory region
2251 void memory_region_set_alias_offset(MemoryRegion
*mr
,
2255 * memory_region_present: checks if an address relative to a @container
2256 * translates into #MemoryRegion within @container
2258 * Answer whether a #MemoryRegion within @container covers the address
2261 * @container: a #MemoryRegion within which @addr is a relative address
2262 * @addr: the area within @container to be searched
2264 bool memory_region_present(MemoryRegion
*container
, hwaddr addr
);
2267 * memory_region_is_mapped: returns true if #MemoryRegion is mapped
2268 * into any address space.
2270 * @mr: a #MemoryRegion which should be checked if it's mapped
2272 bool memory_region_is_mapped(MemoryRegion
*mr
);
2275 * memory_region_get_ram_discard_manager: get the #RamDiscardManager for a
2278 * The #RamDiscardManager cannot change while a memory region is mapped.
2280 * @mr: the #MemoryRegion
2282 RamDiscardManager
*memory_region_get_ram_discard_manager(MemoryRegion
*mr
);
2285 * memory_region_has_ram_discard_manager: check whether a #MemoryRegion has a
2286 * #RamDiscardManager assigned
2288 * @mr: the #MemoryRegion
2290 static inline bool memory_region_has_ram_discard_manager(MemoryRegion
*mr
)
2292 return !!memory_region_get_ram_discard_manager(mr
);
2296 * memory_region_set_ram_discard_manager: set the #RamDiscardManager for a
2299 * This function must not be called for a mapped #MemoryRegion, a #MemoryRegion
2300 * that does not cover RAM, or a #MemoryRegion that already has a
2301 * #RamDiscardManager assigned.
2303 * @mr: the #MemoryRegion
2304 * @rdm: #RamDiscardManager to set
2306 void memory_region_set_ram_discard_manager(MemoryRegion
*mr
,
2307 RamDiscardManager
*rdm
);
2310 * memory_region_find: translate an address/size relative to a
2311 * MemoryRegion into a #MemoryRegionSection.
2313 * Locates the first #MemoryRegion within @mr that overlaps the range
2314 * given by @addr and @size.
2316 * Returns a #MemoryRegionSection that describes a contiguous overlap.
2317 * It will have the following characteristics:
2318 * - @size = 0 iff no overlap was found
2319 * - @mr is non-%NULL iff an overlap was found
2321 * Remember that in the return value the @offset_within_region is
2322 * relative to the returned region (in the .@mr field), not to the
2325 * Similarly, the .@offset_within_address_space is relative to the
2326 * address space that contains both regions, the passed and the
2327 * returned one. However, in the special case where the @mr argument
2328 * has no container (and thus is the root of the address space), the
2329 * following will hold:
2330 * - @offset_within_address_space >= @addr
2331 * - @offset_within_address_space + .@size <= @addr + @size
2333 * @mr: a MemoryRegion within which @addr is a relative address
2334 * @addr: start of the area within @as to be searched
2335 * @size: size of the area to be searched
2337 MemoryRegionSection
memory_region_find(MemoryRegion
*mr
,
2338 hwaddr addr
, uint64_t size
);
2341 * memory_global_dirty_log_sync: synchronize the dirty log for all memory
2343 * Synchronizes the dirty page log for all address spaces.
2345 void memory_global_dirty_log_sync(void);
2348 * memory_global_dirty_log_sync: synchronize the dirty log for all memory
2350 * Synchronizes the vCPUs with a thread that is reading the dirty bitmap.
2351 * This function must be called after the dirty log bitmap is cleared, and
2352 * before dirty guest memory pages are read. If you are using
2353 * #DirtyBitmapSnapshot, memory_region_snapshot_and_clear_dirty() takes
2354 * care of doing this.
2356 void memory_global_after_dirty_log_sync(void);
2359 * memory_region_transaction_begin: Start a transaction.
2361 * During a transaction, changes will be accumulated and made visible
2362 * only when the transaction ends (is committed).
2364 void memory_region_transaction_begin(void);
2367 * memory_region_transaction_commit: Commit a transaction and make changes
2368 * visible to the guest.
2370 void memory_region_transaction_commit(void);
2373 * memory_listener_register: register callbacks to be called when memory
2374 * sections are mapped or unmapped into an address
2377 * @listener: an object containing the callbacks to be called
2378 * @filter: if non-%NULL, only regions in this address space will be observed
2380 void memory_listener_register(MemoryListener
*listener
, AddressSpace
*filter
);
2383 * memory_listener_unregister: undo the effect of memory_listener_register()
2385 * @listener: an object containing the callbacks to be removed
2387 void memory_listener_unregister(MemoryListener
*listener
);
2390 * memory_global_dirty_log_start: begin dirty logging for all regions
2392 void memory_global_dirty_log_start(void);
2395 * memory_global_dirty_log_stop: end dirty logging for all regions
2397 void memory_global_dirty_log_stop(void);
2399 void mtree_info(bool flatview
, bool dispatch_tree
, bool owner
, bool disabled
);
2402 * memory_region_dispatch_read: perform a read directly to the specified
2405 * @mr: #MemoryRegion to access
2406 * @addr: address within that region
2407 * @pval: pointer to uint64_t which the data is written to
2408 * @op: size, sign, and endianness of the memory operation
2409 * @attrs: memory transaction attributes to use for the access
2411 MemTxResult
memory_region_dispatch_read(MemoryRegion
*mr
,
2417 * memory_region_dispatch_write: perform a write directly to the specified
2420 * @mr: #MemoryRegion to access
2421 * @addr: address within that region
2422 * @data: data to write
2423 * @op: size, sign, and endianness of the memory operation
2424 * @attrs: memory transaction attributes to use for the access
2426 MemTxResult
memory_region_dispatch_write(MemoryRegion
*mr
,
2433 * address_space_init: initializes an address space
2435 * @as: an uninitialized #AddressSpace
2436 * @root: a #MemoryRegion that routes addresses for the address space
2437 * @name: an address space name. The name is only used for debugging
2440 void address_space_init(AddressSpace
*as
, MemoryRegion
*root
, const char *name
);
2443 * address_space_destroy: destroy an address space
2445 * Releases all resources associated with an address space. After an address space
2446 * is destroyed, its root memory region (given by address_space_init()) may be destroyed
2449 * @as: address space to be destroyed
2451 void address_space_destroy(AddressSpace
*as
);
2454 * address_space_remove_listeners: unregister all listeners of an address space
2456 * Removes all callbacks previously registered with memory_listener_register()
2459 * @as: an initialized #AddressSpace
2461 void address_space_remove_listeners(AddressSpace
*as
);
2464 * address_space_rw: read from or write to an address space.
2466 * Return a MemTxResult indicating whether the operation succeeded
2467 * or failed (eg unassigned memory, device rejected the transaction,
2470 * @as: #AddressSpace to be accessed
2471 * @addr: address within that address space
2472 * @attrs: memory transaction attributes
2473 * @buf: buffer with the data transferred
2474 * @len: the number of bytes to read or write
2475 * @is_write: indicates the transfer direction
2477 MemTxResult
address_space_rw(AddressSpace
*as
, hwaddr addr
,
2478 MemTxAttrs attrs
, void *buf
,
2479 hwaddr len
, bool is_write
);
2482 * address_space_write: write to address space.
2484 * Return a MemTxResult indicating whether the operation succeeded
2485 * or failed (eg unassigned memory, device rejected the transaction,
2488 * @as: #AddressSpace to be accessed
2489 * @addr: address within that address space
2490 * @attrs: memory transaction attributes
2491 * @buf: buffer with the data transferred
2492 * @len: the number of bytes to write
2494 MemTxResult
address_space_write(AddressSpace
*as
, hwaddr addr
,
2496 const void *buf
, hwaddr len
);
2499 * address_space_write_rom: write to address space, including ROM.
2501 * This function writes to the specified address space, but will
2502 * write data to both ROM and RAM. This is used for non-guest
2503 * writes like writes from the gdb debug stub or initial loading
2506 * Note that portions of the write which attempt to write data to
2507 * a device will be silently ignored -- only real RAM and ROM will
2510 * Return a MemTxResult indicating whether the operation succeeded
2511 * or failed (eg unassigned memory, device rejected the transaction,
2514 * @as: #AddressSpace to be accessed
2515 * @addr: address within that address space
2516 * @attrs: memory transaction attributes
2517 * @buf: buffer with the data transferred
2518 * @len: the number of bytes to write
2520 MemTxResult
address_space_write_rom(AddressSpace
*as
, hwaddr addr
,
2522 const void *buf
, hwaddr len
);
2524 /* address_space_ld*: load from an address space
2525 * address_space_st*: store to an address space
2527 * These functions perform a load or store of the byte, word,
2528 * longword or quad to the specified address within the AddressSpace.
2529 * The _le suffixed functions treat the data as little endian;
2530 * _be indicates big endian; no suffix indicates "same endianness
2533 * The "guest CPU endianness" accessors are deprecated for use outside
2534 * target-* code; devices should be CPU-agnostic and use either the LE
2535 * or the BE accessors.
2537 * @as #AddressSpace to be accessed
2538 * @addr: address within that address space
2539 * @val: data value, for stores
2540 * @attrs: memory transaction attributes
2541 * @result: location to write the success/failure of the transaction;
2542 * if NULL, this information is discarded
2547 #define ARG1_DECL AddressSpace *as
2548 #include "exec/memory_ldst.h.inc"
2552 #define ARG1_DECL AddressSpace *as
2553 #include "exec/memory_ldst_phys.h.inc"
2555 struct MemoryRegionCache
{
2560 MemoryRegionSection mrs
;
2564 #define MEMORY_REGION_CACHE_INVALID ((MemoryRegionCache) { .mrs.mr = NULL })
2567 /* address_space_ld*_cached: load from a cached #MemoryRegion
2568 * address_space_st*_cached: store into a cached #MemoryRegion
2570 * These functions perform a load or store of the byte, word,
2571 * longword or quad to the specified address. The address is
2572 * a physical address in the AddressSpace, but it must lie within
2573 * a #MemoryRegion that was mapped with address_space_cache_init.
2575 * The _le suffixed functions treat the data as little endian;
2576 * _be indicates big endian; no suffix indicates "same endianness
2579 * The "guest CPU endianness" accessors are deprecated for use outside
2580 * target-* code; devices should be CPU-agnostic and use either the LE
2581 * or the BE accessors.
2583 * @cache: previously initialized #MemoryRegionCache to be accessed
2584 * @addr: address within the address space
2585 * @val: data value, for stores
2586 * @attrs: memory transaction attributes
2587 * @result: location to write the success/failure of the transaction;
2588 * if NULL, this information is discarded
2591 #define SUFFIX _cached_slow
2593 #define ARG1_DECL MemoryRegionCache *cache
2594 #include "exec/memory_ldst.h.inc"
2596 /* Inline fast path for direct RAM access. */
2597 static inline uint8_t address_space_ldub_cached(MemoryRegionCache
*cache
,
2598 hwaddr addr
, MemTxAttrs attrs
, MemTxResult
*result
)
2600 assert(addr
< cache
->len
);
2601 if (likely(cache
->ptr
)) {
2602 return ldub_p(cache
->ptr
+ addr
);
2604 return address_space_ldub_cached_slow(cache
, addr
, attrs
, result
);
2608 static inline void address_space_stb_cached(MemoryRegionCache
*cache
,
2609 hwaddr addr
, uint8_t val
, MemTxAttrs attrs
, MemTxResult
*result
)
2611 assert(addr
< cache
->len
);
2612 if (likely(cache
->ptr
)) {
2613 stb_p(cache
->ptr
+ addr
, val
);
2615 address_space_stb_cached_slow(cache
, addr
, val
, attrs
, result
);
2619 #define ENDIANNESS _le
2620 #include "exec/memory_ldst_cached.h.inc"
2622 #define ENDIANNESS _be
2623 #include "exec/memory_ldst_cached.h.inc"
2625 #define SUFFIX _cached
2627 #define ARG1_DECL MemoryRegionCache *cache
2628 #include "exec/memory_ldst_phys.h.inc"
2630 /* address_space_cache_init: prepare for repeated access to a physical
2633 * @cache: #MemoryRegionCache to be filled
2634 * @as: #AddressSpace to be accessed
2635 * @addr: address within that address space
2636 * @len: length of buffer
2637 * @is_write: indicates the transfer direction
2639 * Will only work with RAM, and may map a subset of the requested range by
2640 * returning a value that is less than @len. On failure, return a negative
2643 * Because it only works with RAM, this function can be used for
2644 * read-modify-write operations. In this case, is_write should be %true.
2646 * Note that addresses passed to the address_space_*_cached functions
2647 * are relative to @addr.
2649 int64_t address_space_cache_init(MemoryRegionCache
*cache
,
2656 * address_space_cache_invalidate: complete a write to a #MemoryRegionCache
2658 * @cache: The #MemoryRegionCache to operate on.
2659 * @addr: The first physical address that was written, relative to the
2660 * address that was passed to @address_space_cache_init.
2661 * @access_len: The number of bytes that were written starting at @addr.
2663 void address_space_cache_invalidate(MemoryRegionCache
*cache
,
2668 * address_space_cache_destroy: free a #MemoryRegionCache
2670 * @cache: The #MemoryRegionCache whose memory should be released.
2672 void address_space_cache_destroy(MemoryRegionCache
*cache
);
2674 /* address_space_get_iotlb_entry: translate an address into an IOTLB
2675 * entry. Should be called from an RCU critical section.
2677 IOMMUTLBEntry
address_space_get_iotlb_entry(AddressSpace
*as
, hwaddr addr
,
2678 bool is_write
, MemTxAttrs attrs
);
2680 /* address_space_translate: translate an address range into an address space
2681 * into a MemoryRegion and an address range into that section. Should be
2682 * called from an RCU critical section, to avoid that the last reference
2683 * to the returned region disappears after address_space_translate returns.
2685 * @fv: #FlatView to be accessed
2686 * @addr: address within that address space
2687 * @xlat: pointer to address within the returned memory region section's
2689 * @len: pointer to length
2690 * @is_write: indicates the transfer direction
2691 * @attrs: memory attributes
2693 MemoryRegion
*flatview_translate(FlatView
*fv
,
2694 hwaddr addr
, hwaddr
*xlat
,
2695 hwaddr
*len
, bool is_write
,
2698 static inline MemoryRegion
*address_space_translate(AddressSpace
*as
,
2699 hwaddr addr
, hwaddr
*xlat
,
2700 hwaddr
*len
, bool is_write
,
2703 return flatview_translate(address_space_to_flatview(as
),
2704 addr
, xlat
, len
, is_write
, attrs
);
2707 /* address_space_access_valid: check for validity of accessing an address
2710 * Check whether memory is assigned to the given address space range, and
2711 * access is permitted by any IOMMU regions that are active for the address
2714 * For now, addr and len should be aligned to a page size. This limitation
2715 * will be lifted in the future.
2717 * @as: #AddressSpace to be accessed
2718 * @addr: address within that address space
2719 * @len: length of the area to be checked
2720 * @is_write: indicates the transfer direction
2721 * @attrs: memory attributes
2723 bool address_space_access_valid(AddressSpace
*as
, hwaddr addr
, hwaddr len
,
2724 bool is_write
, MemTxAttrs attrs
);
2726 /* address_space_map: map a physical memory region into a host virtual address
2728 * May map a subset of the requested range, given by and returned in @plen.
2729 * May return %NULL and set *@plen to zero(0), if resources needed to perform
2730 * the mapping are exhausted.
2731 * Use only for reads OR writes - not for read-modify-write operations.
2732 * Use cpu_register_map_client() to know when retrying the map operation is
2733 * likely to succeed.
2735 * @as: #AddressSpace to be accessed
2736 * @addr: address within that address space
2737 * @plen: pointer to length of buffer; updated on return
2738 * @is_write: indicates the transfer direction
2739 * @attrs: memory attributes
2741 void *address_space_map(AddressSpace
*as
, hwaddr addr
,
2742 hwaddr
*plen
, bool is_write
, MemTxAttrs attrs
);
2744 /* address_space_unmap: Unmaps a memory region previously mapped by address_space_map()
2746 * Will also mark the memory as dirty if @is_write == %true. @access_len gives
2747 * the amount of memory that was actually read or written by the caller.
2749 * @as: #AddressSpace used
2750 * @buffer: host pointer as returned by address_space_map()
2751 * @len: buffer length as returned by address_space_map()
2752 * @access_len: amount of data actually transferred
2753 * @is_write: indicates the transfer direction
2755 void address_space_unmap(AddressSpace
*as
, void *buffer
, hwaddr len
,
2756 bool is_write
, hwaddr access_len
);
2759 /* Internal functions, part of the implementation of address_space_read. */
2760 MemTxResult
address_space_read_full(AddressSpace
*as
, hwaddr addr
,
2761 MemTxAttrs attrs
, void *buf
, hwaddr len
);
2762 MemTxResult
flatview_read_continue(FlatView
*fv
, hwaddr addr
,
2763 MemTxAttrs attrs
, void *buf
,
2764 hwaddr len
, hwaddr addr1
, hwaddr l
,
2766 void *qemu_map_ram_ptr(RAMBlock
*ram_block
, ram_addr_t addr
);
2768 /* Internal functions, part of the implementation of address_space_read_cached
2769 * and address_space_write_cached. */
2770 MemTxResult
address_space_read_cached_slow(MemoryRegionCache
*cache
,
2771 hwaddr addr
, void *buf
, hwaddr len
);
2772 MemTxResult
address_space_write_cached_slow(MemoryRegionCache
*cache
,
2773 hwaddr addr
, const void *buf
,
2776 static inline bool memory_access_is_direct(MemoryRegion
*mr
, bool is_write
)
2779 return memory_region_is_ram(mr
) && !mr
->readonly
&&
2780 !mr
->rom_device
&& !memory_region_is_ram_device(mr
);
2782 return (memory_region_is_ram(mr
) && !memory_region_is_ram_device(mr
)) ||
2783 memory_region_is_romd(mr
);
2788 * address_space_read: read from an address space.
2790 * Return a MemTxResult indicating whether the operation succeeded
2791 * or failed (eg unassigned memory, device rejected the transaction,
2792 * IOMMU fault). Called within RCU critical section.
2794 * @as: #AddressSpace to be accessed
2795 * @addr: address within that address space
2796 * @attrs: memory transaction attributes
2797 * @buf: buffer with the data transferred
2798 * @len: length of the data transferred
2800 static inline __attribute__((__always_inline__
))
2801 MemTxResult
address_space_read(AddressSpace
*as
, hwaddr addr
,
2802 MemTxAttrs attrs
, void *buf
,
2805 MemTxResult result
= MEMTX_OK
;
2811 if (__builtin_constant_p(len
)) {
2813 RCU_READ_LOCK_GUARD();
2814 fv
= address_space_to_flatview(as
);
2816 mr
= flatview_translate(fv
, addr
, &addr1
, &l
, false, attrs
);
2817 if (len
== l
&& memory_access_is_direct(mr
, false)) {
2818 ptr
= qemu_map_ram_ptr(mr
->ram_block
, addr1
);
2819 memcpy(buf
, ptr
, len
);
2821 result
= flatview_read_continue(fv
, addr
, attrs
, buf
, len
,
2826 result
= address_space_read_full(as
, addr
, attrs
, buf
, len
);
2832 * address_space_read_cached: read from a cached RAM region
2834 * @cache: Cached region to be addressed
2835 * @addr: address relative to the base of the RAM region
2836 * @buf: buffer with the data transferred
2837 * @len: length of the data transferred
2839 static inline MemTxResult
2840 address_space_read_cached(MemoryRegionCache
*cache
, hwaddr addr
,
2841 void *buf
, hwaddr len
)
2843 assert(addr
< cache
->len
&& len
<= cache
->len
- addr
);
2844 fuzz_dma_read_cb(cache
->xlat
+ addr
, len
, cache
->mrs
.mr
);
2845 if (likely(cache
->ptr
)) {
2846 memcpy(buf
, cache
->ptr
+ addr
, len
);
2849 return address_space_read_cached_slow(cache
, addr
, buf
, len
);
2854 * address_space_write_cached: write to a cached RAM region
2856 * @cache: Cached region to be addressed
2857 * @addr: address relative to the base of the RAM region
2858 * @buf: buffer with the data transferred
2859 * @len: length of the data transferred
2861 static inline MemTxResult
2862 address_space_write_cached(MemoryRegionCache
*cache
, hwaddr addr
,
2863 const void *buf
, hwaddr len
)
2865 assert(addr
< cache
->len
&& len
<= cache
->len
- addr
);
2866 if (likely(cache
->ptr
)) {
2867 memcpy(cache
->ptr
+ addr
, buf
, len
);
2870 return address_space_write_cached_slow(cache
, addr
, buf
, len
);
2875 /* enum device_endian to MemOp. */
2876 static inline MemOp
devend_memop(enum device_endian end
)
2878 QEMU_BUILD_BUG_ON(DEVICE_HOST_ENDIAN
!= DEVICE_LITTLE_ENDIAN
&&
2879 DEVICE_HOST_ENDIAN
!= DEVICE_BIG_ENDIAN
);
2881 #if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
2882 /* Swap if non-host endianness or native (target) endianness */
2883 return (end
== DEVICE_HOST_ENDIAN
) ? 0 : MO_BSWAP
;
2885 const int non_host_endianness
=
2886 DEVICE_LITTLE_ENDIAN
^ DEVICE_BIG_ENDIAN
^ DEVICE_HOST_ENDIAN
;
2888 /* In this case, native (target) endianness needs no swap. */
2889 return (end
== non_host_endianness
) ? MO_BSWAP
: 0;
2895 * Inhibit technologies that require discarding of pages in RAM blocks, e.g.,
2896 * to manage the actual amount of memory consumed by the VM (then, the memory
2897 * provided by RAM blocks might be bigger than the desired memory consumption).
2898 * This *must* be set if:
2899 * - Discarding parts of a RAM blocks does not result in the change being
2900 * reflected in the VM and the pages getting freed.
2901 * - All memory in RAM blocks is pinned or duplicated, invaldiating any previous
2903 * - Discarding parts of a RAM blocks will result in integrity issues (e.g.,
2905 * Technologies that only temporarily pin the current working set of a
2906 * driver are fine, because we don't expect such pages to be discarded
2907 * (esp. based on guest action like balloon inflation).
2909 * This is *not* to be used to protect from concurrent discards (esp.,
2912 * Returns 0 if successful. Returns -EBUSY if a technology that relies on
2913 * discards to work reliably is active.
2915 int ram_block_discard_disable(bool state
);
2918 * See ram_block_discard_disable(): only disable uncoordinated discards,
2919 * keeping coordinated discards (via the RamDiscardManager) enabled.
2921 int ram_block_uncoordinated_discard_disable(bool state
);
2924 * Inhibit technologies that disable discarding of pages in RAM blocks.
2926 * Returns 0 if successful. Returns -EBUSY if discards are already set to
2929 int ram_block_discard_require(bool state
);
2932 * See ram_block_discard_require(): only inhibit technologies that disable
2933 * uncoordinated discarding of pages in RAM blocks, allowing co-existance with
2934 * technologies that only inhibit uncoordinated discards (via the
2935 * RamDiscardManager).
2937 int ram_block_coordinated_discard_require(bool state
);
2940 * Test if any discarding of memory in ram blocks is disabled.
2942 bool ram_block_discard_is_disabled(void);
2945 * Test if any discarding of memory in ram blocks is required to work reliably.
2947 bool ram_block_discard_is_required(void);