Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 1 | /* Define target_phys_addr_t if it exists. */ |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 2 | |
| 3 | #ifndef TARGPHYS_H |
| 4 | #define TARGPHYS_H |
| 5 | |
| 6 | #ifdef TARGET_PHYS_ADDR_BITS |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 7 | /* target_phys_addr_t is the type of a physical address (its size can |
Paul Brook | 355b194 | 2010-04-05 00:28:53 +0100 | [diff] [blame] | 8 | be different from 'target_ulong'). */ |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 9 | |
| 10 | #if TARGET_PHYS_ADDR_BITS == 32 |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 11 | typedef uint32_t target_phys_addr_t; |
Jan Kiszka | 9fa0638 | 2009-05-22 23:51:45 +0200 | [diff] [blame] | 12 | #define TARGET_PHYS_ADDR_MAX UINT32_MAX |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 13 | #define TARGET_FMT_plx "%08x" |
Peter Maydell | 1e9be4b | 2012-06-25 16:52:21 +0100 | [diff] [blame] | 14 | /* Format strings for printing target_phys_addr_t types. |
| 15 | * These are recommended over the less flexible TARGET_FMT_plx, |
| 16 | * which is retained for the benefit of existing code. |
| 17 | */ |
| 18 | #define TARGET_PRIdPHYS PRId32 |
| 19 | #define TARGET_PRIiPHYS PRIi32 |
| 20 | #define TARGET_PRIoPHYS PRIo32 |
| 21 | #define TARGET_PRIuPHYS PRIu32 |
| 22 | #define TARGET_PRIxPHYS PRIx32 |
| 23 | #define TARGET_PRIXPHYS PRIX32 |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 24 | #elif TARGET_PHYS_ADDR_BITS == 64 |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 25 | typedef uint64_t target_phys_addr_t; |
Jan Kiszka | 9fa0638 | 2009-05-22 23:51:45 +0200 | [diff] [blame] | 26 | #define TARGET_PHYS_ADDR_MAX UINT64_MAX |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 27 | #define TARGET_FMT_plx "%016" PRIx64 |
Peter Maydell | 1e9be4b | 2012-06-25 16:52:21 +0100 | [diff] [blame] | 28 | #define TARGET_PRIdPHYS PRId64 |
| 29 | #define TARGET_PRIiPHYS PRIi64 |
| 30 | #define TARGET_PRIoPHYS PRIo64 |
| 31 | #define TARGET_PRIuPHYS PRIu64 |
| 32 | #define TARGET_PRIxPHYS PRIx64 |
| 33 | #define TARGET_PRIXPHYS PRIX64 |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 34 | #endif |
| 35 | #endif |
| 36 | |
| 37 | #endif |