Searched refs:physaddr (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DGenericRequest.cpp145 RTCCPHYS physaddr; local
154 physaddr = VbglPhysHeapGetPhysAddr (pReq);
155 if ( !physaddr
156 || (physaddr >> 32) != 0) /* Port IO is 32 bit. */
162 ASMOutU32(g_vbgldata.portVMMDev + VMMDEV_PORT_OFF_REQUEST, (uint32_t)physaddr);
/vbox/src/recompiler/
H A Dsoftmmu_template.h76 static inline DATA_TYPE glue(io_read, SUFFIX)(target_phys_addr_t physaddr,
82 index = (physaddr >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1);
83 physaddr = (physaddr & TARGET_PAGE_MASK) + addr;
92 res = io_mem_read[index][SHIFT](io_mem_opaque[index], physaddr);
95 res = (uint64_t)io_mem_read[index][2](io_mem_opaque[index], physaddr) << 32;
96 res |= io_mem_read[index][2](io_mem_opaque[index], physaddr + 4);
98 res = io_mem_read[index][2](io_mem_opaque[index], physaddr);
99 res |= (uint64_t)io_mem_read[index][2](io_mem_opaque[index], physaddr + 4) << 32;
228 static inline void glue(io_write, SUFFIX)(target_phys_addr_t physaddr,
[all...]
H A Dsoftmmu_header.h89 uintptr_t physaddr; local
99 physaddr = addr + env->tlb_table[mmu_idx][page_index].addend;
100 res = glue(glue(ld, USUFFIX), _raw)((uint8_t *)physaddr);
110 uintptr_t physaddr; local
120 physaddr = addr + env->tlb_table[mmu_idx][page_index].addend;
121 res = glue(glue(lds, SUFFIX), _raw)((uint8_t *)physaddr);
135 uintptr_t physaddr; local
145 physaddr = addr + env->tlb_table[mmu_idx][page_index].addend;
146 glue(glue(st, SUFFIX), _raw)((uint8_t *)physaddr, v);
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/phantom/
H A Dphantom.c620 uint64_t physaddr; local
622 physaddr = virt_to_bus ( buffer );
623 return phantom_issue_cmd ( phantom, command, ( physaddr >> 32 ),
624 ( physaddr & 0xffffffffUL ), len );

Completed in 49 milliseconds