]> mj.ucw.cz Git - pciutils.git/blob - lib/internal.h
Bump the API version (the new API is not cast in stone yet, however).
[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 "pci.h"
10 #include "sysdep.h"
11
12 struct pci_methods {
13   char *name;
14   char *help;
15   void (*config)(struct pci_access *);
16   int (*detect)(struct pci_access *);
17   void (*init)(struct pci_access *);
18   void (*cleanup)(struct pci_access *);
19   void (*scan)(struct pci_access *);
20   int (*fill_info)(struct pci_dev *, int flags);
21   int (*read)(struct pci_dev *, int pos, byte *buf, int len);
22   int (*write)(struct pci_dev *, int pos, byte *buf, int len);
23   void (*init_dev)(struct pci_dev *);
24   void (*cleanup_dev)(struct pci_dev *);
25 };
26
27 void pci_generic_scan_bus(struct pci_access *, byte *busmap, int bus);
28 void pci_generic_scan(struct pci_access *);
29 int pci_generic_fill_info(struct pci_dev *, int flags);
30 int pci_generic_block_read(struct pci_dev *, int pos, byte *buf, int len);
31 int pci_generic_block_write(struct pci_dev *, int pos, byte *buf, int len);
32
33 void *pci_malloc(struct pci_access *, int);
34 void pci_mfree(void *);
35 char *pci_strdup(struct pci_access *a, char *s);
36
37 struct pci_dev *pci_alloc_dev(struct pci_access *);
38 int pci_link_dev(struct pci_access *, struct pci_dev *);
39
40 void pci_define_param(struct pci_access *acc, char *param, char *val, char *help);
41 int pci_set_param_internal(struct pci_access *acc, char *param, char *val, int copy);
42 void pci_free_params(struct pci_access *acc);
43
44 extern struct pci_methods pm_intel_conf1, pm_intel_conf2, pm_linux_proc,
45         pm_fbsd_device, pm_aix_device, pm_nbsd_libpci, pm_obsd_device,
46         pm_dump, pm_linux_sysfs;