Home | History | Annotate | Download | only in cardbus

Lines Matching defs:bhlc

444 	pcireg_t bhlc, icr, lattimer;
498 bhlc = cardbus_conf_read(cc, cf, tag, PCI_BHLC_REG);
499 DPRINTF(("%s bhlc 0x%08x -> ", device_xname(sc->sc_dev), bhlc));
500 nfunction = PCI_HDRTYPE_MULTIFN(bhlc) ? 8 : 1;
541 bhlc = cardbus_conf_read(cc, cf, tag, PCI_BHLC_REG);
543 DPRINTF(("%s func%d icr 0x%08x bhlc 0x%08x -> ",
544 device_xname(sc->sc_dev), function, icr, bhlc));
545 bhlc &= ~(PCI_CACHELINE_MASK << PCI_CACHELINE_SHIFT);
546 bhlc |= (sc->sc_cacheline & PCI_CACHELINE_MASK) <<
566 if (PCI_LATTIMER(bhlc) < lattimer) {
567 bhlc &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
568 bhlc |= (lattimer << PCI_LATTIMER_SHIFT);
571 cardbus_conf_write(cc, cf, tag, PCI_BHLC_REG, bhlc);
572 bhlc = cardbus_conf_read(cc, cf, tag, PCI_BHLC_REG);
573 DPRINTF(("0x%08x\n", bhlc));
581 ct->ct_bhlc = bhlc;