2 * The PCI Library -- Initialization and related things
4 * Copyright (c) 1997--2018 Martin Mares <mj@ucw.cz>
6 * Can be freely distributed and used under the terms of the GNU GPL.
20 static struct pci_methods *pci_methods[PCI_ACCESS_MAX] = {
22 #ifdef PCI_HAVE_PM_LINUX_SYSFS
27 #ifdef PCI_HAVE_PM_LINUX_PROC
32 #ifdef PCI_HAVE_PM_INTEL_CONF
39 #ifdef PCI_HAVE_PM_FBSD_DEVICE
44 #ifdef PCI_HAVE_PM_AIX_DEVICE
49 #ifdef PCI_HAVE_PM_NBSD_LIBPCI
54 #ifdef PCI_HAVE_PM_OBSD_DEVICE
59 #ifdef PCI_HAVE_PM_DUMP
64 #ifdef PCI_HAVE_PM_DARWIN_DEVICE
69 #ifdef PCI_HAVE_PM_SYLIXOS_DEVICE
74 #ifdef PCI_HAVE_PM_HURD_CONF
79 #ifdef PCI_HAVE_PM_WIN32_CFGMGR32
84 #ifdef PCI_HAVE_PM_WIN32_SYSDBG
91 // If PCI_ACCESS_AUTO is selected, we probe the access methods in this order
92 static int probe_sequence[] = {
93 // System-specific methods
94 PCI_ACCESS_SYS_BUS_PCI,
95 PCI_ACCESS_PROC_BUS_PCI,
96 PCI_ACCESS_FBSD_DEVICE,
97 PCI_ACCESS_AIX_DEVICE,
98 PCI_ACCESS_NBSD_LIBPCI,
99 PCI_ACCESS_OBSD_DEVICE,
101 PCI_ACCESS_SYLIXOS_DEVICE,
103 PCI_ACCESS_WIN32_CFGMGR32,
104 PCI_ACCESS_WIN32_SYSDBG,
105 // Low-level methods poking the hardware directly
106 PCI_ACCESS_I386_TYPE1,
107 PCI_ACCESS_I386_TYPE2,
111 static void PCI_NONRET
112 pci_generic_error(char *msg, ...)
117 fputs("pcilib: ", stderr);
118 vfprintf(stderr, msg, args);
125 pci_generic_warn(char *msg, ...)
130 fputs("pcilib: ", stderr);
131 vfprintf(stderr, msg, args);
137 pci_generic_debug(char *msg, ...)
142 vfprintf(stdout, msg, args);
147 pci_null_debug(char *msg UNUSED, ...)
151 // Memory allocation functions are safe to call if pci_access is not fully initalized or even NULL
154 pci_malloc(struct pci_access *a, int size)
156 void *x = malloc(size);
159 (a && a->error ? a->error : pci_generic_error)("Out of memory (allocation of %d bytes failed)", size);
171 pci_strdup(struct pci_access *a, const char *s)
173 int len = strlen(s) + 1;
174 char *t = pci_malloc(a, len);
180 pci_lookup_method(char *name)
184 for (i=0; i<PCI_ACCESS_MAX; i++)
185 if (pci_methods[i] && !strcmp(pci_methods[i]->name, name))
191 pci_get_method_name(int index)
193 if (index < 0 || index >= PCI_ACCESS_MAX)
195 else if (!pci_methods[index])
198 return pci_methods[index]->name;
201 #ifdef PCI_OS_WINDOWS
204 pci_init_name_list_path(struct pci_access *a)
206 if ((PCI_PATH_IDS_DIR)[0])
207 pci_set_name_list_path(a, PCI_PATH_IDS_DIR "\\" PCI_IDS, 0);
213 path = pci_malloc(a, MAX_PATH+1);
214 len = GetModuleFileNameA(NULL, path, MAX_PATH+1);
215 sep = (len > 0) ? strrchr(path, '\\') : NULL;
216 if (len == 0 || len == MAX_PATH+1 || !sep || MAX_PATH-(size_t)(sep+1-path) < sizeof(PCI_IDS))
219 pci_set_name_list_path(a, PCI_IDS, 0);
223 memcpy(sep+1, PCI_IDS, sizeof(PCI_IDS));
224 pci_set_name_list_path(a, path, 1);
232 pci_init_name_list_path(struct pci_access *a)
234 pci_set_name_list_path(a, PCI_PATH_IDS_DIR "/" PCI_IDS, 0);
242 struct pci_access *a = pci_malloc(NULL, sizeof(struct pci_access));
245 memset(a, 0, sizeof(*a));
246 pci_init_name_list_path(a);
248 pci_define_param(a, "net.domain", PCI_ID_DOMAIN, "DNS domain used for resolving of ID's");
249 pci_define_param(a, "net.cache_name", "~/.pciids-cache", "Name of the ID cache file");
250 a->id_lookup_mode = PCI_LOOKUP_CACHE;
253 pci_define_param(a, "hwdb.disable", "0", "Do not look up names in UDEV's HWDB if non-zero");
255 for (i=0; i<PCI_ACCESS_MAX; i++)
256 if (pci_methods[i] && pci_methods[i]->config)
257 pci_methods[i]->config(a);
262 pci_init_v35(struct pci_access *a)
265 a->error = pci_generic_error;
267 a->warning = pci_generic_warn;
269 a->debug = pci_generic_debug;
271 a->debug = pci_null_debug;
275 if (a->method >= PCI_ACCESS_MAX || !pci_methods[a->method])
276 a->error("This access method is not supported.");
277 a->methods = pci_methods[a->method];
282 for (i=0; probe_sequence[i] >= 0; i++)
284 struct pci_methods *m = pci_methods[probe_sequence[i]];
287 a->debug("Trying method %s...", m->name);
292 a->method = probe_sequence[i];
295 a->debug("...No.\n");
298 a->error("Cannot find any working access method.");
300 a->debug("Decided to use %s\n", a->methods->name);
304 STATIC_ALIAS(void pci_init(struct pci_access *a), pci_init_v35(a));
305 DEFINE_ALIAS(void pci_init_v30(struct pci_access *a), pci_init_v35);
306 SYMBOL_VERSION(pci_init_v30, pci_init@LIBPCI_3.0);
307 SYMBOL_VERSION(pci_init_v35, pci_init@@LIBPCI_3.5);
310 pci_cleanup(struct pci_access *a)
312 struct pci_dev *d, *e;
314 for (d=a->devices; d; d=e)
320 a->methods->cleanup(a);
321 pci_free_name_list(a);
323 pci_set_name_list_path(a, NULL, 0);