]> git.ipfire.org Git - thirdparty/pciutils.git/blob - lib/pci.h
ls-ecaps: extend decode support for more fields for AER CE and UE status
[thirdparty/pciutils.git] / lib / pci.h
1 /*
2 * The PCI Library
3 *
4 * Copyright (c) 1997--2024 Martin Mares <mj@ucw.cz>
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL v2+
7 *
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11 #ifndef _PCI_LIB_H
12 #define _PCI_LIB_H
13
14 #ifndef PCI_CONFIG_H
15 #include "config.h"
16 #endif
17
18 #include "header.h"
19 #include "types.h"
20
21 #define PCI_LIB_VERSION 0x030c00
22
23 #ifndef PCI_ABI
24 #define PCI_ABI
25 #endif
26
27 /*
28 * PCI Access Structure
29 */
30
31 struct pci_methods;
32
33 enum pci_access_type {
34 /* Known access methods, remember to update init.c as well */
35 PCI_ACCESS_AUTO, /* Autodetection */
36 PCI_ACCESS_SYS_BUS_PCI, /* Linux /sys/bus/pci */
37 PCI_ACCESS_PROC_BUS_PCI, /* Linux /proc/bus/pci */
38 PCI_ACCESS_I386_TYPE1, /* i386 ports, type 1 */
39 PCI_ACCESS_I386_TYPE2, /* i386 ports, type 2 */
40 PCI_ACCESS_FBSD_DEVICE, /* FreeBSD /dev/pci */
41 PCI_ACCESS_AIX_DEVICE, /* /dev/pci0, /dev/bus0, etc. */
42 PCI_ACCESS_NBSD_LIBPCI, /* NetBSD libpci */
43 PCI_ACCESS_OBSD_DEVICE, /* OpenBSD /dev/pci */
44 PCI_ACCESS_DUMP, /* Dump file */
45 PCI_ACCESS_DARWIN, /* Darwin */
46 PCI_ACCESS_SYLIXOS_DEVICE, /* SylixOS pci */
47 PCI_ACCESS_HURD, /* GNU/Hurd */
48 PCI_ACCESS_WIN32_CFGMGR32, /* Win32 cfgmgr32.dll */
49 PCI_ACCESS_WIN32_KLDBG, /* Win32 kldbgdrv.sys */
50 PCI_ACCESS_WIN32_SYSDBG, /* Win32 NT SysDbg */
51 PCI_ACCESS_MMIO_TYPE1, /* MMIO ports, type 1 */
52 PCI_ACCESS_MMIO_TYPE1_EXT, /* MMIO ports, type 1 extended */
53 PCI_ACCESS_ECAM, /* PCIe ECAM via /dev/mem */
54 PCI_ACCESS_AOS_EXPANSION, /* AmigaOS Expansion library */
55 PCI_ACCESS_MAX
56 };
57
58 struct pci_access {
59 /* Options you can change: */
60 unsigned int method; /* Access method */
61 int writeable; /* Open in read/write mode */
62 int buscentric; /* Bus-centric view of the world */
63
64 char *id_file_name; /* Name of ID list file (use pci_set_name_list_path()) */
65 int free_id_name; /* Set if id_file_name is malloced */
66 int numeric_ids; /* Enforce PCI_LOOKUP_NUMERIC (>1 => PCI_LOOKUP_MIXED) */
67
68 unsigned int id_lookup_mode; /* pci_lookup_mode flags which are set automatically */
69 /* Default: PCI_LOOKUP_CACHE */
70
71 int debugging; /* Turn on debugging messages */
72
73 /* Functions you can override: */
74 void (*error)(char *msg, ...) PCI_PRINTF(1,2) PCI_NONRET; /* Write error message and quit */
75 void (*warning)(char *msg, ...) PCI_PRINTF(1,2); /* Write a warning message */
76 void (*debug)(char *msg, ...) PCI_PRINTF(1,2); /* Write a debugging message */
77
78 struct pci_dev *devices; /* Devices found on this bus */
79
80 /* Fields used internally: */
81 struct pci_methods *methods;
82 struct pci_param *params;
83 struct id_entry **id_hash; /* names.c */
84 struct id_bucket *current_id_bucket;
85 int id_load_attempted;
86 int id_cache_status; /* 0=not read, 1=read, 2=dirty */
87 char *id_cache_name;
88 struct udev *id_udev; /* names-hwdb.c */
89 struct udev_hwdb *id_udev_hwdb;
90 int fd; /* proc/sys: fd for config space */
91 int fd_rw; /* proc/sys: fd opened read-write */
92 int fd_vpd; /* sys: fd for VPD */
93 struct pci_dev *cached_dev; /* proc/sys: device the fds are for */
94 void *backend_data; /* Private data of the back end */
95 };
96
97 /* Initialize PCI access */
98 struct pci_access *pci_alloc(void) PCI_ABI;
99 void pci_init(struct pci_access *) PCI_ABI;
100 void pci_cleanup(struct pci_access *) PCI_ABI;
101
102 /* Scanning of devices */
103 void pci_scan_bus(struct pci_access *acc) PCI_ABI;
104 struct pci_dev *pci_get_dev(struct pci_access *acc, int domain, int bus, int dev, int func) PCI_ABI; /* Raw access to specified device */
105 void pci_free_dev(struct pci_dev *) PCI_ABI;
106
107 /* Names of access methods */
108 int pci_lookup_method(char *name) PCI_ABI; /* Returns -1 if not found */
109 char *pci_get_method_name(int index) PCI_ABI; /* Returns "" if unavailable, NULL if index out of range */
110
111 /*
112 * Named parameters
113 */
114
115 struct pci_param {
116 struct pci_param *next; /* Please use pci_walk_params() for traversing the list */
117 char *param; /* Name of the parameter */
118 char *value; /* Value of the parameter */
119 int value_malloced; /* used internally */
120 char *help; /* Explanation of the parameter */
121 };
122
123 char *pci_get_param(struct pci_access *acc, char *param) PCI_ABI;
124 int pci_set_param(struct pci_access *acc, char *param, char *value) PCI_ABI; /* 0 on success, -1 if no such parameter */
125 /* To traverse the list, call pci_walk_params repeatedly, first with prev=NULL, and do not modify the parameters during traversal. */
126 struct pci_param *pci_walk_params(struct pci_access *acc, struct pci_param *prev) PCI_ABI;
127
128 /*
129 * Devices
130 */
131
132 struct pci_dev {
133 struct pci_dev *next; /* Next device in the chain */
134 u16 domain_16; /* 16-bit version of the PCI domain for backward compatibility */
135 /* 0xffff if the real domain doesn't fit in 16 bits */
136 u8 bus, dev, func; /* Bus inside domain, device and function */
137
138 /* These fields are set by pci_fill_info() */
139 unsigned int known_fields; /* Set of info fields already known (see pci_fill_info()) */
140 u16 vendor_id, device_id; /* Identity of the device */
141 u16 device_class; /* PCI device class */
142 int irq; /* IRQ number */
143 pciaddr_t base_addr[6]; /* Base addresses including flags in lower bits */
144 pciaddr_t size[6]; /* Region sizes */
145 pciaddr_t rom_base_addr; /* Expansion ROM base address */
146 pciaddr_t rom_size; /* Expansion ROM size */
147 struct pci_cap *first_cap; /* List of capabilities */
148 char *phy_slot; /* Physical slot */
149 char *module_alias; /* Linux kernel module alias */
150 char *label; /* Device name as exported by BIOS */
151 int numa_node; /* NUMA node */
152 pciaddr_t flags[6]; /* PCI_IORESOURCE_* flags for regions */
153 pciaddr_t rom_flags; /* PCI_IORESOURCE_* flags for expansion ROM */
154 int domain; /* PCI domain (host bridge) */
155 pciaddr_t bridge_base_addr[4]; /* Bridge base addresses (without flags) */
156 pciaddr_t bridge_size[4]; /* Bridge sizes */
157 pciaddr_t bridge_flags[4]; /* PCI_IORESOURCE_* flags for bridge addresses */
158 u8 prog_if, rev_id; /* Programming interface for device_class and revision id */
159 u16 subsys_vendor_id, subsys_id; /* Subsystem vendor id and subsystem id */
160 struct pci_dev *parent; /* Parent device, does not have to be always accessible */
161 int no_config_access; /* No access to config space for this device */
162
163 /* Fields used internally */
164 struct pci_access *access;
165 struct pci_methods *methods;
166 u8 *cache; /* Cached config registers */
167 int cache_len;
168 int hdrtype; /* Cached low 7 bits of header type, -1 if unknown */
169 void *backend_data; /* Private data for of the back end */
170 struct pci_property *properties; /* A linked list of extra properties */
171 struct pci_cap *last_cap; /* Last capability in the list */
172 };
173
174 #define PCI_ADDR_IO_MASK (~(pciaddr_t) 0x3)
175 #define PCI_ADDR_MEM_MASK (~(pciaddr_t) 0xf)
176 #define PCI_ADDR_FLAG_MASK 0xf
177
178 /* Access to configuration space */
179 u8 pci_read_byte(struct pci_dev *, int pos) PCI_ABI;
180 u16 pci_read_word(struct pci_dev *, int pos) PCI_ABI;
181 u32 pci_read_long(struct pci_dev *, int pos) PCI_ABI;
182 int pci_read_vpd(struct pci_dev *d, int pos, u8 *buf, int len) PCI_ABI;
183 int pci_write_byte(struct pci_dev *, int pos, u8 data) PCI_ABI;
184 int pci_write_word(struct pci_dev *, int pos, u16 data) PCI_ABI;
185 int pci_write_long(struct pci_dev *, int pos, u32 data) PCI_ABI;
186
187 /* Configuration space as a sequence of bytes (little-endian) */
188 int pci_read_block(struct pci_dev *, int pos, u8 *buf, int len) PCI_ABI;
189 int pci_write_block(struct pci_dev *, int pos, u8 *buf, int len) PCI_ABI;
190
191 /*
192 * Most device properties take some effort to obtain, so libpci does not
193 * initialize them during default bus scan. Instead, you have to call
194 * pci_fill_info() with the proper PCI_FILL_xxx constants OR'ed together.
195 *
196 * Some properties are stored directly in the pci_dev structure.
197 * The remaining ones can be accessed through pci_get_string_property().
198 *
199 * pci_fill_info() returns the current value of pci_dev->known_fields.
200 * This is a bit mask of all fields, which were already obtained during
201 * the lifetime of the device. This includes fields which are not supported
202 * by the particular device -- in that case, the field is left at its default
203 * value, which is 0 for integer fields and NULL for pointers. On the other
204 * hand, we never consider known fields unsupported by the current back-end;
205 * such fields always contain the default value.
206 *
207 * XXX: flags and the result should be unsigned, but we do not want to break the ABI.
208 */
209
210 int pci_fill_info(struct pci_dev *, int flags) PCI_ABI;
211 char *pci_get_string_property(struct pci_dev *d, u32 prop) PCI_ABI;
212
213 #define PCI_FILL_IDENT 0x0001 /* vendor and device ID */
214 #define PCI_FILL_IRQ 0x0002
215 #define PCI_FILL_BASES 0x0004
216 #define PCI_FILL_ROM_BASE 0x0008
217 #define PCI_FILL_SIZES 0x0010
218 #define PCI_FILL_CLASS 0x0020
219 #define PCI_FILL_CAPS 0x0040 /* capabilities */
220 #define PCI_FILL_EXT_CAPS 0x0080 /* extended capabilities */
221 #define PCI_FILL_PHYS_SLOT 0x0100 /* physical slot (string property) */
222 #define PCI_FILL_MODULE_ALIAS 0x0200 /* Linux kernel module alias (string property) */
223 #define PCI_FILL_LABEL 0x0400 /* (string property) */
224 #define PCI_FILL_NUMA_NODE 0x0800
225 #define PCI_FILL_IO_FLAGS 0x1000
226 #define PCI_FILL_DT_NODE 0x2000 /* Device tree node (string property) */
227 #define PCI_FILL_IOMMU_GROUP 0x4000 /* (string property) */
228 #define PCI_FILL_BRIDGE_BASES 0x8000
229 #define PCI_FILL_RESCAN 0x00010000 /* force re-scan of cached properties */
230 #define PCI_FILL_CLASS_EXT 0x00020000 /* prog_if and rev_id */
231 #define PCI_FILL_SUBSYS 0x00040000 /* subsys_vendor_id and subsys_id */
232 #define PCI_FILL_PARENT 0x00080000
233 #define PCI_FILL_DRIVER 0x00100000 /* OS driver currently in use (string property) */
234
235 void pci_setup_cache(struct pci_dev *, u8 *cache, int len) PCI_ABI;
236
237 /*
238 * Capabilities
239 */
240
241 struct pci_cap {
242 struct pci_cap *next;
243 u16 id; /* PCI_CAP_ID_xxx */
244 u16 type; /* PCI_CAP_xxx */
245 unsigned int addr; /* Position in the config space */
246 };
247
248 #define PCI_CAP_NORMAL 1 /* Traditional PCI capabilities */
249 #define PCI_CAP_EXTENDED 2 /* PCIe extended capabilities */
250
251 struct pci_cap *pci_find_cap(struct pci_dev *, unsigned int id, unsigned int type) PCI_ABI;
252 struct pci_cap *pci_find_cap_nr(struct pci_dev *, unsigned int id, unsigned int type,
253 unsigned int *cap_number) PCI_ABI;
254
255 /*
256 * Filters
257 */
258
259 struct pci_filter {
260 int domain, bus, slot, func; /* -1 = ANY */
261 int vendor, device;
262 int device_class;
263 unsigned int device_class_mask; /* Which bits of the device_class are compared, default=all */
264 int prog_if;
265 int rfu[1];
266 };
267
268 void pci_filter_init(struct pci_access *, struct pci_filter *) PCI_ABI;
269 char *pci_filter_parse_slot(struct pci_filter *, char *) PCI_ABI;
270 char *pci_filter_parse_id(struct pci_filter *, char *) PCI_ABI;
271 int pci_filter_match(struct pci_filter *, struct pci_dev *) PCI_ABI;
272
273 /*
274 * Conversion of PCI ID's to names (according to the pci.ids file)
275 *
276 * Call pci_lookup_name() to identify different types of ID's:
277 *
278 * VENDOR (vendorID) -> vendor
279 * DEVICE (vendorID, deviceID) -> device
280 * VENDOR | DEVICE (vendorID, deviceID) -> combined vendor and device
281 * SUBSYSTEM | VENDOR (subvendorID) -> subsystem vendor
282 * SUBSYSTEM | DEVICE (vendorID, deviceID, subvendorID, subdevID) -> subsystem device
283 * SUBSYSTEM | VENDOR | DEVICE (vendorID, deviceID, subvendorID, subdevID) -> combined subsystem v+d
284 * SUBSYSTEM | ... (-1, -1, subvendorID, subdevID) -> generic subsystem
285 * CLASS (classID) -> class
286 * PROGIF (classID, progif) -> programming interface
287 */
288
289 char *pci_lookup_name(struct pci_access *a, char *buf, int size, int flags, ...) PCI_ABI;
290
291 int pci_load_name_list(struct pci_access *a) PCI_ABI; /* Called automatically by pci_lookup_*() when needed; returns success */
292 void pci_free_name_list(struct pci_access *a) PCI_ABI; /* Called automatically by pci_cleanup() */
293 void pci_set_name_list_path(struct pci_access *a, char *name, int to_be_freed) PCI_ABI;
294 void pci_id_cache_flush(struct pci_access *a) PCI_ABI;
295
296 enum pci_lookup_mode {
297 PCI_LOOKUP_VENDOR = 1, /* Vendor name (args: vendorID) */
298 PCI_LOOKUP_DEVICE = 2, /* Device name (args: vendorID, deviceID) */
299 PCI_LOOKUP_CLASS = 4, /* Device class (args: classID) */
300 PCI_LOOKUP_SUBSYSTEM = 8,
301 PCI_LOOKUP_PROGIF = 16, /* Programming interface (args: classID, prog_if) */
302 PCI_LOOKUP_NUMERIC = 0x10000, /* Want only formatted numbers; default if access->numeric_ids is set */
303 PCI_LOOKUP_NO_NUMBERS = 0x20000, /* Return NULL if not found in the database; default is to print numerically */
304 PCI_LOOKUP_MIXED = 0x40000, /* Include both numbers and names */
305 PCI_LOOKUP_NETWORK = 0x80000, /* Try to resolve unknown ID's by DNS */
306 PCI_LOOKUP_SKIP_LOCAL = 0x100000, /* Do not consult local database */
307 PCI_LOOKUP_CACHE = 0x200000, /* Consult the local cache before using DNS */
308 PCI_LOOKUP_REFRESH_CACHE = 0x400000, /* Forget all previously cached entries, but still allow updating the cache */
309 PCI_LOOKUP_NO_HWDB = 0x800000, /* Do not ask udev's hwdb */
310 };
311
312 #endif