Home
last modified time | relevance | path

Searched full:mapped (Results 1 – 25 of 797) sorted by relevance

12345678910>>...32

/openbmc/u-boot/arch/x86/cpu/quark/
H A DKconfig71 Embedded SRAM (eSRAM) memory-mapped base address.
81 Root Complex register block memory-mapped base address.
87 ACPI Power Management 1 (PM1) i/o-mapped base address.
94 ACPI Processor Block (PBLK) i/o-mapped base address.
101 SPI DMA i/o-mapped base address.
107 GPIO i/o-mapped base address.
113 ACPI General Purpose Event 0 (GPE0) i/o-mapped base address.
120 Watchdog timer i/o-mapped base address.
/openbmc/qemu/docs/devel/migration/
H A Dmapped-ram.rst1 Mapped-ram
4 Mapped-ram is a new stream format for the RAM section designed to
9 The core of the feature is to ensure that RAM pages are mapped
25 ``mapped-ram`` capabilities:
29 ``migrate_set_capability mapped-ram on``
35 Mapped-ram migration is best done non-live, i.e. by stopping the VM on
45 The mapped-ram feature was designed for use cases where the migration
54 that's the ideal scenario for mapped-ram migration. Not having to
66 the snapshot operation, then mapped-ram migration can still be used,
69 mapped-ram in this scenario is portability since background-snapshot
[all …]
/openbmc/phosphor-ipmi-flash/bmc/firmware-handler/
H A Dlpc_nuvoton.cpp56 mapped = reinterpret_cast<uint8_t*>(sys->mmap( in open()
58 if (mapped == MAP_FAILED) in open()
62 mapped = nullptr; in open()
69 output.mapped = mapped; in open()
76 if (mapped) in close()
78 sys->munmap(mapped, memoryRegionSize); in close()
79 mapped = nullptr; in close()
91 * SuperIO. On BMC side the max memory can be mapped is 4kB with the caveat that
98 * - WindowSize = 0 means that the region cannot be mapped otherwise
105 /* We reserve the first 4 bytes from the mapped region; the first byte in mapWindow()
H A Dpci_nuvoton_handler.cpp41 mapped = reinterpret_cast<uint8_t*>(sys->mmap( in open()
43 if (mapped == MAP_FAILED) in open()
47 mapped = nullptr; in open()
60 if (mapped) in close()
62 sys->munmap(mapped, memoryRegionSize); in close()
63 mapped = nullptr; in close()
78 std::memcpy(results.data(), mapped, length); in copyFrom()
H A Dpci_handler.cpp69 mapped = reinterpret_cast<std::uint8_t*>( in open()
71 if (mapped == MAP_FAILED) in open()
75 mapped = nullptr; in open()
87 if (mapped) in close()
89 sys->munmap(mapped, memoryRegionSize); in close()
90 mapped = nullptr; in close()
105 std::memcpy(results.data(), mapped, length); in copyFrom()
H A Dlpc_handler.hpp15 /* Host LPC address where the chunk is to be mapped. */
18 /* Size of the chunk to be mapped. */
56 * mapped over external block mechanism).
H A Dlpc_handler.cpp67 * didn't use BLOBs, the region was memory-mapped and the writes to the data in copyFrom()
68 * were just done directly from the memory-mapped region instead of a in copyFrom()
70 * able to get a memory-mapped handle from the driver from which to in copyFrom()
83 std::memcpy(results.data(), memory.mapped + mappingResult.windowOffset, in copyFrom()
/openbmc/qemu/linux-headers/asm-riscv/
H A Dkvm.h226 /* Config registers are mapped as type 1 */
231 /* Core registers are mapped as type 2 */
236 /* Control and status registers are mapped as type 3 */
248 /* Timer registers are mapped as type 4 */
253 /* F extension registers are mapped as type 5 */
258 /* D extension registers are mapped as type 6 */
263 /* ISA Extension registers are mapped as type 7 */
275 /* SBI extension registers are mapped as type 8 */
287 /* V extension registers are mapped as type 9 */
294 /* Registers for specific SBI extensions are mapped as type 10 */
[all …]
/openbmc/qemu/qobject/
H A Dqdict.c188 * qdict_get_double(): Get an number mapped by 'key'
192 * Return number mapped by 'key'.
200 * qdict_get_int(): Get an integer mapped by 'key'
205 * Return integer mapped by 'key'.
213 * qdict_get_bool(): Get a bool mapped by 'key'
218 * Return bool mapped by 'key'.
242 * qdict_get_str(): Get a pointer to the stored string mapped
248 * Return pointer to the string mapped by 'key'.
256 * qdict_get_try_int(): Try to get integer mapped by 'key'
258 * Return integer mapped by 'key', if it is not present in the
[all …]
/openbmc/qemu/hw/mem/
H A Dsparse-mem.c33 GHashTable *mapped; member
48 block = g_hash_table_lookup(s->mapped, (void *)pfn); in sparse_mem_read()
64 if (!g_hash_table_lookup(s->mapped, (void *)pfn) && in sparse_mem_write()
66 g_hash_table_insert(s->mapped, (void *)pfn, in sparse_mem_write()
70 block = g_hash_table_lookup(s->mapped, (void *)pfn); in sparse_mem_write()
84 g_hash_table_remove_all(s->mapped); in sparse_mem_enter_reset()
132 s->mapped = g_hash_table_new_full(NULL, NULL, NULL, in sparse_mem_realize()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-test/fwts/fwts/
H A D0001-Add-correct-printf-qualifier-for-off_t.patch21 - fwts_passed(fw, "EBDA region mapped at 0x%lx and reserved as a %" PRId64
22 + fwts_passed(fw, "EBDA region mapped at 0x%jdx and reserved as a %" PRId64
33 - "EBDA region mapped at 0x%lx but not reserved in the %s table.",
36 + "EBDA region mapped at 0x%jdx but not reserved in the %s table.",
/openbmc/qemu/hw/9pfs/
H A D9p-xattr-user.c31 * in case of mapped security in mp_user_getxattr()
45 /* check if it is a mapped posix acl */ in mp_user_listxattr()
53 * in case of mapped security in mp_user_listxattr()
78 * in case of mapped security in mp_user_setxattr()
92 * in case of mapped security in mp_user_removexattr()
/openbmc/qemu/include/hw/xen/interface/
H A Dfeatures.h101 * A direct-mapped (or 1:1 mapped) domain is a domain for which its
102 * local pages have gfn == mfn. If a domain is direct-mapped,
107 * - not auto_translated domains (x86 only) are always direct-mapped
108 * - on x86, auto_translated domains are not direct-mapped
109 * - on ARM, Dom0 is direct-mapped, DomUs are not
/openbmc/qemu/target/mips/system/
H A Dphysaddr.c49 /* Never AdE, TLB mapped if AM={1,2,3} */ in is_seg_am_mapped()
54 /* AdE if AM={0,1}, TLB mapped if AM={2,3,4} */ in is_seg_am_mapped()
59 /* AdE if AM={0,1,2,5}, TLB mapped if AM={3,4} */ in is_seg_am_mapped()
70 /* is this AM mapped in current execution mode */ in is_seg_am_mapped()
84 int mapped = is_seg_am_mapped(am, eu, mmu_idx); in get_seg_physical_address() local
86 if (mapped < 0) { in get_seg_physical_address()
88 return mapped; in get_seg_physical_address()
89 } else if (mapped) { in get_seg_physical_address()
90 /* The segment is TLB mapped */ in get_seg_physical_address()
/openbmc/qemu/hw/core/
H A Dplatform-bus.c32 * the IRQ is not mapped on this Platform bus.
46 /* IRQ not mapped on platform bus */ in platform_bus_get_irqn()
52 * -1 if the region is not mapped on this Platform bus.
63 /* Region is not mapped? */ in platform_bus_get_mmio_addr()
70 /* MMIO region is not mapped on platform bus */ in platform_bus_get_mmio_addr()
115 /* IRQ is already mapped, nothing to do */ in platform_bus_map_irq()
139 /* Region is already mapped, nothing to do */ in platform_bus_map_mmio()
/openbmc/u-boot/arch/sandbox/include/asm/
H A Du-boot-sandbox.h40 * to the size actually mapped, which may be less if the device
42 * @devp: Returns the device which mapped into this space
43 * @ptrp: Returns a pointer to the mapped address. The device's space
56 * @len: Size of area mapped, as returned by pci_map_physmem()
/openbmc/u-boot/include/asm-generic/
H A Dio.h20 * phys_to_virt() - Return a virtual address mapped to a given physical address
72 * map_physmem() - Return a virtual address mapped to a given physical address
83 * Returns: a virtual address suitably mapped to @paddr
98 * Unmap memory which was previously mapped by a call to map_physmem(). If
/openbmc/u-boot/doc/SPI/
H A DREADME.ti_qspi_flash7 has a memory mapped interface which provide direct interface
31 Memory mapped read mode
34 controller is switched to memory mapped port for data read.
/openbmc/qemu/tests/qemu-iotests/
H A D290.out16 Offset Length Mapped to File
28 Offset Length Mapped to File
47 Offset Length Mapped to File
60 Offset Length Mapped to File
/openbmc/qemu/tests/qtest/migration/
H A Dfile-tests.c302 migration_test_add("/migration/multifd/file/mapped-ram/dio", in migration_test_add_file_smoke()
325 migration_test_add("/migration/precopy/file/mapped-ram", in migration_test_add_file()
327 migration_test_add("/migration/precopy/file/mapped-ram/live", in migration_test_add_file()
330 migration_test_add("/migration/multifd/file/mapped-ram", in migration_test_add_file()
332 migration_test_add("/migration/multifd/file/mapped-ram/live", in migration_test_add_file()
336 migration_test_add("/migration/multifd/file/mapped-ram/fdset", in migration_test_add_file()
338 migration_test_add("/migration/multifd/file/mapped-ram/fdset/dio", in migration_test_add_file()
/openbmc/u-boot/board/micronas/vct/
H A Dvct.h16 /* Global start address of all memory mapped registers */
30 /* Global start address of all memory mapped registers */
44 /* Global start address of all memory mapped registers */
/openbmc/qemu/hw/intc/
H A Dopenpic_kvm.c51 hwaddr mapped; member
131 if (opp->mapped) { in kvm_openpic_region_add()
133 * We can only map the MPIC once. Since we are already mapped, in kvm_openpic_region_add()
140 opp->mapped = reg_base; in kvm_openpic_region_add()
167 if (section->offset_within_address_space != opp->mapped) { in kvm_openpic_region_del()
174 opp->mapped = 0; in kvm_openpic_region_del()
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DLucida-Bitmap-Fonts20 fonts and bit-mapped images associated with the materials on this
22 the trademark only to identify the fonts and bit-mapped images if,
23 and only if, the fonts and bit-mapped images are not modified in any
/openbmc/u-boot/include/dm/
H A Dfdtaddr.h37 * devfdt_remap_addr() - Return pointer to the memory-mapped I/O address
47 * devfdt_remap_addr_index() - Return indexed pointer to the memory-mapped
60 * name, as a memory-mapped I/O pointer
79 * @return mapped address, or NULL if the device does not have reg
/openbmc/u-boot/drivers/mtd/ubi/
H A Dkapi.c508 * re-mapped to another physical eraseblock, the data is recovered, and the
643 * example, if several logical eraseblocks are un-mapped, and an unclean reboot
645 * un-mapped again when this MTD device is attached. They may actually be
646 * mapped to the same physical eraseblocks again. So, this function has to be
651 * eraseblock as "un-mapped" in RAM. If UBI is detached before the physical
652 * eraseblock is physically erased, it will be mapped again to the same logical
660 * unclean reboot happens after the logical eraseblock has been un-mapped and
692 * This function maps an un-mapped logical eraseblock @lnum to a physical
695 * bytes) and be mapped to a physical eraseblock, even if an unclean reboot
700 * eraseblock is already mapped, and other negative error codes in case of
[all …]

12345678910>>...32