]> mj.ucw.cz Git - pciutils.git/blob - lib/internal.h
35ed65f1b426a55dcb3a651c7eef7f9e1573828b
[pciutils.git] / lib / internal.h
1 /*
2  *      The PCI Library -- Internal Stuff
3  *
4  *      Copyright (c) 1997--2008 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 #define STATIC_ALIAS(_decl, _for)
14 #define DEFINE_ALIAS(_decl, _for) extern _decl __attribute__((alias(#_for)))
15 #define SYMBOL_VERSION(_int, _ext) asm(".symver " #_int "," #_ext)
16 #else
17 #define STATIC_ALIAS(_decl, _for) _decl { return _for; }
18 #define DEFINE_ALIAS(_decl, _for)
19 #define SYMBOL_VERSION(_int, _ext)
20 #endif
21
22 #include "pci.h"
23 #include "sysdep.h"
24
25 struct pci_methods {
26   char *name;
27   char *help;
28   void (*config)(struct pci_access *);
29   int (*detect)(struct pci_access *);
30   void (*init)(struct pci_access *);
31   void (*cleanup)(struct pci_access *);
32   void (*scan)(struct pci_access *);
33   int (*fill_info)(struct pci_dev *, int flags);
34   int (*read)(struct pci_dev *, int pos, byte *buf, int len);
35   int (*write)(struct pci_dev *, int pos, byte *buf, int len);
36   void (*init_dev)(struct pci_dev *);
37   void (*cleanup_dev)(struct pci_dev *);
38 };
39
40 /* generic.c */
41 void pci_generic_scan_bus(struct pci_access *, byte *busmap, int bus);
42 void pci_generic_scan(struct pci_access *);
43 int pci_generic_fill_info(struct pci_dev *, int flags);
44 int pci_generic_block_read(struct pci_dev *, int pos, byte *buf, int len);
45 int pci_generic_block_write(struct pci_dev *, int pos, byte *buf, int len);
46
47 /* init.c */
48 void *pci_malloc(struct pci_access *, int);
49 void pci_mfree(void *);
50 char *pci_strdup(struct pci_access *a, char *s);
51
52 /* access.c */
53 struct pci_dev *pci_alloc_dev(struct pci_access *);
54 int pci_link_dev(struct pci_access *, struct pci_dev *);
55
56 int pci_fill_info_v30(struct pci_dev *, int flags) PCI_ABI;
57 int pci_fill_info_v31(struct pci_dev *, int flags) PCI_ABI;
58
59 /* params.c */
60 void pci_define_param(struct pci_access *acc, char *param, char *val, char *help);
61 int pci_set_param_internal(struct pci_access *acc, char *param, char *val, int copy);
62 void pci_free_params(struct pci_access *acc);
63
64 /* caps.c */
65 unsigned int pci_scan_caps(struct pci_dev *, unsigned int want_fields);
66 void pci_free_caps(struct pci_dev *);
67
68 extern struct pci_methods pm_intel_conf1, pm_intel_conf2, pm_linux_proc,
69         pm_fbsd_device, pm_aix_device, pm_nbsd_libpci, pm_obsd_device,
70         pm_dump, pm_linux_sysfs;