Lines Matching +full:875 +full:v
263 * E7500, E7501, E7505, 845, 865, 875/E7210, and 855.
853 #define WREG(n, v, w) PCIB_WRITE_CONFIG(pcib, cfg->bus, cfg->slot, cfg->func, n, v, w)
1234 if (vpd_ros->keyword[0] == 'R' && vpd_ros->keyword[1] == 'V') {
6134 #define WREG(n, v) pci_write_config(dev, pos + (n), (v), 2)
6721 uint16_t v;
6723 v = pci_read_config(port, pcie_location + PCIER_LINK_CTL, 2);
6724 v |= PCIEM_LINK_CTL_LINK_DIS;
6725 pci_write_config(port, pcie_location + PCIER_LINK_CTL, v, 2);
6727 v &= ~PCIEM_LINK_CTL_LINK_DIS;
6728 v |= PCIEM_LINK_CTL_RETRAIN_LINK;
6729 pci_write_config(port, pcie_location + PCIER_LINK_CTL, v, 2);
6731 v = pci_read_config(port, pcie_location + PCIER_LINK_STA, 2);
6732 return ((v & PCIEM_LINK_STA_TRAINING) != 0 ? ETIMEDOUT : 0);