Home | History | Annotate | Download | only in pci

Lines Matching defs:bhlc

645 		pcireg_t bhlc = pci_conf_read(pc, sc->sc_tag, PCI_BHLC_REG);
660 cba.cba_cacheline = PCI_CACHELINE(bhlc);
661 cba.cba_max_lattimer = PCI_LATTIMER(bhlc);
665 aprint_verbose_dev(self, "bhlc 0x%x\n", bhlc);
715 pcireg_t bcr, bhlc, cbctl, csr, lscp, mfunc, mrburst, slotctl, sockctl,
752 bhlc = pci_conf_read(pc, tag, PCI_BHLC_REG);
753 if (PCI_LATTIMER(bhlc) < 0x10) {
754 bhlc &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
755 bhlc |= (0x10 << PCI_LATTIMER_SHIFT);
756 pci_conf_write(pc, tag, PCI_BHLC_REG, bhlc);
759 PCI_LATTIMER(bhlc), pci_conf_read(pc, tag, PCI_BHLC_REG)));