Home
last modified time | relevance | path

Searched refs:pci_id (Results 1 – 25 of 52) sorted by relevance

123

/drivers/acpi/acpica/
Dhwpci.c36 acpi_hw_process_pci_list(struct acpi_pci_id *pci_id,
42 acpi_hw_get_pci_device_info(struct acpi_pci_id *pci_id,
86 acpi_hw_derive_pci_id(struct acpi_pci_id *pci_id, in acpi_hw_derive_pci_id() argument
94 if (!pci_id) { in acpi_hw_derive_pci_id()
106 status = acpi_hw_process_pci_list(pci_id, list_head); in acpi_hw_derive_pci_id()
205 acpi_hw_process_pci_list(struct acpi_pci_id *pci_id, in acpi_hw_process_pci_list() argument
217 pci_id->segment, pci_id->bus, pci_id->device, in acpi_hw_process_pci_list()
218 pci_id->function)); in acpi_hw_process_pci_list()
220 bus_number = pci_id->bus; in acpi_hw_process_pci_list()
231 status = acpi_hw_get_pci_device_info(pci_id, info->device, in acpi_hw_process_pci_list()
[all …]
Devrgnini.c137 struct acpi_pci_id *pci_id = *region_context; in acpi_ev_pci_config_region_setup() local
161 if (pci_id) { in acpi_ev_pci_config_region_setup()
162 ACPI_FREE(pci_id); in acpi_ev_pci_config_region_setup()
232 pci_id = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pci_id)); in acpi_ev_pci_config_region_setup()
233 if (!pci_id) { in acpi_ev_pci_config_region_setup()
250 ACPI_FREE(pci_id); in acpi_ev_pci_config_region_setup()
266 pci_id->device = ACPI_HIWORD(ACPI_LODWORD(pci_value)); in acpi_ev_pci_config_region_setup()
267 pci_id->function = ACPI_LOWORD(ACPI_LODWORD(pci_value)); in acpi_ev_pci_config_region_setup()
275 pci_id->segment = ACPI_LOWORD(pci_value); in acpi_ev_pci_config_region_setup()
283 pci_id->bus = ACPI_LOWORD(pci_value); in acpi_ev_pci_config_region_setup()
[all …]
Dexregion.c369 struct acpi_pci_id *pci_id; in acpi_ex_pci_config_space_handler() local
386 pci_id = (struct acpi_pci_id *)region_context; in acpi_ex_pci_config_space_handler()
392 function, bit_width, pci_id->segment, pci_id->bus, in acpi_ex_pci_config_space_handler()
393 pci_id->device, pci_id->function, pci_register)); in acpi_ex_pci_config_space_handler()
400 acpi_os_read_pci_configuration(pci_id, pci_register, value, in acpi_ex_pci_config_space_handler()
407 acpi_os_write_pci_configuration(pci_id, pci_register, in acpi_ex_pci_config_space_handler()
Dachware.h120 acpi_hw_derive_pci_id(struct acpi_pci_id *pci_id,
124 acpi_hw_derive_pci_id(struct acpi_pci_id *pci_id, acpi_handle root_pci_device, in acpi_hw_derive_pci_id() argument
/drivers/usb/gadget/udc/
Damd5536udc_pci.c195 static const struct pci_device_id pci_id[] = { variable
203 MODULE_DEVICE_TABLE(pci, pci_id);
208 .id_table = pci_id,
/drivers/acpi/
Dosl.c785 acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, in acpi_os_read_pci_configuration() argument
808 result = raw_pci_read(pci_id->segment, pci_id->bus, in acpi_os_read_pci_configuration()
809 PCI_DEVFN(pci_id->device, pci_id->function), in acpi_os_read_pci_configuration()
817 acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, in acpi_os_write_pci_configuration() argument
836 result = raw_pci_write(pci_id->segment, pci_id->bus, in acpi_os_write_pci_configuration()
837 PCI_DEVFN(pci_id->device, pci_id->function), in acpi_os_write_pci_configuration()
/drivers/net/ethernet/hisilicon/hns3/
Dhnae3.c15 const struct pci_device_id *pci_id; in hnae3_unregister_ae_algo_prepare() local
25 pci_id = pci_match_id(ae_algo->pdev_id_table, ae_dev->pdev); in hnae3_unregister_ae_algo_prepare()
26 if (!pci_id) in hnae3_unregister_ae_algo_prepare()
/drivers/media/pci/mantis/
Dhopper_cards.c145 const struct pci_device_id *pci_id) in hopper_pci_probe() argument
158 drvdata = (void *)pci_id->driver_data; in hopper_pci_probe()
Dmantis_cards.c154 const struct pci_device_id *pci_id) in mantis_pci_probe() argument
165 drvdata = (void *)pci_id->driver_data; in mantis_pci_probe()
/drivers/net/wwan/iosm/
Diosm_ipc_pcie.c259 const struct pci_device_id *pci_id) in ipc_pcie_probe() argument
263 pr_debug("Probing device 0x%X from the vendor 0x%X", pci_id->device, in ipc_pcie_probe()
264 pci_id->vendor); in ipc_pcie_probe()
/drivers/gpu/drm/vmwgfx/
Dvmwgfx_drv.c722 u32 pci_id) in vmw_setup_pci_resources() argument
737 dev->pci_id = pci_id; in vmw_setup_pci_resources()
738 if (pci_id == VMWGFX_PCI_ID_SVGA3) { in vmw_setup_pci_resources()
756 } else if (pci_id == VMWGFX_PCI_ID_SVGA2) { in vmw_setup_pci_resources()
805 svga_id, dev->pci_id); in vmw_detect_version()
814 static int vmw_driver_load(struct vmw_private *dev_priv, u32 pci_id) in vmw_driver_load() argument
830 ret = vmw_setup_pci_resources(dev_priv, pci_id); in vmw_driver_load()
/drivers/media/pci/tw68/
Dtw68-core.c212 const struct pci_device_id *pci_id) in tw68_initdev() argument
257 switch (pci_id->device) { in tw68_initdev()
/drivers/net/ethernet/cavium/liquidio/
Docteon_device.c665 static struct octeon_device *octeon_allocate_device_mem(u32 pci_id, in octeon_allocate_device_mem() argument
672 switch (pci_id) { in octeon_allocate_device_mem()
687 pci_id); in octeon_allocate_device_mem()
717 struct octeon_device *octeon_allocate_device(u32 pci_id, in octeon_allocate_device() argument
730 oct = octeon_allocate_device_mem(pci_id, priv_size); in octeon_allocate_device()
/drivers/media/pci/tw686x/
Dtw686x-core.c241 const struct pci_device_id *pci_id) in tw686x_probe() argument
249 dev->type = pci_id->driver_data; in tw686x_probe()
/drivers/media/pci/cobalt/
Dcobalt-driver.c298 const struct pci_device_id *pci_id) in cobalt_setup_pci() argument
657 const struct pci_device_id *pci_id) in cobalt_probe() argument
696 retval = cobalt_setup_pci(cobalt, pci_dev, pci_id); in cobalt_probe()
/drivers/media/pci/bt8xx/
Dbt878.c398 static int bt878_probe(struct pci_dev *dev, const struct pci_device_id *pci_id) in bt878_probe() argument
418 __func__, cardid, card_name(pci_id)); in bt878_probe()
/drivers/mfd/
Dsta2x11-mfd.c567 const struct pci_device_id *pci_id) in sta2x11_mfd_probe() argument
584 setup_data = pci_id->device == PCI_DEVICE_ID_STMICRO_GPIO ? in sta2x11_mfd_probe()
/drivers/scsi/mpt3sas/
Dmpt3sas_ctl.h183 uint32_t pci_id; member
/drivers/gpio/
Dgpio-sodaville.c181 const struct pci_device_id *pci_id) in sdv_gpio_probe() argument
Dgpio-bt8xx.c164 const struct pci_device_id *pci_id) in bt8xxgpio_probe() argument
/drivers/media/pci/cx18/
Dcx18-driver.c796 const struct pci_device_id *pci_id) in cx18_setup_pci() argument
887 const struct pci_device_id *pci_id) in cx18_probe() argument
933 retval = cx18_setup_pci(cx, pci_dev, pci_id); in cx18_probe()
/drivers/net/ethernet/netronome/nfp/
Dnfp_netvf_main.c66 const struct pci_device_id *pci_id) in nfp_netvf_pci_probe() argument
/drivers/media/pci/tw5864/
Dtw5864-core.c240 const struct pci_device_id *pci_id) in tw5864_initdev() argument
/drivers/media/pci/ivtv/
Divtv-driver.c829 const struct pci_device_id *pci_id) in ivtv_setup_pci() argument
995 static int ivtv_probe(struct pci_dev *pdev, const struct pci_device_id *pci_id) in ivtv_probe() argument
1035 retval = ivtv_setup_pci(itv, pdev, pci_id); in ivtv_probe()
/drivers/video/fbdev/aty/
Datyfb.h147 u16 pci_id; member

123