Lines Matching defs:pcictl
89 u_int32_t pcictl;
135 pcictl = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
136 pcictl |= PCI_COMMAND_INVALIDATE_ENABLE |
141 pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, pcictl);
143 pcictl = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_BHLC_REG);
144 pcictl &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
145 pcictl &= ~(PCI_CACHELINE_MASK << PCI_CACHELINE_SHIFT);
146 pcictl |= (0x80 << PCI_LATTIMER_SHIFT);
147 pcictl |= (0x10 << PCI_CACHELINE_SHIFT);
148 pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_BHLC_REG, pcictl);
150 pcictl = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_ROM_REG);
151 pcictl &= ~1;
152 pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_ROM_REG, pcictl);