Merge commit 'afb63ebd0a9599312c27ecceb839a399740e00ef' into upstream-merge
[qemu-kvm.git] / targphys.h
blob08cade90962cb7e0e62f0dc182931e197f5bbed1
1 /* Define target_phys_addr_t if it exists. */
3 #ifndef TARGPHYS_H
4 #define TARGPHYS_H
6 #define TARGET_PHYS_ADDR_BITS 64
7 /* target_phys_addr_t is the type of a physical address (its size can
8 be different from 'target_ulong'). */
10 typedef uint64_t target_phys_addr_t;
11 #define TARGET_PHYS_ADDR_MAX UINT64_MAX
12 #define TARGET_FMT_plx "%016" PRIx64
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
20 #endif