]> mj.ucw.cz Git - pciutils.git/blob - lib/internal.h
6bfcde71363f48d3750bb80ea6edf18a0e4577a9
[pciutils.git] / lib / internal.h
1 /*
2  *      The PCI Library -- Internal Stuff
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.
7  */
8
9 #include "config.h"
10
11 #ifdef PCI_SHARED_LIB
12 #define PCI_ABI __attribute__((visibility("default")))
13 // Functions, which are bound to externally visible symbols by the versioning
14 // mechanism, have to be declared as VERSIONED. Otherwise, GCC with global
15 // optimizations is happy to optimize them away, leading to linker failures.
16 #define VERSIONED_ABI __attribute__((used)) PCI_ABI
17 #ifdef __APPLE__
18 #define STATIC_ALIAS(_decl, _for) _decl PCI_ABI { return _for; }
19 #define DEFINE_ALIAS(_decl, _for)
20 #define SYMBOL_VERSION(_int, _ext)
21 #else
22 #define STATIC_ALIAS(_decl, _for)
23 #define DEFINE_ALIAS(_decl, _for) extern _decl __attribute__((alias(#_for)))
24 #ifdef _WIN32
25 /* GCC does not support asm .symver directive for Windows targets, so define new external global function symbol as alias to internal symbol */
26 #define SYMBOL_VERSION(_int, _ext) asm(".globl\t" PCI_STRINGIFY(__MINGW_USYMBOL(_ext)) "\n\t" \
27                                        ".def\t"   PCI_STRINGIFY(__MINGW_USYMBOL(_ext)) ";\t.scl\t2;\t.type\t32;\t.endef\n\t" \
28                                        ".set\t"   PCI_STRINGIFY(__MINGW_USYMBOL(_ext)) "," PCI_STRINGIFY(__MINGW_USYMBOL(_int)))
29 #else
30 #define SYMBOL_VERSION(_int, _ext) asm(".symver " #_int "," #_ext)
31 #endif
32 #endif
33 #else
34 #define VERSIONED_ABI
35 #define STATIC_ALIAS(_decl, _for) _decl { return _for; }
36 #define DEFINE_ALIAS(_decl, _for)
37 #define SYMBOL_VERSION(_int, _ext)
38 #endif
39
40 #include "pci.h"
41 #include "sysdep.h"
42
43 /* Old 32-bit-only versions of MinGW32 do not define __MINGW_USYMBOL macro */
44 #ifdef __MINGW32__
45 #ifndef __MINGW_USYMBOL
46 #define __MINGW_USYMBOL(sym) _##sym
47 #endif
48 #endif
49
50 #define _PCI_STRINGIFY(x) #x
51 #define PCI_STRINGIFY(x) _PCI_STRINGIFY(x)
52
53 struct pci_methods {
54   char *name;
55   char *help;
56   void (*config)(struct pci_access *);
57   int (*detect)(struct pci_access *);
58   void (*init)(struct pci_access *);
59   void (*cleanup)(struct pci_access *);
60   void (*scan)(struct pci_access *);
61   void (*fill_info)(struct pci_dev *, unsigned int flags);
62   int (*read)(struct pci_dev *, int pos, byte *buf, int len);
63   int (*write)(struct pci_dev *, int pos, byte *buf, int len);
64   int (*read_vpd)(struct pci_dev *, int pos, byte *buf, int len);
65   void (*init_dev)(struct pci_dev *);
66   void (*cleanup_dev)(struct pci_dev *);
67 };
68
69 /* generic.c */
70 void pci_generic_scan_bus(struct pci_access *, byte *busmap, int domain, int bus);
71 void pci_generic_scan_domain(struct pci_access *, int domain);
72 void pci_generic_scan(struct pci_access *);
73 void pci_generic_fill_info(struct pci_dev *, unsigned int flags);
74 int pci_generic_block_read(struct pci_dev *, int pos, byte *buf, int len);
75 int pci_generic_block_write(struct pci_dev *, int pos, byte *buf, int len);
76
77 /* emulated.c */
78 int pci_emulated_read(struct pci_dev *d, int pos, byte *buf, int len);
79
80 /* init.c */
81 void *pci_malloc(struct pci_access *, int);
82 void pci_mfree(void *);
83 char *pci_strdup(struct pci_access *a, const char *s);
84
85 void pci_init_v30(struct pci_access *a) VERSIONED_ABI;
86 void pci_init_v35(struct pci_access *a) VERSIONED_ABI;
87
88 /* access.c */
89 struct pci_dev *pci_alloc_dev(struct pci_access *);
90 int pci_link_dev(struct pci_access *, struct pci_dev *);
91
92 int pci_fill_info_v30(struct pci_dev *, int flags) VERSIONED_ABI;
93 int pci_fill_info_v31(struct pci_dev *, int flags) VERSIONED_ABI;
94 int pci_fill_info_v32(struct pci_dev *, int flags) VERSIONED_ABI;
95 int pci_fill_info_v33(struct pci_dev *, int flags) VERSIONED_ABI;
96 int pci_fill_info_v34(struct pci_dev *, int flags) VERSIONED_ABI;
97 int pci_fill_info_v35(struct pci_dev *, int flags) VERSIONED_ABI;
98 int pci_fill_info_v38(struct pci_dev *, int flags) VERSIONED_ABI;
99
100 static inline int want_fill(struct pci_dev *d, unsigned want_fields, unsigned int try_fields)
101 {
102   want_fields &= try_fields;
103   if ((d->known_fields & want_fields) == want_fields)
104     return 0;
105   else
106     {
107       d->known_fields |= try_fields;
108       return 1;
109     }
110 }
111
112 static inline void clear_fill(struct pci_dev *d, unsigned clear_fields)
113 {
114   d->known_fields &= ~clear_fields;
115 }
116
117 struct pci_property {
118   struct pci_property *next;
119   u32 key;
120   char value[1];
121 };
122
123 char *pci_set_property(struct pci_dev *d, u32 key, char *value);
124
125 /* params.c */
126 void pci_define_param(struct pci_access *acc, char *param, char *val, char *help);
127 int pci_set_param_internal(struct pci_access *acc, char *param, char *val, int copy);
128 void pci_free_params(struct pci_access *acc);
129
130 /* caps.c */
131 void pci_scan_caps(struct pci_dev *, unsigned int want_fields);
132 void pci_free_caps(struct pci_dev *);
133
134 extern struct pci_methods pm_intel_conf1, pm_intel_conf2, pm_linux_proc,
135         pm_fbsd_device, pm_aix_device, pm_nbsd_libpci, pm_obsd_device,
136         pm_dump, pm_linux_sysfs, pm_darwin, pm_sylixos_device, pm_hurd,
137         pm_mmio_conf1,
138         pm_win32_cfgmgr32, pm_win32_sysdbg;