]> git.ipfire.org Git - thirdparty/pciutils.git/blame - lib/internal.h
Control symbol exports in libpci.
[thirdparty/pciutils.git] / lib / internal.h
CommitLineData
727ce158 1/*
489233b4 2 * The PCI Library -- Internal Stuff
727ce158 3 *
fa182368 4 * Copyright (c) 1997--2008 Martin Mares <mj@ucw.cz>
727ce158
MM
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
2f421184
MM
9#ifdef __GNUC__
10#define PCI_ABI __attribute__((visibility("default")))
11#endif
12
727ce158 13#include "pci.h"
489233b4 14#include "sysdep.h"
727ce158
MM
15
16struct pci_methods {
17 char *name;
9ff67879 18 char *help;
727ce158
MM
19 void (*config)(struct pci_access *);
20 int (*detect)(struct pci_access *);
21 void (*init)(struct pci_access *);
22 void (*cleanup)(struct pci_access *);
23 void (*scan)(struct pci_access *);
e95c8373 24 int (*fill_info)(struct pci_dev *, int flags);
727ce158
MM
25 int (*read)(struct pci_dev *, int pos, byte *buf, int len);
26 int (*write)(struct pci_dev *, int pos, byte *buf, int len);
27 void (*init_dev)(struct pci_dev *);
28 void (*cleanup_dev)(struct pci_dev *);
29};
30
14d6c0a3 31void pci_generic_scan_bus(struct pci_access *, byte *busmap, int bus);
727ce158 32void pci_generic_scan(struct pci_access *);
e95c8373 33int pci_generic_fill_info(struct pci_dev *, int flags);
727ce158
MM
34int pci_generic_block_read(struct pci_dev *, int pos, byte *buf, int len);
35int pci_generic_block_write(struct pci_dev *, int pos, byte *buf, int len);
36
37void *pci_malloc(struct pci_access *, int);
38void pci_mfree(void *);
fa182368 39char *pci_strdup(struct pci_access *a, char *s);
727ce158
MM
40
41struct pci_dev *pci_alloc_dev(struct pci_access *);
42int pci_link_dev(struct pci_access *, struct pci_dev *);
43
0f24ef6f 44void pci_define_param(struct pci_access *acc, char *param, char *val, char *help);
98ccf6d6 45int pci_set_param_internal(struct pci_access *acc, char *param, char *val, int copy);
d6dcc545 46void pci_free_params(struct pci_access *acc);
fa182368 47
727ce158 48extern struct pci_methods pm_intel_conf1, pm_intel_conf2, pm_linux_proc,
94db5c82 49 pm_fbsd_device, pm_aix_device, pm_nbsd_libpci, pm_obsd_device,
b6359063 50 pm_dump, pm_linux_sysfs;