Lines Matching refs:pci
122 MODULE_DEVICE_TABLE(pci, ahc_linux_pci_id_table);
208 ahc_dev_softc_t pci; in ahc_linux_pci_dev_probe() local
214 pci = pdev; in ahc_linux_pci_dev_probe()
215 entry = ahc_find_pci_device(pci); in ahc_linux_pci_dev_probe()
225 ahc_get_pci_bus(pci), in ahc_linux_pci_dev_probe()
226 ahc_get_pci_slot(pci), in ahc_linux_pci_dev_probe()
227 ahc_get_pci_function(pci)); in ahc_linux_pci_dev_probe()
252 ahc->dev_softc = pci; in ahc_linux_pci_dev_probe()
273 ahc_pci_read_config(ahc_dev_softc_t pci, int reg, int width) in ahc_pci_read_config() argument
280 pci_read_config_byte(pci, reg, &retval); in ahc_pci_read_config()
286 pci_read_config_word(pci, reg, &retval); in ahc_pci_read_config()
292 pci_read_config_dword(pci, reg, &retval); in ahc_pci_read_config()
303 ahc_pci_write_config(ahc_dev_softc_t pci, int reg, uint32_t value, int width) in ahc_pci_write_config() argument
307 pci_write_config_byte(pci, reg, value); in ahc_pci_write_config()
310 pci_write_config_word(pci, reg, value); in ahc_pci_write_config()
313 pci_write_config_dword(pci, reg, value); in ahc_pci_write_config()