2009-10-01 23:12:16 +02:00
|
|
|
/* Define target_phys_addr_t if it exists. */
|
2009-05-19 17:17:58 +02:00
|
|
|
|
|
|
|
#ifndef TARGPHYS_H
|
|
|
|
#define TARGPHYS_H
|
|
|
|
|
|
|
|
#ifdef TARGET_PHYS_ADDR_BITS
|
2009-10-01 23:12:16 +02:00
|
|
|
/* target_phys_addr_t is the type of a physical address (its size can
|
2009-05-19 17:17:58 +02:00
|
|
|
be different from 'target_ulong'). We have sizeof(target_phys_addr)
|
|
|
|
= max(sizeof(unsigned long),
|
|
|
|
sizeof(size_of_target_physical_address)) because we must pass a
|
|
|
|
host pointer to memory operations in some cases */
|
|
|
|
|
|
|
|
#if TARGET_PHYS_ADDR_BITS == 32
|
2009-10-01 23:12:16 +02:00
|
|
|
typedef uint32_t target_phys_addr_t;
|
2009-05-22 23:51:45 +02:00
|
|
|
#define TARGET_PHYS_ADDR_MAX UINT32_MAX
|
2009-05-19 17:17:58 +02:00
|
|
|
#define TARGET_FMT_plx "%08x"
|
|
|
|
#elif TARGET_PHYS_ADDR_BITS == 64
|
2009-10-01 23:12:16 +02:00
|
|
|
typedef uint64_t target_phys_addr_t;
|
2009-05-22 23:51:45 +02:00
|
|
|
#define TARGET_PHYS_ADDR_MAX UINT64_MAX
|
2009-05-19 17:17:58 +02:00
|
|
|
#define TARGET_FMT_plx "%016" PRIx64
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|