Home
last modified time | relevance | path

Searched refs:l (Results 1 – 8 of 8) sorted by relevance

/pciutils/
H A Dls-caps-vendor.c87 u32 l; in show_vendor_caps_intel() local
125 l = get_conf_long(d, where + 4); in show_vendor_caps_intel()
140 if (BITS(l, 19, 2) == 0) in show_vendor_caps_intel()
151 printf(" CDID=%u", BITS(l, 8, 2)); in show_vendor_caps_intel()
164 l = get_conf_long(d, where + 8); in show_vendor_caps_intel()
174 if (BITS(l, 21, 3) == 0) in show_vendor_caps_intel()
176 else if (BITS(l, 21, 3) == 7) in show_vendor_caps_intel()
197 l = get_conf_long(d, where + 12); in show_vendor_caps_intel()
201 if (BITS(l, 23, 4) == 0) in show_vendor_caps_intel()
207 if (BITS(l, 17, 4) == 0) in show_vendor_caps_intel()
[all …]
H A Dls-ecaps.c142 FLAG(l, PCI_ERR_UNC_DLP), FLAG(l, PCI_ERR_UNC_SDES), FLAG(l, PCI_ERR_UNC_POISON_TLP), in cap_aer()
145 FLAG(l, PCI_ERR_UNC_ECRC), FLAG(l, PCI_ERR_UNC_UNSUP), FLAG(l, PCI_ERR_UNC_ACS_VIOL), in cap_aer()
155 FLAG(l, PCI_ERR_UNC_DLP), FLAG(l, PCI_ERR_UNC_SDES), FLAG(l, PCI_ERR_UNC_POISON_TLP), in cap_aer()
158 FLAG(l, PCI_ERR_UNC_ECRC), FLAG(l, PCI_ERR_UNC_UNSUP), FLAG(l, PCI_ERR_UNC_ACS_VIOL), in cap_aer()
168 FLAG(l, PCI_ERR_UNC_DLP), FLAG(l, PCI_ERR_UNC_SDES), FLAG(l, PCI_ERR_UNC_POISON_TLP), in cap_aer()
171 FLAG(l, PCI_ERR_UNC_ECRC), FLAG(l, PCI_ERR_UNC_UNSUP), FLAG(l, PCI_ERR_UNC_ACS_VIOL), in cap_aer()
192 PCI_ERR_CAP_FEP(l), FLAG(l, PCI_ERR_CAP_ECRC_GENC), FLAG(l, PCI_ERR_CAP_ECRC_GENE), in cap_aer()
236 u16 l; in cap_dpc() local
252 PCI_DPC_CTL_TRIGGER(l), FLAG(l, PCI_DPC_CTL_CMPL), FLAG(l, PCI_DPC_CTL_INT), in cap_dpc()
258 FLAG(l, PCI_DPC_STS_TRIGGER), PCI_DPC_STS_REASON(l), FLAG(l, PCI_DPC_STS_INT), in cap_dpc()
[all …]
H A Dls-caps.c1106 u32 l; in cap_express_dev2() local
1114 FLAG(l, PCI_EXP_DEVCAP2_NROPRPRP), in cap_express_dev2()
1115 FLAG(l, PCI_EXP_DEVCAP2_LTR)); in cap_express_dev2()
1120 FLAG(l, PCI_EXP_DEVCAP2_EXTFMT), in cap_express_dev2()
1126 PCI_EXP_DEVCAP2_MEE_TLP(l) ? PCI_EXP_DEVCAP2_MEE_TLP(l) : 4); in cap_express_dev2()
1337 u32 l = 0; in cap_express_link2() local
1344 if (l) { in cap_express_link2()
1348 FLAG(l, PCI_EXP_LNKCAP2_CROSSLINK), in cap_express_link2()
1349 FLAG(l, PCI_EXP_LNKCAP2_RETIMER), in cap_express_link2()
1350 FLAG(l, PCI_EXP_LNKCAP2_2RETIMERS), in cap_express_link2()
[all …]
H A Dsetpci.c587 unsigned long int l; in parse_x32() local
592 l = strtoul(c, &stop, 16); in parse_x32()
595 if ((l & ~0U) != l) in parse_x32()
597 *resp = l; in parse_x32()
H A Dbitops.h27 #define MASK(h, l) ((((u64)1 << ((h) + 1)) - 1) & ~(((u64)1 << (l)) - 1)) argument
H A Dpci.ids18983 139f Aethra s.r.l.
22326 1565 Biostar Microtech Int'l Corp
26966 1da1 Teko Telecom S.r.l.
28853 2099 Rolling Wireless S.a.r.l.
/pciutils/lib/
H A Dnames-parse.c22 #define pci_gets(f, l, s) gzgets(f, l, s) argument
55 #define pci_gets(f, l, s) fgets(l, s, f) argument
H A Daccess.c176 int l = (pos + len >= d->cache_len) ? (d->cache_len - pos) : len; in pci_write_block() local
177 memcpy(d->cache + pos, buf, l); in pci_write_block()