2 * The PCI Library -- Internal Stuff
4 * Copyright (c) 1997--2008 Martin Mares <mj@ucw.cz>
6 * Can be freely distributed and used under the terms of the GNU GPL.
12 #define PCI_ABI __attribute__((visibility("default")))
14 #define STATIC_ALIAS(_decl, _for) _decl { return _for; }
16 #define STATIC_ALIAS(_decl, _for)
18 #define DEFINE_ALIAS(_decl, _for) extern _decl __attribute__((alias(#_for)))
19 #define SYMBOL_VERSION(_int, _ext) asm(".symver " #_int "," #_ext)
21 #define STATIC_ALIAS(_decl, _for) _decl { return _for; }
22 #define DEFINE_ALIAS(_decl, _for)
23 #define SYMBOL_VERSION(_int, _ext)
32 void (*config)(struct pci_access *);
33 int (*detect)(struct pci_access *);
34 void (*init)(struct pci_access *);
35 void (*cleanup)(struct pci_access *);
36 void (*scan)(struct pci_access *);
37 int (*fill_info)(struct pci_dev *, int flags);
38 int (*read)(struct pci_dev *, int pos, byte *buf, int len);
39 int (*write)(struct pci_dev *, int pos, byte *buf, int len);
40 int (*read_vpd)(struct pci_dev *, int pos, byte *buf, int len);
41 void (*init_dev)(struct pci_dev *);
42 void (*cleanup_dev)(struct pci_dev *);
46 void pci_generic_scan_bus(struct pci_access *, byte *busmap, int bus);
47 void pci_generic_scan(struct pci_access *);
48 int pci_generic_fill_info(struct pci_dev *, int flags);
49 int pci_generic_block_read(struct pci_dev *, int pos, byte *buf, int len);
50 int pci_generic_block_write(struct pci_dev *, int pos, byte *buf, int len);
53 void *pci_malloc(struct pci_access *, int);
54 void pci_mfree(void *);
55 char *pci_strdup(struct pci_access *a, char *s);
58 struct pci_dev *pci_alloc_dev(struct pci_access *);
59 int pci_link_dev(struct pci_access *, struct pci_dev *);
61 int pci_fill_info_v30(struct pci_dev *, int flags) PCI_ABI;
62 int pci_fill_info_v31(struct pci_dev *, int flags) PCI_ABI;
63 int pci_fill_info_v32(struct pci_dev *, int flags) PCI_ABI;
66 void pci_define_param(struct pci_access *acc, char *param, char *val, char *help);
67 int pci_set_param_internal(struct pci_access *acc, char *param, char *val, int copy);
68 void pci_free_params(struct pci_access *acc);
71 unsigned int pci_scan_caps(struct pci_dev *, unsigned int want_fields);
72 void pci_free_caps(struct pci_dev *);
74 extern struct pci_methods pm_intel_conf1, pm_intel_conf2, pm_linux_proc,
75 pm_fbsd_device, pm_aix_device, pm_nbsd_libpci, pm_obsd_device,
76 pm_dump, pm_linux_sysfs, pm_darwin_device;