]> git.proxmox.com Git - qemu.git/blame - hwaddr.h
openpic: combine openpic and mpic reset functions
[qemu.git] / hwaddr.h
CommitLineData
a8170e5e
AK
1/* Define hwaddr if it exists. */
2
3#ifndef HWADDR_H
4#define HWADDR_H
5
6#ifndef CONFIG_USER_ONLY
7
8#define HWADDR_BITS 64
9/* hwaddr is the type of a physical address (its size can
10 be different from 'target_ulong'). */
11
12typedef uint64_t hwaddr;
13#define HWADDR_MAX UINT64_MAX
14#define TARGET_FMT_plx "%016" PRIx64
15#define HWADDR_PRId PRId64
16#define HWADDR_PRIi PRIi64
17#define HWADDR_PRIo PRIo64
18#define HWADDR_PRIu PRIu64
19#define HWADDR_PRIx PRIx64
20#define HWADDR_PRIX PRIX64
21
22#endif
23
24#endif