4 * Copyright (c) 1997--2008 Martin Mares <mj@ucw.cz>
6 * Can be freely distributed and used under the terms of the GNU GPL.
16 #define PCI_LIB_VERSION 0x020204 /* FIXME: Update */
19 * PCI Access Structure
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) */
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 */
46 char *id_file_name; /* Name of ID list file (use pci_set_name_list_path()) */
47 int free_id_name; /* Set if id_file_name is malloced */
48 int numeric_ids; /* Enforce PCI_LOOKUP_NUMERIC (>1 => PCI_LOOKUP_MIXED) */
50 unsigned int id_lookup_mode; /* pci_lookup_mode flags which are set automatically */
51 /* Default: PCI_LOOKUP_CACHE */
52 char *id_domain; /* DNS domain used for the lookups (use pci_set_net_domain()) */
53 int free_id_domain; /* Set if id_domain is malloced */
54 char *id_cache_file; /* Name of the ID cache file (use pci_set_net_cache()) */
55 int free_id_cache_file; /* Set if id_cache_file is malloced */
57 int debugging; /* Turn on debugging messages */
59 /* Functions you can override: */
60 void (*error)(char *msg, ...); /* Write error message and quit */
61 void (*warning)(char *msg, ...); /* Write a warning message */
62 void (*debug)(char *msg, ...); /* Write a debugging message */
64 struct pci_dev *devices; /* Devices found on this bus */
66 /* Fields used internally: */
67 struct pci_methods *methods;
68 struct id_entry **id_hash; /* names.c */
69 struct id_bucket *current_id_bucket;
71 int id_cache_status; /* 0=not read, 1=read, 2=dirty */
72 int fd; /* proc: fd */
73 int fd_rw; /* proc: fd opened read-write */
74 struct pci_dev *cached_dev; /* proc: device the fd is for */
75 int fd_pos; /* proc: current position */
78 /* Initialize PCI access */
79 struct pci_access *pci_alloc(void);
80 void pci_init(struct pci_access *);
81 void pci_cleanup(struct pci_access *);
83 /* Scanning of devices */
84 void pci_scan_bus(struct pci_access *acc);
85 struct pci_dev *pci_get_dev(struct pci_access *acc, int domain, int bus, int dev, int func); /* Raw access to specified device */
86 void pci_free_dev(struct pci_dev *);
93 struct pci_dev *next; /* Next device in the chain */
94 u16 domain; /* PCI domain (host bridge) */
95 u8 bus, dev, func; /* Bus inside domain, device and function */
97 /* These fields are set by pci_fill_info() */
98 int known_fields; /* Set of info fields already known */
99 u16 vendor_id, device_id; /* Identity of the device */
100 u16 device_class; /* PCI device class */
101 int irq; /* IRQ number */
102 pciaddr_t base_addr[6]; /* Base addresses */
103 pciaddr_t size[6]; /* Region sizes */
104 pciaddr_t rom_base_addr; /* Expansion ROM base address */
105 pciaddr_t rom_size; /* Expansion ROM size */
107 /* Fields used internally: */
108 struct pci_access *access;
109 struct pci_methods *methods;
110 u8 *cache; /* Cached config registers */
112 int hdrtype; /* Cached low 7 bits of header type, -1 if unknown */
113 void *aux; /* Auxillary data */
116 #define PCI_ADDR_IO_MASK (~(pciaddr_t) 0x3)
117 #define PCI_ADDR_MEM_MASK (~(pciaddr_t) 0xf)
119 u8 pci_read_byte(struct pci_dev *, int pos); /* Access to configuration space */
120 u16 pci_read_word(struct pci_dev *, int pos);
121 u32 pci_read_long(struct pci_dev *, int pos);
122 int pci_read_block(struct pci_dev *, int pos, u8 *buf, int len);
123 int pci_write_byte(struct pci_dev *, int pos, u8 data);
124 int pci_write_word(struct pci_dev *, int pos, u16 data);
125 int pci_write_long(struct pci_dev *, int pos, u32 data);
126 int pci_write_block(struct pci_dev *, int pos, u8 *buf, int len);
128 int pci_fill_info(struct pci_dev *, int flags); /* Fill in device information */
130 #define PCI_FILL_IDENT 1
131 #define PCI_FILL_IRQ 2
132 #define PCI_FILL_BASES 4
133 #define PCI_FILL_ROM_BASE 8
134 #define PCI_FILL_SIZES 16
135 #define PCI_FILL_CLASS 32
136 #define PCI_FILL_RESCAN 0x10000
138 void pci_setup_cache(struct pci_dev *, u8 *cache, int len);
145 int domain, bus, slot, func; /* -1 = ANY */
149 void pci_filter_init(struct pci_access *, struct pci_filter *);
150 char *pci_filter_parse_slot(struct pci_filter *, char *);
151 char *pci_filter_parse_id(struct pci_filter *, char *);
152 int pci_filter_match(struct pci_filter *, struct pci_dev *);
155 * Conversion of PCI ID's to names (according to the pci.ids file)
157 * Call pci_lookup_name() to identify different types of ID's:
159 * VENDOR (vendorID) -> vendor
160 * DEVICE (vendorID, deviceID) -> device
161 * VENDOR | DEVICE (vendorID, deviceID) -> combined vendor and device
162 * SUBSYSTEM | VENDOR (subvendorID) -> subsystem vendor
163 * SUBSYSTEM | DEVICE (vendorID, deviceID, subvendorID, subdevID) -> subsystem device
164 * SUBSYSTEM | VENDOR | DEVICE (vendorID, deviceID, subvendorID, subdevID) -> combined subsystem v+d
165 * SUBSYSTEM | ... (-1, -1, subvendorID, subdevID) -> generic subsystem
166 * CLASS (classID) -> class
167 * PROGIF (classID, progif) -> programming interface
170 char *pci_lookup_name(struct pci_access *a, char *buf, int size, int flags, ...);
172 int pci_load_name_list(struct pci_access *a); /* Called automatically by pci_lookup_*() when needed; returns success */
173 void pci_free_name_list(struct pci_access *a); /* Called automatically by pci_cleanup() */
174 void pci_set_name_list_path(struct pci_access *a, char *name, int to_be_freed);
175 void pci_set_net_domain(struct pci_access *a, char *name, int to_be_freed);
176 void pci_set_id_cache(struct pci_access *a, char *name, int to_be_freed);
177 void pci_id_cache_flush(struct pci_access *a);
179 enum pci_lookup_mode {
180 PCI_LOOKUP_VENDOR = 1, /* Vendor name (args: vendorID) */
181 PCI_LOOKUP_DEVICE = 2, /* Device name (args: vendorID, deviceID) */
182 PCI_LOOKUP_CLASS = 4, /* Device class (args: classID) */
183 PCI_LOOKUP_SUBSYSTEM = 8,
184 PCI_LOOKUP_PROGIF = 16, /* Programming interface (args: classID, prog_if) */
185 PCI_LOOKUP_NUMERIC = 0x10000, /* Want only formatted numbers; default if access->numeric_ids is set */
186 PCI_LOOKUP_NO_NUMBERS = 0x20000, /* Return NULL if not found in the database; default is to print numerically */
187 PCI_LOOKUP_MIXED = 0x40000, /* Include both numbers and names */
188 PCI_LOOKUP_NETWORK = 0x80000, /* Try to resolve unknown ID's by DNS */
189 PCI_LOOKUP_SKIP_LOCAL = 0x100000, /* Do not consult local database */
190 PCI_LOOKUP_CACHE = 0x200000, /* Consult the local cache before using DNS */
191 PCI_LOOKUP_REFRESH_CACHE = 0x400000, /* Forget all previously cached entries, but still allow updating the cache */