Home
last modified time | relevance | path

Searched refs:base_p (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/uts/common/io/
H A Dpci_cap.c47 #define PCI_CAP_BASE(h, id, base_p) (*base_p ? DDI_SUCCESS : \ argument
48 (id ? PCI_CAP_LOCATE(h, id, base_p) : DDI_FAILURE))
55 uint32_t *id_p, uint16_t *base_p) in pci_cap_probe() argument
116 *base_p = base; in pci_cap_probe()
125 pci_lcap_locate(ddi_acc_handle_t h, uint8_t id, uint16_t *base_p) in pci_lcap_locate() argument
155 *base_p = base; in pci_lcap_locate()
160 *base_p = PCI_CAP_NEXT_PTR_NULL; in pci_lcap_locate()
168 pci_xcap_locate(ddi_acc_handle_t h, uint16_t id, uint16_t *base_p) in pci_xcap_locate() argument
186 *base_p = base; in pci_xcap_locate()
191 *base_p = PCI_CAP_NEXT_PTR_NULL; in pci_xcap_locate()
[all …]
/titanic_50/usr/src/uts/common/sys/
H A Dpci_cap.h37 int pci_xcap_locate(ddi_acc_handle_t h, uint16_t id, uint16_t *base_p);
38 int pci_lcap_locate(ddi_acc_handle_t h, uint8_t id, uint16_t *base_p);
40 uint16_t *base_p);
74 #define PCI_CAP_LOCATE(h, id, base_p) ((id) & PCI_CAP_XCFG_FLAG ? \ argument
75 pci_xcap_locate(h, (uint16_t)((id) & PCI_CAP_XID_MASK), base_p) : \
76 pci_lcap_locate(h, (uint8_t)((id) & PCI_CAP_ID_MASK), base_p))
108 uint32_t *id_p, uint16_t *base_p);