Lines Matching full:service

25 	u32 service;  member
29 * release_pcie_device - free PCI Express port service device structure
30 * @dev: Port service device to release
217 * by the BIOS and the hot-plug service driver is not loaded. in get_port_device_capability()
230 * BIOS (the AER service driver will enable it when necessary). in get_port_device_capability()
247 * by the BIOS (the PME service driver will enable it when in get_port_device_capability()
270 * pcie_device_init - allocate and initialize PCI Express port service device
271 * @pdev: PCI Express port to associate the service device with
272 * @service: Type of service to associate with the service device
273 * @irq: Interrupt vector to associate with the service device
275 static int pcie_device_init(struct pci_dev *pdev, int service, int irq) in pcie_device_init() argument
286 pcie->service = service; in pcie_device_init()
294 get_descriptor_id(pci_pcie_type(pdev), service)); in pcie_device_init()
333 * Initialize service irqs. Don't use service devices that in pcie_port_device_register()
350 int service = 1 << i; in pcie_port_device_register() local
351 if (!(capabilities & service)) in pcie_port_device_register()
353 if (!pcie_device_init(dev, service, irqs[i])) in pcie_port_device_register()
444 u32 service; in find_service_iter() local
447 service = pdrvs->service; in find_service_iter()
451 if (service_driver->service == service) { in find_service_iter()
463 * @dev: PCI Express port the service is associated with
464 * @service: For the service to find
466 * Find the struct device associated with given service on a pci_dev
469 u32 service) in pcie_port_find_device() argument
475 pdrvs.service = service; in pcie_port_find_device()
484 * pcie_port_device_remove - unregister PCI Express port service devices
485 * @dev: PCI Express port the service devices to unregister are associated with
487 * Remove PCI Express port service devices associated with given port and
498 * pcie_port_probe_service - probe driver for given PCI Express port service
499 * @dev: PCI Express port service device to probe against
501 * If PCI Express port service driver is registered with
503 * whenever match is found between the driver and a port service device.
528 * pcie_port_remove_service - detach driver from given PCI Express port service
529 * @dev: PCI Express port service device to handle
531 * If PCI Express port service driver is registered with
533 * when device_unregister() is called for the port service device associated
554 * pcie_port_shutdown_service - shut down given PCI Express port service
555 * @dev: PCI Express port service device to handle
557 * If PCI Express port service driver is registered with
559 * when device_shutdown() is called for the port service device associated
565 * pcie_port_service_register - register PCI Express port service driver
566 * @new: PCI Express port service driver to register
584 * pcie_port_service_unregister - unregister PCI Express port service driver
585 * @drv: PCI Express port service driver to unregister