Searched defs:cap_id_loc (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/io/hotplug/pcihp/
H A Dpcihp.c3566 uint_t cap_id_loc; local
3581 cap_id_loc = pci_config_get8(config_handle, PCI_CONF_EXTCAP);
3587 while ((cap_id_loc) && (cap_id_loc < PCI_CONF_HDR_SIZE)) {
3589 cap_id = pci_config_get8(config_handle, cap_id_loc);
3592 location = cap_id_loc + PCI_ECP_HS_CSR;
3595 cap_id_loc = pci_config_get8(config_handle,
3596 cap_id_loc + 1);
/illumos-gate/usr/src/uts/intel/io/hotplug/pcicfg/
H A Dpcicfg.c3189 uint16_t cap_id_loc, val; local
3310 (void) PCI_CAP_LOCATE(config_handle, PCI_CAP_ID_PCI_E, &cap_id_loc);
3311 if (pcie_dev && cap_id_loc != PCI_CAP_NEXT_PTR_NULL) {
3312 val = pci_config_get16(config_handle, cap_id_loc + PCIE_PCIECAP)
3316 wordval = pci_config_get32(config_handle, cap_id_loc +
5115 uint16_t cap_id_loc, slot_id_loc; local
5119 (void) PCI_CAP_LOCATE(handle, PCI_CAP_ID_PCI_E, &cap_id_loc);
5121 if (cap_id_loc != PCI_CAP_NEXT_PTR_NULL) {
5122 if (pci_config_get8(handle, cap_id_loc + PCI_CAP_ID_REGS_OFF) &
/illumos-gate/usr/src/uts/intel/io/pci/
H A Dpci_boot.c820 uint8_t curcap, cap_id_loc; local
833 cap_id_loc = pci_getb(bus, dev, func, PCI_CONF_CAP_PTR);
836 while (cap_id_loc && cap_id_loc != (uint8_t)-1) {
837 curcap = pci_getb(bus, dev, func, cap_id_loc);
840 location = cap_id_loc;
843 cap_id_loc = pci_getb(bus, dev, func, cap_id_loc + 1);

Completed in 150 milliseconds