]> mj.ucw.cz Git - pciutils.git/blob - lib/pci.h
Add and use PCI_FILL_CLASS.
[pciutils.git] / lib / pci.h
1 /*
2  *      The PCI Library
3  *
4  *      Copyright (c) 1997--2006 Martin Mares <mj@ucw.cz>
5  *
6  *      Can be freely distributed and used under the terms of the GNU GPL.
7  */
8
9 #ifndef _PCI_LIB_H
10 #define _PCI_LIB_H
11
12 #include "config.h"
13 #include "header.h"
14 #include "types.h"
15
16 #define PCI_LIB_VERSION 0x020200
17
18 /*
19  *      PCI Access Structure
20  */
21
22 struct pci_methods;
23
24 enum pci_access_type {
25   /* Known access methods, remember to update access.c as well */
26   PCI_ACCESS_AUTO,                      /* Autodetection (params: none) */
27   PCI_ACCESS_SYS_BUS_PCI,               /* Linux /sys/bus/pci (params: path) */
28   PCI_ACCESS_PROC_BUS_PCI,              /* Linux /proc/bus/pci (params: path) */
29   PCI_ACCESS_I386_TYPE1,                /* i386 ports, type 1 (params: none) */
30   PCI_ACCESS_I386_TYPE2,                /* i386 ports, type 2 (params: none) */
31   PCI_ACCESS_FBSD_DEVICE,               /* FreeBSD /dev/pci (params: path) */
32   PCI_ACCESS_AIX_DEVICE,                /* /dev/pci0, /dev/bus0, etc. */
33   PCI_ACCESS_NBSD_LIBPCI,               /* NetBSD libpci */
34   PCI_ACCESS_OBSD_DEVICE,               /* OpenBSD /dev/pci */
35   PCI_ACCESS_DUMP,                      /* Dump file (params: filename) */
36   PCI_ACCESS_MAX
37 };
38
39 struct pci_access {
40   /* Options you can change: */
41   unsigned int method;                  /* Access method */
42   char *method_params[PCI_ACCESS_MAX];  /* Parameters for the methods */
43   int writeable;                        /* Open in read/write mode */
44   int buscentric;                       /* Bus-centric view of the world */
45   char *id_file_name;                   /* Name of ID list file */
46   int numeric_ids;                      /* Enforce PCI_LOOKUP_NUMERIC (>1 => PCI_LOOKUP_MIXED) */
47   int debugging;                        /* Turn on debugging messages */
48
49   /* Functions you can override: */
50   void (*error)(char *msg, ...);        /* Write error message and quit */
51   void (*warning)(char *msg, ...);      /* Write a warning message */
52   void (*debug)(char *msg, ...);        /* Write a debugging message */
53
54   struct pci_dev *devices;              /* Devices found on this bus */
55
56   /* Fields used internally: */
57   struct pci_methods *methods;
58   struct id_entry **id_hash;            /* names.c */
59   struct id_bucket *current_id_bucket;
60   int hash_load_failed;
61   int fd;                               /* proc: fd */
62   int fd_rw;                            /* proc: fd opened read-write */
63   struct pci_dev *cached_dev;           /* proc: device the fd is for */
64   int fd_pos;                           /* proc: current position */
65 };
66
67 /* Initialize PCI access */
68 struct pci_access *pci_alloc(void);
69 void pci_init(struct pci_access *);
70 void pci_cleanup(struct pci_access *);
71
72 /* Scanning of devices */
73 void pci_scan_bus(struct pci_access *acc);
74 struct pci_dev *pci_get_dev(struct pci_access *acc, int domain, int bus, int dev, int func); /* Raw access to specified device */
75 void pci_free_dev(struct pci_dev *);
76
77 /*
78  *      Devices
79  */
80
81 struct pci_dev {
82   struct pci_dev *next;                 /* Next device in the chain */
83   u16 domain;                           /* PCI domain (host bridge) */
84   u8 bus, dev, func;                    /* Bus inside domain, device and function */
85
86   /* These fields are set by pci_fill_info() */
87   int known_fields;                     /* Set of info fields already known */
88   u16 vendor_id, device_id;             /* Identity of the device */
89   u16 device_class;                     /* PCI device class */
90   int irq;                              /* IRQ number */
91   pciaddr_t base_addr[6];               /* Base addresses */
92   pciaddr_t size[6];                    /* Region sizes */
93   pciaddr_t rom_base_addr;              /* Expansion ROM base address */
94   pciaddr_t rom_size;                   /* Expansion ROM size */
95
96   /* Fields used internally: */
97   struct pci_access *access;
98   struct pci_methods *methods;
99   u8 *cache;                            /* Cached config registers */
100   int cache_len;
101   int hdrtype;                          /* Cached low 7 bits of header type, -1 if unknown */
102   void *aux;                            /* Auxillary data */
103 };
104
105 #define PCI_ADDR_IO_MASK (~(pciaddr_t) 0x3)
106 #define PCI_ADDR_MEM_MASK (~(pciaddr_t) 0xf)
107
108 u8 pci_read_byte(struct pci_dev *, int pos); /* Access to configuration space */
109 u16 pci_read_word(struct pci_dev *, int pos);
110 u32  pci_read_long(struct pci_dev *, int pos);
111 int pci_read_block(struct pci_dev *, int pos, u8 *buf, int len);
112 int pci_write_byte(struct pci_dev *, int pos, u8 data);
113 int pci_write_word(struct pci_dev *, int pos, u16 data);
114 int pci_write_long(struct pci_dev *, int pos, u32 data);
115 int pci_write_block(struct pci_dev *, int pos, u8 *buf, int len);
116
117 int pci_fill_info(struct pci_dev *, int flags); /* Fill in device information */
118
119 #define PCI_FILL_IDENT          1
120 #define PCI_FILL_IRQ            2
121 #define PCI_FILL_BASES          4
122 #define PCI_FILL_ROM_BASE       8
123 #define PCI_FILL_SIZES          16
124 #define PCI_FILL_CLASS          32
125 #define PCI_FILL_RESCAN         0x10000
126
127 void pci_setup_cache(struct pci_dev *, u8 *cache, int len);
128
129 /*
130  *      Filters
131  */
132
133 struct pci_filter {
134   int domain, bus, slot, func;                  /* -1 = ANY */
135   int vendor, device;
136 };
137
138 void pci_filter_init(struct pci_access *, struct pci_filter *);
139 char *pci_filter_parse_slot(struct pci_filter *, char *);
140 char *pci_filter_parse_id(struct pci_filter *, char *);
141 int pci_filter_match(struct pci_filter *, struct pci_dev *);
142
143 /*
144  *      Conversion of PCI ID's to names (according to the pci.ids file)
145  *
146  *      Call pci_lookup_name() to identify different types of ID's:
147  *
148  *      VENDOR                          (vendorID) -> vendor
149  *      DEVICE                          (vendorID, deviceID) -> device
150  *      VENDOR | DEVICE                 (vendorID, deviceID) -> combined vendor and device
151  *      SUBSYSTEM | VENDOR              (subvendorID) -> subsystem vendor
152  *      SUBSYSTEM | DEVICE              (vendorID, deviceID, subvendorID, subdevID) -> subsystem device
153  *      SUBSYSTEM | VENDOR | DEVICE     (vendorID, deviceID, subvendorID, subdevID) -> combined subsystem v+d
154  *      SUBSYSTEM | ...                 (-1, -1, subvendorID, subdevID) -> generic subsystem
155  *      CLASS                           (classID) -> class
156  *      PROGIF                          (classID, progif) -> programming interface
157  */
158
159 char *pci_lookup_name(struct pci_access *a, char *buf, int size, int flags, ...);
160
161 int pci_load_name_list(struct pci_access *a);   /* Called automatically by pci_lookup_*() when needed; returns success */
162 void pci_free_name_list(struct pci_access *a);  /* Called automatically by pci_cleanup() */
163
164 enum pci_lookup_mode {
165   PCI_LOOKUP_VENDOR = 1,                /* Vendor name (args: vendorID) */
166   PCI_LOOKUP_DEVICE = 2,                /* Device name (args: vendorID, deviceID) */
167   PCI_LOOKUP_CLASS = 4,                 /* Device class (args: classID) */
168   PCI_LOOKUP_SUBSYSTEM = 8,
169   PCI_LOOKUP_PROGIF = 16,               /* Programming interface (args: classID, prog_if) */
170   PCI_LOOKUP_NUMERIC = 0x10000,         /* Want only formatted numbers; default if access->numeric_ids is set */
171   PCI_LOOKUP_NO_NUMBERS = 0x20000,      /* Return NULL if not found in the database; default is to print numerically */
172   PCI_LOOKUP_MIXED = 0x40000,           /* Include both numbers and names */
173 };
174
175 #endif