Lines Matching refs:bus

93 nhm_get_hdl(int bus, int dev, int func)  in nhm_get_hdl()  argument
98 if (bus >= SOCKET_BUS(MAX_CPU_NODES) && bus <= SOCKET_BUS(0) && in nhm_get_hdl()
100 slot = SOCKET_BUS(0) - bus; in nhm_get_hdl()
110 nhm_pci_getb(int bus, int dev, int func, int reg, int *interpose) in nhm_pci_getb() argument
114 hdl = nhm_get_hdl(bus, dev, func); in nhm_pci_getb()
115 return (cmi_pci_getb(bus, dev, func, reg, interpose, hdl)); in nhm_pci_getb()
119 nhm_pci_getw(int bus, int dev, int func, int reg, int *interpose) in nhm_pci_getw() argument
123 hdl = nhm_get_hdl(bus, dev, func); in nhm_pci_getw()
124 return (cmi_pci_getw(bus, dev, func, reg, interpose, hdl)); in nhm_pci_getw()
128 nhm_pci_getl(int bus, int dev, int func, int reg, int *interpose) in nhm_pci_getl() argument
132 hdl = nhm_get_hdl(bus, dev, func); in nhm_pci_getl()
133 return (cmi_pci_getl(bus, dev, func, reg, interpose, hdl)); in nhm_pci_getl()
137 nhm_pci_putb(int bus, int dev, int func, int reg, uint8_t val) in nhm_pci_putb() argument
141 hdl = nhm_get_hdl(bus, dev, func); in nhm_pci_putb()
142 cmi_pci_putb(bus, dev, func, reg, hdl, val); in nhm_pci_putb()
146 nhm_pci_putw(int bus, int dev, int func, int reg, uint16_t val) in nhm_pci_putw() argument
150 hdl = nhm_get_hdl(bus, dev, func); in nhm_pci_putw()
151 cmi_pci_putw(bus, dev, func, reg, hdl, val); in nhm_pci_putw()
155 nhm_pci_putl(int bus, int dev, int func, int reg, uint32_t val) in nhm_pci_putl() argument
159 hdl = nhm_get_hdl(bus, dev, func); in nhm_pci_putl()
160 cmi_pci_putl(bus, dev, func, reg, hdl, val); in nhm_pci_putl()