2 * The PCI Utilities -- List All PCI Devices
4 * Copyright (c) 1997--2018 Martin Mares <mj@ucw.cz>
6 * Can be freely distributed and used under the terms of the GNU GPL.
13 * If we aren't being compiled by GCC, use xmalloc() instead of alloca().
14 * This increases our memory footprint, but only slightly since we don't
17 #if defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__) || defined (__DragonFly__) || defined (__DJGPP__)
18 /* alloca() is defined in stdlib.h */
19 #elif defined(__GNUC__) && !defined(PCI_OS_WINDOWS)
23 #define alloca xmalloc
29 extern struct pci_filter filter;
30 extern char *opt_pcimap;
32 /*** PCI devices and access to their config space ***/
37 /* Bus topology calculated by grow_tree() */
38 struct device *bus_next;
39 struct bus *parent_bus;
40 struct bridge *bridge;
42 unsigned int config_cached, config_bufsize;
43 byte *config; /* Cached configuration space data */
44 byte *present; /* Maps which configuration bytes are present */
47 extern struct device *first_dev;
48 extern struct pci_access *pacc;
50 struct device *scan_device(struct pci_dev *p);
51 void show_device(struct device *d);
53 int config_fetch(struct device *d, unsigned int pos, unsigned int len);
54 u32 get_conf_long(struct device *d, unsigned int pos);
55 word get_conf_word(struct device *d, unsigned int pos);
56 byte get_conf_byte(struct device *d, unsigned int pos);
58 void get_subid(struct device *d, word *subvp, word *subdp);
60 /* Useful macros for decoding of bits and bit fields */
62 #define FLAG(x,y) ((x & y) ? '+' : '-')
63 #define BITS(x,at,width) (((x) >> (at)) & ((1 << (width)) - 1))
64 #define TABLE(tab,x,buf) ((x) < sizeof(tab)/sizeof((tab)[0]) ? (tab)[x] : (sprintf((buf), "??%d", (x)), (buf)))
68 void cap_vpd(struct device *d);
72 void show_caps(struct device *d, int where);
76 void show_ext_caps(struct device *d, int type);
78 /* ls-caps-vendor.c */
80 void show_vendor_caps(struct device *d, int where, int cap);
84 void show_kernel_machine(struct device *d UNUSED);
85 void show_kernel(struct device *d UNUSED);
86 void show_kernel_cleanup(void);
91 struct bridge *chain; /* Single-linked list of bridges */
92 struct bridge *next, *child; /* Tree of bridges */
93 struct bus *first_bus; /* List of buses connected to this bridge */
95 unsigned int primary, secondary, subordinate; /* Bus numbers */
96 struct device *br_dev;
103 struct bridge *parent_bridge;
104 struct device *first_dev, **last_dev;
107 extern struct bridge host_bridge;
109 void grow_tree(void);
110 void show_forest(void);
114 void map_the_bus(void);