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 #define DIRTY_MEMORY_VGA 0
20 #define DIRTY_MEMORY_CODE 1
21 #define DIRTY_MEMORY_MIGRATION 2
22 #define DIRTY_MEMORY_NUM 3 /* num of dirty bits */
26 #include "exec/cpu-common.h"
27 #ifndef CONFIG_USER_ONLY
28 #include "exec/hwaddr.h"
30 #include "exec/memattrs.h"
31 #include "qemu/queue.h"
32 #include "qemu/int128.h"
33 #include "qemu/notify.h"
34 #include "qapi/error.h"
35 #include "qom/object.h"
38 #define MAX_PHYS_ADDR_SPACE_BITS 62
39 #define MAX_PHYS_ADDR (((hwaddr)1 << MAX_PHYS_ADDR_SPACE_BITS) - 1)
41 #define TYPE_MEMORY_REGION "qemu:memory-region"
42 #define MEMORY_REGION(obj) \
43 OBJECT_CHECK(MemoryRegion, (obj), TYPE_MEMORY_REGION)
45 typedef struct MemoryRegionOps MemoryRegionOps
;
46 typedef struct MemoryRegionMmio MemoryRegionMmio
;
48 struct MemoryRegionMmio
{
49 CPUReadMemoryFunc
*read
[3];
50 CPUWriteMemoryFunc
*write
[3];
53 typedef struct IOMMUTLBEntry IOMMUTLBEntry
;
55 /* See address_space_translate: bit 0 is read, bit 1 is write. */
63 struct IOMMUTLBEntry
{
64 AddressSpace
*target_as
;
66 hwaddr translated_addr
;
67 hwaddr addr_mask
; /* 0xfff = 4k translation */
68 IOMMUAccessFlags perm
;
71 /* New-style MMIO accessors can indicate that the transaction failed.
72 * A zero (MEMTX_OK) response means success; anything else is a failure
73 * of some kind. The memory subsystem will bitwise-OR together results
74 * if it is synthesizing an operation from multiple smaller accesses.
77 #define MEMTX_ERROR (1U << 0) /* device returned an error */
78 #define MEMTX_DECODE_ERROR (1U << 1) /* nothing at that address */
79 typedef uint32_t MemTxResult
;
82 * Memory region callbacks
84 struct MemoryRegionOps
{
85 /* Read from the memory region. @addr is relative to @mr; @size is
87 uint64_t (*read
)(void *opaque
,
90 /* Write to the memory region. @addr is relative to @mr; @size is
92 void (*write
)(void *opaque
,
97 MemTxResult (*read_with_attrs
)(void *opaque
,
102 MemTxResult (*write_with_attrs
)(void *opaque
,
108 enum device_endian endianness
;
109 /* Guest-visible constraints: */
111 /* If nonzero, specify bounds on access sizes beyond which a machine
114 unsigned min_access_size
;
115 unsigned max_access_size
;
116 /* If true, unaligned accesses are supported. Otherwise unaligned
117 * accesses throw machine checks.
121 * If present, and returns #false, the transaction is not accepted
122 * by the device (and results in machine dependent behaviour such
123 * as a machine check exception).
125 bool (*accepts
)(void *opaque
, hwaddr addr
,
126 unsigned size
, bool is_write
);
128 /* Internal implementation constraints: */
130 /* If nonzero, specifies the minimum size implemented. Smaller sizes
131 * will be rounded upwards and a partial result will be returned.
133 unsigned min_access_size
;
134 /* If nonzero, specifies the maximum size implemented. Larger sizes
135 * will be done as a series of accesses with smaller sizes.
137 unsigned max_access_size
;
138 /* If true, unaligned accesses are supported. Otherwise all accesses
139 * are converted to (possibly multiple) naturally aligned accesses.
144 /* If .read and .write are not present, old_mmio may be used for
145 * backwards compatibility with old mmio registration
147 const MemoryRegionMmio old_mmio
;
150 typedef struct MemoryRegionIOMMUOps MemoryRegionIOMMUOps
;
152 struct MemoryRegionIOMMUOps
{
153 /* Return a TLB entry that contains a given address. */
154 IOMMUTLBEntry (*translate
)(MemoryRegion
*iommu
, hwaddr addr
, bool is_write
);
157 typedef struct CoalescedMemoryRange CoalescedMemoryRange
;
158 typedef struct MemoryRegionIoeventfd MemoryRegionIoeventfd
;
160 struct MemoryRegion
{
162 /* All fields are private - violators will be prosecuted */
163 const MemoryRegionOps
*ops
;
164 const MemoryRegionIOMMUOps
*iommu_ops
;
166 MemoryRegion
*container
;
169 void (*destructor
)(MemoryRegion
*mr
);
177 bool readonly
; /* For RAM regions */
180 bool warning_printed
; /* For reservations */
181 bool flush_coalesced_mmio
;
183 uint8_t vga_logging_count
;
188 QTAILQ_HEAD(subregions
, MemoryRegion
) subregions
;
189 QTAILQ_ENTRY(MemoryRegion
) subregions_link
;
190 QTAILQ_HEAD(coalesced_ranges
, CoalescedMemoryRange
) coalesced
;
192 uint8_t dirty_log_mask
;
193 unsigned ioeventfd_nb
;
194 MemoryRegionIoeventfd
*ioeventfds
;
195 NotifierList iommu_notify
;
199 * MemoryListener: callbacks structure for updates to the physical memory map
201 * Allows a component to adjust to changes in the guest-visible memory map.
202 * Use with memory_listener_register() and memory_listener_unregister().
204 struct MemoryListener
{
205 void (*begin
)(MemoryListener
*listener
);
206 void (*commit
)(MemoryListener
*listener
);
207 void (*region_add
)(MemoryListener
*listener
, MemoryRegionSection
*section
);
208 void (*region_del
)(MemoryListener
*listener
, MemoryRegionSection
*section
);
209 void (*region_nop
)(MemoryListener
*listener
, MemoryRegionSection
*section
);
210 void (*log_start
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
212 void (*log_stop
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
214 void (*log_sync
)(MemoryListener
*listener
, MemoryRegionSection
*section
);
215 void (*log_global_start
)(MemoryListener
*listener
);
216 void (*log_global_stop
)(MemoryListener
*listener
);
217 void (*eventfd_add
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
218 bool match_data
, uint64_t data
, EventNotifier
*e
);
219 void (*eventfd_del
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
220 bool match_data
, uint64_t data
, EventNotifier
*e
);
221 void (*coalesced_mmio_add
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
222 hwaddr addr
, hwaddr len
);
223 void (*coalesced_mmio_del
)(MemoryListener
*listener
, MemoryRegionSection
*section
,
224 hwaddr addr
, hwaddr len
);
225 /* Lower = earlier (during add), later (during del) */
227 AddressSpace
*address_space_filter
;
228 QTAILQ_ENTRY(MemoryListener
) link
;
232 * AddressSpace: describes a mapping of addresses to #MemoryRegion objects
234 struct AddressSpace
{
235 /* All fields are private. */
240 /* Accessed via RCU. */
241 struct FlatView
*current_map
;
244 struct MemoryRegionIoeventfd
*ioeventfds
;
245 struct AddressSpaceDispatch
*dispatch
;
246 struct AddressSpaceDispatch
*next_dispatch
;
247 MemoryListener dispatch_listener
;
249 QTAILQ_ENTRY(AddressSpace
) address_spaces_link
;
253 * MemoryRegionSection: describes a fragment of a #MemoryRegion
255 * @mr: the region, or %NULL if empty
256 * @address_space: the address space the region is mapped in
257 * @offset_within_region: the beginning of the section, relative to @mr's start
258 * @size: the size of the section; will not exceed @mr's boundaries
259 * @offset_within_address_space: the address of the first byte of the section
260 * relative to the region's address space
261 * @readonly: writes to this section are ignored
263 struct MemoryRegionSection
{
265 AddressSpace
*address_space
;
266 hwaddr offset_within_region
;
268 hwaddr offset_within_address_space
;
273 * memory_region_init: Initialize a memory region
275 * The region typically acts as a container for other memory regions. Use
276 * memory_region_add_subregion() to add subregions.
278 * @mr: the #MemoryRegion to be initialized
279 * @owner: the object that tracks the region's reference count
280 * @name: used for debugging; not visible to the user or ABI
281 * @size: size of the region; any subregions beyond this size will be clipped
283 void memory_region_init(MemoryRegion
*mr
,
284 struct Object
*owner
,
289 * memory_region_ref: Add 1 to a memory region's reference count
291 * Whenever memory regions are accessed outside the BQL, they need to be
292 * preserved against hot-unplug. MemoryRegions actually do not have their
293 * own reference count; they piggyback on a QOM object, their "owner".
294 * This function adds a reference to the owner.
296 * All MemoryRegions must have an owner if they can disappear, even if the
297 * device they belong to operates exclusively under the BQL. This is because
298 * the region could be returned at any time by memory_region_find, and this
299 * is usually under guest control.
301 * @mr: the #MemoryRegion
303 void memory_region_ref(MemoryRegion
*mr
);
306 * memory_region_unref: Remove 1 to a memory region's reference count
308 * Whenever memory regions are accessed outside the BQL, they need to be
309 * preserved against hot-unplug. MemoryRegions actually do not have their
310 * own reference count; they piggyback on a QOM object, their "owner".
311 * This function removes a reference to the owner and possibly destroys it.
313 * @mr: the #MemoryRegion
315 void memory_region_unref(MemoryRegion
*mr
);
318 * memory_region_init_io: Initialize an I/O memory region.
320 * Accesses into the region will cause the callbacks in @ops to be called.
321 * if @size is nonzero, subregions will be clipped to @size.
323 * @mr: the #MemoryRegion to be initialized.
324 * @owner: the object that tracks the region's reference count
325 * @ops: a structure containing read and write callbacks to be used when
326 * I/O is performed on the region.
327 * @opaque: passed to to the read and write callbacks of the @ops structure.
328 * @name: used for debugging; not visible to the user or ABI
329 * @size: size of the region.
331 void memory_region_init_io(MemoryRegion
*mr
,
332 struct Object
*owner
,
333 const MemoryRegionOps
*ops
,
339 * memory_region_init_ram: Initialize RAM memory region. Accesses into the
340 * region will modify memory directly.
342 * @mr: the #MemoryRegion to be initialized.
343 * @owner: the object that tracks the region's reference count
344 * @name: the name of the region.
345 * @size: size of the region.
346 * @errp: pointer to Error*, to store an error if it happens.
348 void memory_region_init_ram(MemoryRegion
*mr
,
349 struct Object
*owner
,
355 * memory_region_init_resizeable_ram: Initialize memory region with resizeable
356 * RAM. Accesses into the region will
357 * modify memory directly. Only an initial
358 * portion of this RAM is actually used.
359 * The used size can change across reboots.
361 * @mr: the #MemoryRegion to be initialized.
362 * @owner: the object that tracks the region's reference count
363 * @name: the name of the region.
364 * @size: used size of the region.
365 * @max_size: max size of the region.
366 * @resized: callback to notify owner about used size change.
367 * @errp: pointer to Error*, to store an error if it happens.
369 void memory_region_init_resizeable_ram(MemoryRegion
*mr
,
370 struct Object
*owner
,
374 void (*resized
)(const char*,
380 * memory_region_init_ram_from_file: Initialize RAM memory region with a
383 * @mr: the #MemoryRegion to be initialized.
384 * @owner: the object that tracks the region's reference count
385 * @name: the name of the region.
386 * @size: size of the region.
387 * @share: %true if memory must be mmaped with the MAP_SHARED flag
388 * @path: the path in which to allocate the RAM.
389 * @errp: pointer to Error*, to store an error if it happens.
391 void memory_region_init_ram_from_file(MemoryRegion
*mr
,
392 struct Object
*owner
,
401 * memory_region_init_ram_ptr: Initialize RAM memory region from a
402 * user-provided pointer. Accesses into the
403 * region will modify memory directly.
405 * @mr: the #MemoryRegion to be initialized.
406 * @owner: the object that tracks the region's reference count
407 * @name: the name of the region.
408 * @size: size of the region.
409 * @ptr: memory to be mapped; must contain at least @size bytes.
411 void memory_region_init_ram_ptr(MemoryRegion
*mr
,
412 struct Object
*owner
,
418 * memory_region_init_alias: Initialize a memory region that aliases all or a
419 * part of another memory region.
421 * @mr: the #MemoryRegion to be initialized.
422 * @owner: the object that tracks the region's reference count
423 * @name: used for debugging; not visible to the user or ABI
424 * @orig: the region to be referenced; @mr will be equivalent to
425 * @orig between @offset and @offset + @size - 1.
426 * @offset: start of the section in @orig to be referenced.
427 * @size: size of the region.
429 void memory_region_init_alias(MemoryRegion
*mr
,
430 struct Object
*owner
,
437 * memory_region_init_rom_device: Initialize a ROM memory region. Writes are
438 * handled via callbacks.
440 * If NULL callbacks pointer is given, then I/O space is not supposed to be
441 * handled by QEMU itself. Any access via the memory API will cause an abort().
443 * @mr: the #MemoryRegion to be initialized.
444 * @owner: the object that tracks the region's reference count
445 * @ops: callbacks for write access handling.
446 * @name: the name of the region.
447 * @size: size of the region.
448 * @errp: pointer to Error*, to store an error if it happens.
450 void memory_region_init_rom_device(MemoryRegion
*mr
,
451 struct Object
*owner
,
452 const MemoryRegionOps
*ops
,
459 * memory_region_init_reservation: Initialize a memory region that reserves
462 * A reservation region primariy serves debugging purposes. It claims I/O
463 * space that is not supposed to be handled by QEMU itself. Any access via
464 * the memory API will cause an abort().
465 * This function is deprecated. Use memory_region_init_io() with NULL
468 * @mr: the #MemoryRegion to be initialized
469 * @owner: the object that tracks the region's reference count
470 * @name: used for debugging; not visible to the user or ABI
471 * @size: size of the region.
473 static inline void memory_region_init_reservation(MemoryRegion
*mr
,
478 memory_region_init_io(mr
, owner
, NULL
, mr
, name
, size
);
482 * memory_region_init_iommu: Initialize a memory region that translates
485 * An IOMMU region translates addresses and forwards accesses to a target
488 * @mr: the #MemoryRegion to be initialized
489 * @owner: the object that tracks the region's reference count
490 * @ops: a function that translates addresses into the @target region
491 * @name: used for debugging; not visible to the user or ABI
492 * @size: size of the region.
494 void memory_region_init_iommu(MemoryRegion
*mr
,
495 struct Object
*owner
,
496 const MemoryRegionIOMMUOps
*ops
,
501 * memory_region_owner: get a memory region's owner.
503 * @mr: the memory region being queried.
505 struct Object
*memory_region_owner(MemoryRegion
*mr
);
508 * memory_region_size: get a memory region's size.
510 * @mr: the memory region being queried.
512 uint64_t memory_region_size(MemoryRegion
*mr
);
515 * memory_region_is_ram: check whether a memory region is random access
517 * Returns %true is a memory region is random access.
519 * @mr: the memory region being queried
521 bool memory_region_is_ram(MemoryRegion
*mr
);
524 * memory_region_is_skip_dump: check whether a memory region should not be
527 * Returns %true is a memory region should not be dumped(e.g. VFIO BAR MMAP).
529 * @mr: the memory region being queried
531 bool memory_region_is_skip_dump(MemoryRegion
*mr
);
534 * memory_region_set_skip_dump: Set skip_dump flag, dump will ignore this memory
537 * @mr: the memory region being queried
539 void memory_region_set_skip_dump(MemoryRegion
*mr
);
542 * memory_region_is_romd: check whether a memory region is in ROMD mode
544 * Returns %true if a memory region is a ROM device and currently set to allow
547 * @mr: the memory region being queried
549 static inline bool memory_region_is_romd(MemoryRegion
*mr
)
551 return mr
->rom_device
&& mr
->romd_mode
;
555 * memory_region_is_iommu: check whether a memory region is an iommu
557 * Returns %true is a memory region is an iommu.
559 * @mr: the memory region being queried
561 bool memory_region_is_iommu(MemoryRegion
*mr
);
564 * memory_region_notify_iommu: notify a change in an IOMMU translation entry.
566 * @mr: the memory region that was changed
567 * @entry: the new entry in the IOMMU translation table. The entry
568 * replaces all old entries for the same virtual I/O address range.
569 * Deleted entries have .@perm == 0.
571 void memory_region_notify_iommu(MemoryRegion
*mr
,
572 IOMMUTLBEntry entry
);
575 * memory_region_register_iommu_notifier: register a notifier for changes to
576 * IOMMU translation entries.
578 * @mr: the memory region to observe
579 * @n: the notifier to be added; the notifier receives a pointer to an
580 * #IOMMUTLBEntry as the opaque value; the pointer ceases to be
581 * valid on exit from the notifier.
583 void memory_region_register_iommu_notifier(MemoryRegion
*mr
, Notifier
*n
);
586 * memory_region_unregister_iommu_notifier: unregister a notifier for
587 * changes to IOMMU translation entries.
589 * @n: the notifier to be removed.
591 void memory_region_unregister_iommu_notifier(Notifier
*n
);
594 * memory_region_name: get a memory region's name
596 * Returns the string that was used to initialize the memory region.
598 * @mr: the memory region being queried
600 const char *memory_region_name(const MemoryRegion
*mr
);
603 * memory_region_is_logging: return whether a memory region is logging writes
605 * Returns %true if the memory region is logging writes for the given client
607 * @mr: the memory region being queried
608 * @client: the client being queried
610 bool memory_region_is_logging(MemoryRegion
*mr
, uint8_t client
);
613 * memory_region_get_dirty_log_mask: return the clients for which a
614 * memory region is logging writes.
616 * Returns a bitmap of clients, in which the DIRTY_MEMORY_* constants
617 * are the bit indices.
619 * @mr: the memory region being queried
621 uint8_t memory_region_get_dirty_log_mask(MemoryRegion
*mr
);
624 * memory_region_is_rom: check whether a memory region is ROM
626 * Returns %true is a memory region is read-only memory.
628 * @mr: the memory region being queried
630 bool memory_region_is_rom(MemoryRegion
*mr
);
633 * memory_region_get_fd: Get a file descriptor backing a RAM memory region.
635 * Returns a file descriptor backing a file-based RAM memory region,
636 * or -1 if the region is not a file-based RAM memory region.
638 * @mr: the RAM or alias memory region being queried.
640 int memory_region_get_fd(MemoryRegion
*mr
);
643 * memory_region_get_ram_ptr: Get a pointer into a RAM memory region.
645 * Returns a host pointer to a RAM memory region (created with
646 * memory_region_init_ram() or memory_region_init_ram_ptr()). Use with
649 * @mr: the memory region being queried.
651 void *memory_region_get_ram_ptr(MemoryRegion
*mr
);
653 /* memory_region_ram_resize: Resize a RAM region.
655 * Only legal before guest might have detected the memory size: e.g. on
656 * incoming migration, or right after reset.
658 * @mr: a memory region created with @memory_region_init_resizeable_ram.
659 * @newsize: the new size the region
660 * @errp: pointer to Error*, to store an error if it happens.
662 void memory_region_ram_resize(MemoryRegion
*mr
, ram_addr_t newsize
,
666 * memory_region_set_log: Turn dirty logging on or off for a region.
668 * Turns dirty logging on or off for a specified client (display, migration).
669 * Only meaningful for RAM regions.
671 * @mr: the memory region being updated.
672 * @log: whether dirty logging is to be enabled or disabled.
673 * @client: the user of the logging information; %DIRTY_MEMORY_VGA only.
675 void memory_region_set_log(MemoryRegion
*mr
, bool log
, unsigned client
);
678 * memory_region_get_dirty: Check whether a range of bytes is dirty
679 * for a specified client.
681 * Checks whether a range of bytes has been written to since the last
682 * call to memory_region_reset_dirty() with the same @client. Dirty logging
685 * @mr: the memory region being queried.
686 * @addr: the address (relative to the start of the region) being queried.
687 * @size: the size of the range being queried.
688 * @client: the user of the logging information; %DIRTY_MEMORY_MIGRATION or
691 bool memory_region_get_dirty(MemoryRegion
*mr
, hwaddr addr
,
692 hwaddr size
, unsigned client
);
695 * memory_region_set_dirty: Mark a range of bytes as dirty in a memory region.
697 * Marks a range of bytes as dirty, after it has been dirtied outside
700 * @mr: the memory region being dirtied.
701 * @addr: the address (relative to the start of the region) being dirtied.
702 * @size: size of the range being dirtied.
704 void memory_region_set_dirty(MemoryRegion
*mr
, hwaddr addr
,
708 * memory_region_test_and_clear_dirty: Check whether a range of bytes is dirty
709 * for a specified client. It clears them.
711 * Checks whether a range of bytes has been written to since the last
712 * call to memory_region_reset_dirty() with the same @client. Dirty logging
715 * @mr: the memory region being queried.
716 * @addr: the address (relative to the start of the region) being queried.
717 * @size: the size of the range being queried.
718 * @client: the user of the logging information; %DIRTY_MEMORY_MIGRATION or
721 bool memory_region_test_and_clear_dirty(MemoryRegion
*mr
, hwaddr addr
,
722 hwaddr size
, unsigned client
);
724 * memory_region_sync_dirty_bitmap: Synchronize a region's dirty bitmap with
725 * any external TLBs (e.g. kvm)
727 * Flushes dirty information from accelerators such as kvm and vhost-net
728 * and makes it available to users of the memory API.
730 * @mr: the region being flushed.
732 void memory_region_sync_dirty_bitmap(MemoryRegion
*mr
);
735 * memory_region_reset_dirty: Mark a range of pages as clean, for a specified
738 * Marks a range of pages as no longer dirty.
740 * @mr: the region being updated.
741 * @addr: the start of the subrange being cleaned.
742 * @size: the size of the subrange being cleaned.
743 * @client: the user of the logging information; %DIRTY_MEMORY_MIGRATION or
746 void memory_region_reset_dirty(MemoryRegion
*mr
, hwaddr addr
,
747 hwaddr size
, unsigned client
);
750 * memory_region_set_readonly: Turn a memory region read-only (or read-write)
752 * Allows a memory region to be marked as read-only (turning it into a ROM).
753 * only useful on RAM regions.
755 * @mr: the region being updated.
756 * @readonly: whether rhe region is to be ROM or RAM.
758 void memory_region_set_readonly(MemoryRegion
*mr
, bool readonly
);
761 * memory_region_rom_device_set_romd: enable/disable ROMD mode
763 * Allows a ROM device (initialized with memory_region_init_rom_device() to
764 * set to ROMD mode (default) or MMIO mode. When it is in ROMD mode, the
765 * device is mapped to guest memory and satisfies read access directly.
766 * When in MMIO mode, reads are forwarded to the #MemoryRegion.read function.
767 * Writes are always handled by the #MemoryRegion.write function.
769 * @mr: the memory region to be updated
770 * @romd_mode: %true to put the region into ROMD mode
772 void memory_region_rom_device_set_romd(MemoryRegion
*mr
, bool romd_mode
);
775 * memory_region_set_coalescing: Enable memory coalescing for the region.
777 * Enabled writes to a region to be queued for later processing. MMIO ->write
778 * callbacks may be delayed until a non-coalesced MMIO is issued.
779 * Only useful for IO regions. Roughly similar to write-combining hardware.
781 * @mr: the memory region to be write coalesced
783 void memory_region_set_coalescing(MemoryRegion
*mr
);
786 * memory_region_add_coalescing: Enable memory coalescing for a sub-range of
789 * Like memory_region_set_coalescing(), but works on a sub-range of a region.
790 * Multiple calls can be issued coalesced disjoint ranges.
792 * @mr: the memory region to be updated.
793 * @offset: the start of the range within the region to be coalesced.
794 * @size: the size of the subrange to be coalesced.
796 void memory_region_add_coalescing(MemoryRegion
*mr
,
801 * memory_region_clear_coalescing: Disable MMIO coalescing for the region.
803 * Disables any coalescing caused by memory_region_set_coalescing() or
804 * memory_region_add_coalescing(). Roughly equivalent to uncacheble memory
807 * @mr: the memory region to be updated.
809 void memory_region_clear_coalescing(MemoryRegion
*mr
);
812 * memory_region_set_flush_coalesced: Enforce memory coalescing flush before
815 * Ensure that pending coalesced MMIO request are flushed before the memory
816 * region is accessed. This property is automatically enabled for all regions
817 * passed to memory_region_set_coalescing() and memory_region_add_coalescing().
819 * @mr: the memory region to be updated.
821 void memory_region_set_flush_coalesced(MemoryRegion
*mr
);
824 * memory_region_clear_flush_coalesced: Disable memory coalescing flush before
827 * Clear the automatic coalesced MMIO flushing enabled via
828 * memory_region_set_flush_coalesced. Note that this service has no effect on
829 * memory regions that have MMIO coalescing enabled for themselves. For them,
830 * automatic flushing will stop once coalescing is disabled.
832 * @mr: the memory region to be updated.
834 void memory_region_clear_flush_coalesced(MemoryRegion
*mr
);
837 * memory_region_set_global_locking: Declares the access processing requires
838 * QEMU's global lock.
840 * When this is invoked, accesses to the memory region will be processed while
841 * holding the global lock of QEMU. This is the default behavior of memory
844 * @mr: the memory region to be updated.
846 void memory_region_set_global_locking(MemoryRegion
*mr
);
849 * memory_region_clear_global_locking: Declares that access processing does
850 * not depend on the QEMU global lock.
852 * By clearing this property, accesses to the memory region will be processed
853 * outside of QEMU's global lock (unless the lock is held on when issuing the
854 * access request). In this case, the device model implementing the access
855 * handlers is responsible for synchronization of concurrency.
857 * @mr: the memory region to be updated.
859 void memory_region_clear_global_locking(MemoryRegion
*mr
);
862 * memory_region_add_eventfd: Request an eventfd to be triggered when a word
863 * is written to a location.
865 * Marks a word in an IO region (initialized with memory_region_init_io())
866 * as a trigger for an eventfd event. The I/O callback will not be called.
867 * The caller must be prepared to handle failure (that is, take the required
868 * action if the callback _is_ called).
870 * @mr: the memory region being updated.
871 * @addr: the address within @mr that is to be monitored
872 * @size: the size of the access to trigger the eventfd
873 * @match_data: whether to match against @data, instead of just @addr
874 * @data: the data to match against the guest write
875 * @fd: the eventfd to be triggered when @addr, @size, and @data all match.
877 void memory_region_add_eventfd(MemoryRegion
*mr
,
885 * memory_region_del_eventfd: Cancel an eventfd.
887 * Cancels an eventfd trigger requested by a previous
888 * memory_region_add_eventfd() call.
890 * @mr: the memory region being updated.
891 * @addr: the address within @mr that is to be monitored
892 * @size: the size of the access to trigger the eventfd
893 * @match_data: whether to match against @data, instead of just @addr
894 * @data: the data to match against the guest write
895 * @fd: the eventfd to be triggered when @addr, @size, and @data all match.
897 void memory_region_del_eventfd(MemoryRegion
*mr
,
905 * memory_region_add_subregion: Add a subregion to a container.
907 * Adds a subregion at @offset. The subregion may not overlap with other
908 * subregions (except for those explicitly marked as overlapping). A region
909 * may only be added once as a subregion (unless removed with
910 * memory_region_del_subregion()); use memory_region_init_alias() if you
911 * want a region to be a subregion in multiple locations.
913 * @mr: the region to contain the new subregion; must be a container
914 * initialized with memory_region_init().
915 * @offset: the offset relative to @mr where @subregion is added.
916 * @subregion: the subregion to be added.
918 void memory_region_add_subregion(MemoryRegion
*mr
,
920 MemoryRegion
*subregion
);
922 * memory_region_add_subregion_overlap: Add a subregion to a container
925 * Adds a subregion at @offset. The subregion may overlap with other
926 * subregions. Conflicts are resolved by having a higher @priority hide a
927 * lower @priority. Subregions without priority are taken as @priority 0.
928 * A region may only be added once as a subregion (unless removed with
929 * memory_region_del_subregion()); use memory_region_init_alias() if you
930 * want a region to be a subregion in multiple locations.
932 * @mr: the region to contain the new subregion; must be a container
933 * initialized with memory_region_init().
934 * @offset: the offset relative to @mr where @subregion is added.
935 * @subregion: the subregion to be added.
936 * @priority: used for resolving overlaps; highest priority wins.
938 void memory_region_add_subregion_overlap(MemoryRegion
*mr
,
940 MemoryRegion
*subregion
,
944 * memory_region_get_ram_addr: Get the ram address associated with a memory
947 * DO NOT USE THIS FUNCTION. This is a temporary workaround while the Xen
948 * code is being reworked.
950 ram_addr_t
memory_region_get_ram_addr(MemoryRegion
*mr
);
952 uint64_t memory_region_get_alignment(const MemoryRegion
*mr
);
954 * memory_region_del_subregion: Remove a subregion.
956 * Removes a subregion from its container.
958 * @mr: the container to be updated.
959 * @subregion: the region being removed; must be a current subregion of @mr.
961 void memory_region_del_subregion(MemoryRegion
*mr
,
962 MemoryRegion
*subregion
);
965 * memory_region_set_enabled: dynamically enable or disable a region
967 * Enables or disables a memory region. A disabled memory region
968 * ignores all accesses to itself and its subregions. It does not
969 * obscure sibling subregions with lower priority - it simply behaves as
970 * if it was removed from the hierarchy.
972 * Regions default to being enabled.
974 * @mr: the region to be updated
975 * @enabled: whether to enable or disable the region
977 void memory_region_set_enabled(MemoryRegion
*mr
, bool enabled
);
980 * memory_region_set_address: dynamically update the address of a region
982 * Dynamically updates the address of a region, relative to its container.
983 * May be used on regions are currently part of a memory hierarchy.
985 * @mr: the region to be updated
986 * @addr: new address, relative to container region
988 void memory_region_set_address(MemoryRegion
*mr
, hwaddr addr
);
991 * memory_region_set_size: dynamically update the size of a region.
993 * Dynamically updates the size of a region.
995 * @mr: the region to be updated
996 * @size: used size of the region.
998 void memory_region_set_size(MemoryRegion
*mr
, uint64_t size
);
1001 * memory_region_set_alias_offset: dynamically update a memory alias's offset
1003 * Dynamically updates the offset into the target region that an alias points
1004 * to, as if the fourth argument to memory_region_init_alias() has changed.
1006 * @mr: the #MemoryRegion to be updated; should be an alias.
1007 * @offset: the new offset into the target memory region
1009 void memory_region_set_alias_offset(MemoryRegion
*mr
,
1013 * memory_region_present: checks if an address relative to a @container
1014 * translates into #MemoryRegion within @container
1016 * Answer whether a #MemoryRegion within @container covers the address
1019 * @container: a #MemoryRegion within which @addr is a relative address
1020 * @addr: the area within @container to be searched
1022 bool memory_region_present(MemoryRegion
*container
, hwaddr addr
);
1025 * memory_region_is_mapped: returns true if #MemoryRegion is mapped
1026 * into any address space.
1028 * @mr: a #MemoryRegion which should be checked if it's mapped
1030 bool memory_region_is_mapped(MemoryRegion
*mr
);
1033 * memory_region_find: translate an address/size relative to a
1034 * MemoryRegion into a #MemoryRegionSection.
1036 * Locates the first #MemoryRegion within @mr that overlaps the range
1037 * given by @addr and @size.
1039 * Returns a #MemoryRegionSection that describes a contiguous overlap.
1040 * It will have the following characteristics:
1041 * .@size = 0 iff no overlap was found
1042 * .@mr is non-%NULL iff an overlap was found
1044 * Remember that in the return value the @offset_within_region is
1045 * relative to the returned region (in the .@mr field), not to the
1048 * Similarly, the .@offset_within_address_space is relative to the
1049 * address space that contains both regions, the passed and the
1050 * returned one. However, in the special case where the @mr argument
1051 * has no container (and thus is the root of the address space), the
1052 * following will hold:
1053 * .@offset_within_address_space >= @addr
1054 * .@offset_within_address_space + .@size <= @addr + @size
1056 * @mr: a MemoryRegion within which @addr is a relative address
1057 * @addr: start of the area within @as to be searched
1058 * @size: size of the area to be searched
1060 MemoryRegionSection
memory_region_find(MemoryRegion
*mr
,
1061 hwaddr addr
, uint64_t size
);
1064 * address_space_sync_dirty_bitmap: synchronize the dirty log for all memory
1066 * Synchronizes the dirty page log for an entire address space.
1067 * @as: the address space that contains the memory being synchronized
1069 void address_space_sync_dirty_bitmap(AddressSpace
*as
);
1072 * memory_region_transaction_begin: Start a transaction.
1074 * During a transaction, changes will be accumulated and made visible
1075 * only when the transaction ends (is committed).
1077 void memory_region_transaction_begin(void);
1080 * memory_region_transaction_commit: Commit a transaction and make changes
1081 * visible to the guest.
1083 void memory_region_transaction_commit(void);
1086 * memory_listener_register: register callbacks to be called when memory
1087 * sections are mapped or unmapped into an address
1090 * @listener: an object containing the callbacks to be called
1091 * @filter: if non-%NULL, only regions in this address space will be observed
1093 void memory_listener_register(MemoryListener
*listener
, AddressSpace
*filter
);
1096 * memory_listener_unregister: undo the effect of memory_listener_register()
1098 * @listener: an object containing the callbacks to be removed
1100 void memory_listener_unregister(MemoryListener
*listener
);
1103 * memory_global_dirty_log_start: begin dirty logging for all regions
1105 void memory_global_dirty_log_start(void);
1108 * memory_global_dirty_log_stop: end dirty logging for all regions
1110 void memory_global_dirty_log_stop(void);
1112 void mtree_info(fprintf_function mon_printf
, void *f
);
1115 * memory_region_dispatch_read: perform a read directly to the specified
1118 * @mr: #MemoryRegion to access
1119 * @addr: address within that region
1120 * @pval: pointer to uint64_t which the data is written to
1121 * @size: size of the access in bytes
1122 * @attrs: memory transaction attributes to use for the access
1124 MemTxResult
memory_region_dispatch_read(MemoryRegion
*mr
,
1130 * memory_region_dispatch_write: perform a write directly to the specified
1133 * @mr: #MemoryRegion to access
1134 * @addr: address within that region
1135 * @data: data to write
1136 * @size: size of the access in bytes
1137 * @attrs: memory transaction attributes to use for the access
1139 MemTxResult
memory_region_dispatch_write(MemoryRegion
*mr
,
1146 * address_space_init: initializes an address space
1148 * @as: an uninitialized #AddressSpace
1149 * @root: a #MemoryRegion that routes addesses for the address space
1150 * @name: an address space name. The name is only used for debugging
1153 void address_space_init(AddressSpace
*as
, MemoryRegion
*root
, const char *name
);
1157 * address_space_destroy: destroy an address space
1159 * Releases all resources associated with an address space. After an address space
1160 * is destroyed, its root memory region (given by address_space_init()) may be destroyed
1163 * @as: address space to be destroyed
1165 void address_space_destroy(AddressSpace
*as
);
1168 * address_space_rw: read from or write to an address space.
1170 * Return a MemTxResult indicating whether the operation succeeded
1171 * or failed (eg unassigned memory, device rejected the transaction,
1174 * @as: #AddressSpace to be accessed
1175 * @addr: address within that address space
1176 * @attrs: memory transaction attributes
1177 * @buf: buffer with the data transferred
1178 * @is_write: indicates the transfer direction
1180 MemTxResult
address_space_rw(AddressSpace
*as
, hwaddr addr
,
1181 MemTxAttrs attrs
, uint8_t *buf
,
1182 int len
, bool is_write
);
1185 * address_space_write: write to address space.
1187 * Return a MemTxResult indicating whether the operation succeeded
1188 * or failed (eg unassigned memory, device rejected the transaction,
1191 * @as: #AddressSpace to be accessed
1192 * @addr: address within that address space
1193 * @attrs: memory transaction attributes
1194 * @buf: buffer with the data transferred
1196 MemTxResult
address_space_write(AddressSpace
*as
, hwaddr addr
,
1198 const uint8_t *buf
, int len
);
1201 * address_space_read: read from an address space.
1203 * Return a MemTxResult indicating whether the operation succeeded
1204 * or failed (eg unassigned memory, device rejected the transaction,
1207 * @as: #AddressSpace to be accessed
1208 * @addr: address within that address space
1209 * @attrs: memory transaction attributes
1210 * @buf: buffer with the data transferred
1212 MemTxResult
address_space_read(AddressSpace
*as
, hwaddr addr
, MemTxAttrs attrs
,
1213 uint8_t *buf
, int len
);
1216 * address_space_ld*: load from an address space
1217 * address_space_st*: store to an address space
1219 * These functions perform a load or store of the byte, word,
1220 * longword or quad to the specified address within the AddressSpace.
1221 * The _le suffixed functions treat the data as little endian;
1222 * _be indicates big endian; no suffix indicates "same endianness
1225 * The "guest CPU endianness" accessors are deprecated for use outside
1226 * target-* code; devices should be CPU-agnostic and use either the LE
1227 * or the BE accessors.
1229 * @as #AddressSpace to be accessed
1230 * @addr: address within that address space
1231 * @val: data value, for stores
1232 * @attrs: memory transaction attributes
1233 * @result: location to write the success/failure of the transaction;
1234 * if NULL, this information is discarded
1236 uint32_t address_space_ldub(AddressSpace
*as
, hwaddr addr
,
1237 MemTxAttrs attrs
, MemTxResult
*result
);
1238 uint32_t address_space_lduw_le(AddressSpace
*as
, hwaddr addr
,
1239 MemTxAttrs attrs
, MemTxResult
*result
);
1240 uint32_t address_space_lduw_be(AddressSpace
*as
, hwaddr addr
,
1241 MemTxAttrs attrs
, MemTxResult
*result
);
1242 uint32_t address_space_ldl_le(AddressSpace
*as
, hwaddr addr
,
1243 MemTxAttrs attrs
, MemTxResult
*result
);
1244 uint32_t address_space_ldl_be(AddressSpace
*as
, hwaddr addr
,
1245 MemTxAttrs attrs
, MemTxResult
*result
);
1246 uint64_t address_space_ldq_le(AddressSpace
*as
, hwaddr addr
,
1247 MemTxAttrs attrs
, MemTxResult
*result
);
1248 uint64_t address_space_ldq_be(AddressSpace
*as
, hwaddr addr
,
1249 MemTxAttrs attrs
, MemTxResult
*result
);
1250 void address_space_stb(AddressSpace
*as
, hwaddr addr
, uint32_t val
,
1251 MemTxAttrs attrs
, MemTxResult
*result
);
1252 void address_space_stw_le(AddressSpace
*as
, hwaddr addr
, uint32_t val
,
1253 MemTxAttrs attrs
, MemTxResult
*result
);
1254 void address_space_stw_be(AddressSpace
*as
, hwaddr addr
, uint32_t val
,
1255 MemTxAttrs attrs
, MemTxResult
*result
);
1256 void address_space_stl_le(AddressSpace
*as
, hwaddr addr
, uint32_t val
,
1257 MemTxAttrs attrs
, MemTxResult
*result
);
1258 void address_space_stl_be(AddressSpace
*as
, hwaddr addr
, uint32_t val
,
1259 MemTxAttrs attrs
, MemTxResult
*result
);
1260 void address_space_stq_le(AddressSpace
*as
, hwaddr addr
, uint64_t val
,
1261 MemTxAttrs attrs
, MemTxResult
*result
);
1262 void address_space_stq_be(AddressSpace
*as
, hwaddr addr
, uint64_t val
,
1263 MemTxAttrs attrs
, MemTxResult
*result
);
1266 uint32_t address_space_lduw(AddressSpace
*as
, hwaddr addr
,
1267 MemTxAttrs attrs
, MemTxResult
*result
);
1268 uint32_t address_space_ldl(AddressSpace
*as
, hwaddr addr
,
1269 MemTxAttrs attrs
, MemTxResult
*result
);
1270 uint64_t address_space_ldq(AddressSpace
*as
, hwaddr addr
,
1271 MemTxAttrs attrs
, MemTxResult
*result
);
1272 void address_space_stl_notdirty(AddressSpace
*as
, hwaddr addr
, uint32_t val
,
1273 MemTxAttrs attrs
, MemTxResult
*result
);
1274 void address_space_stw(AddressSpace
*as
, hwaddr addr
, uint32_t val
,
1275 MemTxAttrs attrs
, MemTxResult
*result
);
1276 void address_space_stl(AddressSpace
*as
, hwaddr addr
, uint32_t val
,
1277 MemTxAttrs attrs
, MemTxResult
*result
);
1278 void address_space_stq(AddressSpace
*as
, hwaddr addr
, uint64_t val
,
1279 MemTxAttrs attrs
, MemTxResult
*result
);
1282 /* address_space_translate: translate an address range into an address space
1283 * into a MemoryRegion and an address range into that section. Should be
1284 * called from an RCU critical section, to avoid that the last reference
1285 * to the returned region disappears after address_space_translate returns.
1287 * @as: #AddressSpace to be accessed
1288 * @addr: address within that address space
1289 * @xlat: pointer to address within the returned memory region section's
1291 * @len: pointer to length
1292 * @is_write: indicates the transfer direction
1294 MemoryRegion
*address_space_translate(AddressSpace
*as
, hwaddr addr
,
1295 hwaddr
*xlat
, hwaddr
*len
,
1298 /* address_space_access_valid: check for validity of accessing an address
1301 * Check whether memory is assigned to the given address space range, and
1302 * access is permitted by any IOMMU regions that are active for the address
1305 * For now, addr and len should be aligned to a page size. This limitation
1306 * will be lifted in the future.
1308 * @as: #AddressSpace to be accessed
1309 * @addr: address within that address space
1310 * @len: length of the area to be checked
1311 * @is_write: indicates the transfer direction
1313 bool address_space_access_valid(AddressSpace
*as
, hwaddr addr
, int len
, bool is_write
);
1315 /* address_space_map: map a physical memory region into a host virtual address
1317 * May map a subset of the requested range, given by and returned in @plen.
1318 * May return %NULL if resources needed to perform the mapping are exhausted.
1319 * Use only for reads OR writes - not for read-modify-write operations.
1320 * Use cpu_register_map_client() to know when retrying the map operation is
1321 * likely to succeed.
1323 * @as: #AddressSpace to be accessed
1324 * @addr: address within that address space
1325 * @plen: pointer to length of buffer; updated on return
1326 * @is_write: indicates the transfer direction
1328 void *address_space_map(AddressSpace
*as
, hwaddr addr
,
1329 hwaddr
*plen
, bool is_write
);
1331 /* address_space_unmap: Unmaps a memory region previously mapped by address_space_map()
1333 * Will also mark the memory as dirty if @is_write == %true. @access_len gives
1334 * the amount of memory that was actually read or written by the caller.
1336 * @as: #AddressSpace used
1337 * @addr: address within that address space
1338 * @len: buffer length as returned by address_space_map()
1339 * @access_len: amount of data actually transferred
1340 * @is_write: indicates the transfer direction
1342 void address_space_unmap(AddressSpace
*as
, void *buffer
, hwaddr len
,
1343 int is_write
, hwaddr access_len
);