Home | History | Annotate | Download | only in rmi

Lines Matching defs:bitno

160 #define RMIXL_PCIE_EVCNT(sc, link, bitno, cpu)	\
161 &(sc)->sc_evcnts[link][(bitno) * (ncpu) + (cpu)]
1096 u_int link, bitno, irq;
1098 rmixl_pcie_decompose_pih(pih, &link, &bitno, &irq);
1153 rmixl_pcie_make_pih(u_int link, u_int bitno, u_int irq)
1158 KASSERT(bitno < 64);
1162 pih |= (bitno << 4);
1169 rmixl_pcie_decompose_pih(pci_intr_handle_t pih, u_int *link, u_int *bitno, u_int *irq)
1172 *bitno = (u_int)((pih >> 4) & 0x3f);
1176 KASSERT(*bitno < 64);
1193 __func__, dip->link, dip->bitno + 1, dip->irq));
1208 if (d->bitno == dip->bitno) {
1214 if (dip->bitno < 32) {
1215 bit = 1 << dip->bitno;
1219 bit = 1 << (dip->bitno - 32);
1258 u_int link, bitno, irq;
1271 rmixl_pcie_decompose_pih(pih, &link, &bitno, &irq);
1273 __func__, link, bitno + 1, irq));
1286 dip->bitno = bitno;
1290 dip->counts = RMIXL_PCIE_EVCNT(sc, link, bitno, 0);
1292 if (bitno < 32) {
1294 bit = 1 << bitno;
1297 bit = 1 << (bitno - 32);
1434 uint64_t bit = 1 << dip->bitno;