]> mj.ucw.cz Git - pciutils.git/blob - lib/types.h
Since we already require C99, we can rely on <stdint.h>
[pciutils.git] / lib / types.h
1 /*
2  *      The PCI Library -- Types and Format Strings
3  *
4  *      Copyright (c) 1997--2022 Martin Mares <mj@ucw.cz>
5  *
6  *      Can be freely distributed and used under the terms of the GNU GPL v2+
7  *
8  *      SPDX-License-Identifier: GPL-2.0-or-later
9  */
10
11 #include <sys/types.h>
12
13 #ifndef PCI_HAVE_Uxx_TYPES
14
15 #ifdef PCI_OS_WINDOWS
16 /* On Windows compilers, use <windows.h> */
17 #include <windows.h>
18 typedef BYTE u8;
19 typedef WORD u16;
20 typedef DWORD u32;
21 typedef unsigned __int64 u64;
22 #define PCI_U64_FMT_X "I64x"
23 #define PCI_U64_FMT_U "I64u"
24
25 #else
26 /* Use standard types in C99 and newer */
27 #include <stdint.h>
28 #include <inttypes.h>
29 typedef uint8_t u8;
30 typedef uint16_t u16;
31 typedef uint32_t u32;
32 typedef uint64_t u64;
33 #define PCI_U64_FMT_X PRIx64
34 #define PCI_U64_FMT_U PRIu64
35 #endif
36
37 #endif  /* PCI_HAVE_Uxx_TYPES */
38
39 #ifdef PCI_HAVE_64BIT_ADDRESS
40 typedef u64 pciaddr_t;
41 #define PCIADDR_T_FMT "%08" PCI_U64_FMT_X
42 #define PCIADDR_PORT_FMT "%04" PCI_U64_FMT_X
43 #else
44 typedef u32 pciaddr_t;
45 #define PCIADDR_T_FMT "%08x"
46 #define PCIADDR_PORT_FMT "%04x"
47 #endif
48
49 #ifdef PCI_ARCH_SPARC64
50 /* On sparc64 Linux the kernel reports remapped port addresses and IRQ numbers */
51 #undef PCIADDR_PORT_FMT
52 #define PCIADDR_PORT_FMT PCIADDR_T_FMT
53 #define PCIIRQ_FMT "%08x"
54 #else
55 #define PCIIRQ_FMT "%d"
56 #endif
57
58 #if defined(__GNUC__) && __GNUC__ > 2
59 #define PCI_PRINTF(x,y) __attribute__((format(printf, x, y)))
60 #define PCI_NONRET __attribute((noreturn))
61 #define PCI_PACKED __attribute((packed))
62 #else
63 #define PCI_PRINTF(x,y)
64 #define PCI_NONRET
65 #define PCI_PACKED
66 #endif