Home
last modified time | relevance | path

Searched refs:device (Results 1 – 25 of 27) sorted by relevance

12

/pciutils/
H A Dlspci.h36 struct device { struct
37 struct device *next; argument
40 struct device *bus_next; argument
50 extern struct device *first_dev; argument
53 struct device *scan_device(struct pci_dev *p);
54 void show_device(struct device *d);
63 void cap_vpd(struct device *d);
67 void show_caps(struct device *d, int where);
80 void show_kernel(struct device *d UNUSED);
91 struct device *br_dev;
[all …]
H A Dlspci.c85 struct device *first_dev;
118 struct device *
121 struct device *d; in scan_device()
156 struct device *d; in scan_devices()
236 struct device *d; in sort_them()
292 show_terse(struct device *d) in show_terse()
538 show_htype0(struct device *d) in show_htype0()
546 show_htype1(struct device *d) in show_htype1()
684 show_htype2(struct device *d) in show_htype2()
1078 show_device(struct device *d) in show_device()
[all …]
H A Dls-kernel.c62 static const char *next_module(struct device *d) in next_module()
104 unsigned int vendor, device; member
161 &e->vendor, &e->device, in show_kernel_init()
175 match_pcimap(struct device *d, struct pcimap_entry *e) in match_pcimap()
183 MATCH(dev->device_id, e->device) && in match_pcimap()
190 static const char *next_module(struct device *d) in next_module()
217 next_module_filtered(struct device *d) in next_module_filtered()
236 show_kernel(struct device *d) in show_kernel()
255 show_kernel_machine(struct device *d) in show_kernel_machine()
273 show_kernel(struct device *d) in show_kernel()
[all …]
H A Dls-ecaps.c17 cap_tph(struct device *d, int where) in cap_tph()
59 cap_ltr(struct device *d, int where) in cap_ltr()
82 cap_sec(struct device *d, int where) in cap_sec()
113 cap_dsn(struct device *d, int where) in cap_dsn()
266 cap_acs(struct device *d, int where) in cap_acs()
292 cap_ari(struct device *d, int where) in cap_ari()
314 cap_ats(struct device *d, int where) in cap_ats()
333 cap_pri(struct device *d, int where) in cap_pri()
511 cap_vc(struct device *d, int where) in cap_vc()
717 cap_lmr(struct device *d, int where) in cap_lmr()
[all …]
H A Dls-tree.c30 static struct device *
33 struct device *d; in find_device()
62 insert_dev(struct device *d, struct bridge *b) in insert_dev()
65 struct device *parent = NULL; in insert_dev()
111 struct device *d; in grow_tree()
180 struct device *parent = NULL; in grow_tree()
207 struct device *br_dev = b->br_dev; in grow_tree()
209 struct device *parent = NULL; in grow_tree()
333 check_dev_filter(struct pci_filter *filter, struct device *d) in check_dev_filter()
359 struct device *d; in check_bus_filter()
[all …]
H A Dls-caps.c18 cap_pm(struct device *d, int where, int cap) in cap_pm()
74 cap_agp(struct device *d, int where, int cap) in cap_agp()
120 cap_pcix_nobridge(struct device *d, int where) in cap_pcix_nobridge()
159 cap_pcix_bridge(struct device *d, int where) in cap_pcix_bridge()
204 cap_pcix(struct device *d, int where) in cap_pcix()
537 cap_ht(struct device *d, int where, int cmd) in cap_ht()
605 cap_msi(struct device *d, int where, int cap) in cap_msi()
1087 device_has_memory_space_bar(struct device *d) in device_has_memory_space_bar()
1589 cap_ssvid(struct device *d, int where) in cap_ssvid()
1613 cap_af(struct device *d, int where) in cap_af()
[all …]
H A DChangeLog25 * lspci decodes CXL 1.1 device link status information.
272 which occur multiple times in a single device.
294 through bridges to each device.
319 as device properties.
324 device, it is explicitly marked as "downgraded".
344 * The fbsd-device back-end should work again.
1057 header of a device, report it and ignore the device and return with exit
1810 or device hexadecimally, don't confuse it with chip vendor/device ID.
1868 device name.
2040 incorrectly set to device ID.
[all …]
H A Dls-caps-vendor.c17 show_vendor_caps_virtio(struct device *d, int where, int cap) in show_vendor_caps_virtio()
82 show_vendor_caps_intel(struct device *d, int where, int cap) in show_vendor_caps_intel()
233 do_show_vendor_caps(struct device *d, int where, int cap) in do_show_vendor_caps()
249 show_vendor_caps(struct device *d, int where, int cap) in show_vendor_caps()
H A Dls-vpd.c87 read_vpd(struct device *d, int pos, byte *buf, int len, byte *csum) in read_vpd()
97 cap_vpd(struct device *d) in cap_vpd()
H A Dls-map.c31 map_bridge(struct bus_info *bi, struct device *d, int np, int ns, int nl) in map_bridge()
61 struct device *d; in do_map_bus()
H A DTODO15 - Secure device
H A DREADME46 - setpci: allows to read from and write to PCI device configuration
114 database is consulted when pci.ids lacks the device.
H A Dsetpci.c72 struct pci_dev **devs = xmalloc(sizeof(struct device *) * 2); in select_devices()
90 devs = xmalloc(sizeof(struct device *) * cnt); in select_devices()
/pciutils/lib/
H A Daos-expansion.c97 struct PCIDevice *device = NULL; in aos_expansion_detect() local
104 device = pci->ipci->FindDeviceTags(FDT_Index, 0); in aos_expansion_detect()
105 if(NULL == device) { in aos_expansion_detect()
109 pci->ipci->FreeDevice(device); in aos_expansion_detect()
138 struct PCIDevice *device = NULL; in aos_expansion_scan() local
149 device = pci->ipci->FindDeviceTags(FDT_Index, found_devs); in aos_expansion_scan()
150 while (device) { in aos_expansion_scan()
153 device->GetAddress(&bus_num, &dev_num, &fn_num); in aos_expansion_scan()
157 d->backend_data = device; in aos_expansion_scan()
158 d->vendor_id = device->ReadConfigWord(PCI_VENDOR_ID); in aos_expansion_scan()
[all …]
H A DMakefile36 OBJS += fbsd-device
44 OBJS += obsd-device
48 OBJS += aix-device
60 OBJS += sylixos-device
157 obsd-device.o: obsd-device.c $(INCL)
158 fbsd-device.o: fbsd-device.c $(INCL)
159 aix-device.o: aix-device.c $(INCL)
H A Dfilter.c26 f->vendor = f->device = -1; in pci_filter_init_v38()
185 if (!parse_hex_field(fields[1], &f->device, NULL, 0xffff)) in pci_filter_parse_id_v38()
205 if (f->device >= 0 || f->vendor >= 0) in pci_filter_match_v38()
208 if ((f->device >= 0 && f->device != d->device_id) || in pci_filter_match_v38()
234 int vendor, device; member
250 new->device = old->device; in pci_filter_import_v30()
264 old->device = new->device; in pci_filter_export_v30()
H A Ddarwin.c52 unsigned int device :5; member
127 param.address.pci.device = d->dev; in darwin_read()
171 param.address.pci.device = d->dev; in darwin_write()
H A Di386-io-haiku.h54 uint8 device; member
H A Dphysmem-windows.c143 #define WIN32_SERVICE_ID(device, function) (((device) << 16) | (function)) argument
H A Dpci.h270 int vendor, device; member
/pciutils/tests/
H A Dcap-vendor-virtio1 00:09.0 Ethernet controller: Red Hat, Inc Virtio network device
2 Subsystem: Red Hat, Inc Virtio network device
H A DPCI-X-bridges-and-domains1 0000:00:01.0 Co-processor: IBM: Unknown device 00e0 (rev 01)
H A Dtree-fujitsu-p8010349 00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
H A Dtree-asus-p6t61933 00:1b.0 Audio device: Intel Corporation 82801JI (ICH10 Family) HD Audio Controller
4399 06:00.1 Audio device: NVIDIA Corporation High Definition Audio Controller (rev a1)
/pciutils/lmr/
H A Dmargin_hw.c26 u16 device = pci_read_word(dev, PCI_DEVICE_ID); in detect_unique_hw() local
31 if (vendor == special_hw[i][0] && device == special_hw[i][1] && revision == special_hw[i][2]) in detect_unique_hw()

12