Lines Matching defs:comm
4000 uint16_t comm, stat;
4003 comm = pci_config_get16(config_handle, PCI_CONF_COMM);
4008 comm |= (PCI_COMM_ME | PCI_COMM_MAE | PCI_COMM_IO |
4012 comm |= PCI_COMM_BACK2BACK_ENAB;
4013 pci_config_put16(config_handle, PCI_CONF_COMM, comm);
4015 "enable_pci_isa_bridge stat 0x%04x comm 0x%04x\n", stat, comm);
4028 uint16_t comm, stat, bctrl;
4031 comm = pci_config_get16(config_handle, PCI_CONF_COMM);
4034 comm &= ~(PCI_COMM_IO | PCI_COMM_MAE);
4035 comm |= (PCI_COMM_ME | PCI_COMM_PARITY_DETECT | PCI_COMM_SERR_ENABLE);
4041 comm |= PCI_COMM_BACK2BACK_ENAB;
4043 pci_config_put16(config_handle, PCI_CONF_COMM, comm);
4068 "enable_pci_pci_bridge stat 0x%04x comm 0x%04x bctrl 0x%04x\n",
4069 stat, comm, bctrl);
4077 uint16_t comm, stat, bctrl;
4080 comm = pci_config_get16(config_handle, PCI_CONF_COMM);
4090 * comm |= (PCI_COMM_ME | PCI_COMM_PARITY_DETECT |
4113 if (comm & PCI_COMM_PARITY_DETECT)
4115 if (comm & PCI_COMM_SERR_ENABLE)
4123 pci_config_put16(config_handle, PCI_CONF_COMM, comm);
4126 "enable_cardbus_bridge() stat 0x%04x comm 0x%04x bctrl 0x%04x\n",
4127 stat, comm, bctrl);
4137 uint16_t comm, bctrl;
4139 comm = pci_config_get16(config_handle, PCI_CONF_COMM);
4153 comm = 0;
4155 pci_config_put16(config_handle, PCI_CONF_COMM, comm);
4159 "disable_pci_pci_bridge() stat 0x%04x comm 0x%04x bctrl 0x%04x\n",
4160 pci_config_get16(config_handle, PCI_CONF_STAT), comm, bctrl);
4166 uint16_t comm, bctrl;
4168 comm = pci_config_get16(config_handle, PCI_CONF_COMM);
4187 pci_config_put16(config_handle, PCI_CONF_COMM, comm);
4191 "disable_cardbus_bridge() stat 0x%04x comm 0x%04x bctrl 0x%04x\n",
4192 pci_config_get16(config_handle, PCI_CONF_STAT), comm, bctrl);
4198 uint16_t comm, stat;
4201 comm = pci_config_get16(config_handle, PCI_CONF_COMM);
4206 comm |= (PCI_COMM_ME | PCI_COMM_MAE | PCI_COMM_IO |
4210 comm |= PCI_COMM_BACK2BACK_ENAB;
4211 pci_config_put16(config_handle, PCI_CONF_COMM, comm);
4213 "enable_cardbus_device stat 0x%04x comm 0x%04x\n", stat, comm);