Home
last modified time | relevance | path

Searched refs:slot (Results 1 – 9 of 9) sorted by relevance

/pciutils/lib/
H A Dfilter.c25 f->domain = f->bus = f->slot = f->func = -1; in pci_filter_init_v38()
157 if (!parse_hex_field(sfields[0], &f->slot, NULL, 0x1f)) in pci_filter_parse_slot_v38()
202 (f->slot >= 0 && f->slot != d->dev) || in pci_filter_match_v38()
233 int domain, bus, slot, func; /* -1 = ANY */ member
247 new->slot = old->slot; in pci_filter_import_v30()
261 old->slot = new->slot; in pci_filter_export_v30()
H A Dpci.h269 int domain, bus, slot, func; /* -1 = ANY */ member
H A Dheader.h1604 #define PCI_DEVFN(slot,func) ((((slot) & 0x1f) << 3) | ((func) & 0x07)) argument
/pciutils/
H A Dsetpci.c62 return (f->domain >= 0 && f->bus >= 0 && f->slot >= 0 && f->func >= 0); in matches_single_device()
73 struct pci_dev *dev = pci_get_dev(pacc, f->domain, f->bus, f->slot, f->func); in select_devices()
119 char slot[16]; in exec_op() local
121 snprintf(slot, sizeof(slot), "%04x:%02x:%02x.%x", dev->domain, dev->bus, dev->dev, dev->func); in exec_op()
122 trace("%s ", slot); in exec_op()
131 die("%s: Instance #%d of %s %04x not found - there are no capabilities with that id.", slot, in exec_op()
135 die("%s: Instance #%d of %s %04x not found - there %s only %d %s with that id.", slot, in exec_op()
147 die("%s: Unaligned access of width %d to register %04x", slot, width, addr); in exec_op()
149 die("%s: Access of width %d to register %04x out of range", slot, width, addr); in exec_op()
155 die("%s: Does not have register %s.", slot, op->name); in exec_op()
H A Dls-caps.c1467 int slot = 0; in cap_express() local
1482 slot = cap & PCI_EXP_FLAGS_SLOT; in cap_express()
1489 slot = cap & PCI_EXP_FLAGS_SLOT; in cap_express()
1496 slot = cap & PCI_EXP_FLAGS_SLOT; in cap_express()
1521 if (slot) in cap_express()
1534 if (slot) in cap_express()
1543 if (slot) in cap_express()
1551 if (slot) in cap_express()
H A Dls-map.c66 if (filter.slot < 0 || filter.slot == dev) in do_map_bus()
H A DChangeLog610 * Physical slot information is displayed correctly for multi-function cards.
662 * The sysfs back-end no longer complains when a slot address
716 * The library and lspci now know about physical slot names. So far,
786 * Added decoding of several PCI-X capabilities: device/link/slot 2,
1530 * lspci.c: Devices in domains different from 0 have their slot number
1531 printed as "<domain>:<bus>:<slot>.<func>". Tree view supports domains
1536 * lib/generic.c: Mention the domain in slot numbers in all error messages.
1806 * lib/filter.c (pci_filter_parse_slot): Allow bus 0xff, slot 0x1f and
H A Dpci.ids2161 5a10 RD890 Northbridge only dual slot (2x16) PCI-e GFX Hydra part
2162 5a11 RD890 Northbridge only single slot PCI-e GFX Hydra part
2163 5a12 RD890 Northbridge only dual slot (2x8) PCI-e GFX Hydra part
20369 1600 S4LN053X01 AHCI SSD Controller(Apple slot)
20375 a801 S4LN058A01[SSUBX] AHCI SSD Controller (Apple slot)
27640 # HHHL PCIe card, single slot, 3rd generation from Enflame
27642 # HHHL PCIe card, single slot, 3rd generation from Enflame, 24GB device memory
27644 # FHFL PCIe card, single slot, 3rd generation from Enflame
27646 # FHFL PCIe card, dual slot, 3rd generation from Enflame, 48GB device memory
27648 # FHFL PCIe card, dual slot, 3rd generation from Enflame, 48GB device memory
[all …]
/pciutils/lmr/
H A Dmargin_args.c47 if (pci_filter.bus == -1 || pci_filter.slot == -1 || pci_filter.func == -1) in dev_for_filter()