]> git.proxmox.com Git - qemu.git/blame - targphys.h
vfio-pci: Roll the header into the .c file
[qemu.git] / targphys.h
CommitLineData
c227f099 1/* Define target_phys_addr_t if it exists. */
1ad2134f
PB
2
3#ifndef TARGPHYS_H
4#define TARGPHYS_H
5
4be403c8 6#define TARGET_PHYS_ADDR_BITS 64
c227f099 7/* target_phys_addr_t is the type of a physical address (its size can
355b1943 8 be different from 'target_ulong'). */
1ad2134f 9
c227f099 10typedef uint64_t target_phys_addr_t;
9fa06385 11#define TARGET_PHYS_ADDR_MAX UINT64_MAX
1ad2134f 12#define TARGET_FMT_plx "%016" PRIx64
1e9be4b4
PM
13#define TARGET_PRIdPHYS PRId64
14#define TARGET_PRIiPHYS PRIi64
15#define TARGET_PRIoPHYS PRIo64
16#define TARGET_PRIuPHYS PRIu64
17#define TARGET_PRIxPHYS PRIx64
18#define TARGET_PRIXPHYS PRIX64
1ad2134f
PB
19
20#endif