1 // SPDX-License-Identifier: GPL-2.0+
4 * Comedi PCI driver specific functions.
6 * COMEDI - Linux Control and Measurement Device Interface
7 * Copyright (C) 1997-2000 David A. Schleef <ds@schleef.org>
10 #include <linux/module.h>
11 #include <linux/interrupt.h>
12 #include <linux/comedi/comedi_pci.h>
15 * comedi_to_pci_dev() - Return PCI device attached to COMEDI device
16 * @dev: COMEDI device.
18 * Assuming @dev->hw_dev is non-%NULL, it is assumed to be pointing to a
19 * a &struct device embedded in a &struct pci_dev.
21 * Return: Attached PCI device if @dev->hw_dev is non-%NULL.
22 * Return %NULL if @dev->hw_dev is %NULL.
24 struct pci_dev *comedi_to_pci_dev(struct comedi_device *dev)
26 return dev->hw_dev ? to_pci_dev(dev->hw_dev) : NULL;
28 EXPORT_SYMBOL_GPL(comedi_to_pci_dev);
31 * comedi_pci_enable() - Enable the PCI device and request the regions
32 * @dev: COMEDI device.
34 * Assuming @dev->hw_dev is non-%NULL, it is assumed to be pointing to a
35 * a &struct device embedded in a &struct pci_dev. Enable the PCI device
36 * and request its regions. Set @dev->ioenabled to %true if successful,
37 * otherwise undo what was done.
39 * Calls to comedi_pci_enable() and comedi_pci_disable() cannot be nested.
43 * -%ENODEV if @dev->hw_dev is %NULL,
44 * -%EBUSY if regions busy,
45 * or some negative error number if failed to enable PCI device.
48 int comedi_pci_enable(struct comedi_device *dev)
50 struct pci_dev *pcidev = comedi_to_pci_dev(dev);
56 rc = pci_enable_device(pcidev);
60 rc = pci_request_regions(pcidev, dev->board_name);
62 pci_disable_device(pcidev);
64 dev->ioenabled = true;
68 EXPORT_SYMBOL_GPL(comedi_pci_enable);
71 * comedi_pci_disable() - Release the regions and disable the PCI device
72 * @dev: COMEDI device.
74 * Assuming @dev->hw_dev is non-%NULL, it is assumed to be pointing to a
75 * a &struct device embedded in a &struct pci_dev. If the earlier call
76 * to comedi_pci_enable() was successful, release the PCI device's regions
77 * and disable it. Reset @dev->ioenabled back to %false.
79 void comedi_pci_disable(struct comedi_device *dev)
81 struct pci_dev *pcidev = comedi_to_pci_dev(dev);
83 if (pcidev && dev->ioenabled) {
84 pci_release_regions(pcidev);
85 pci_disable_device(pcidev);
87 dev->ioenabled = false;
89 EXPORT_SYMBOL_GPL(comedi_pci_disable);
92 * comedi_pci_detach() - A generic "detach" handler for PCI COMEDI drivers
93 * @dev: COMEDI device.
95 * COMEDI drivers for PCI devices that need no special clean-up of private data
96 * and have no ioremapped regions other than that pointed to by @dev->mmio may
97 * use this function as its "detach" handler called by the COMEDI core when a
98 * COMEDI device is being detached from the low-level driver. It may be also
99 * called from a more specific "detach" handler that does additional clean-up.
101 * Free the IRQ if @dev->irq is non-zero, iounmap @dev->mmio if it is
102 * non-%NULL, and call comedi_pci_disable() to release the PCI device's regions
105 void comedi_pci_detach(struct comedi_device *dev)
107 struct pci_dev *pcidev = comedi_to_pci_dev(dev);
109 if (!pcidev || !dev->ioenabled)
113 free_irq(dev->irq, dev);
120 comedi_pci_disable(dev);
122 EXPORT_SYMBOL_GPL(comedi_pci_detach);
125 * comedi_pci_auto_config() - Configure/probe a PCI COMEDI device
126 * @pcidev: PCI device.
127 * @driver: Registered COMEDI driver.
128 * @context: Driver specific data, passed to comedi_auto_config().
130 * Typically called from the pci_driver (*probe) function. Auto-configure
131 * a COMEDI device, using the &struct device embedded in *@pcidev as the
132 * hardware device. The @context value gets passed through to @driver's
133 * "auto_attach" handler. The "auto_attach" handler may call
134 * comedi_to_pci_dev() on the passed in COMEDI device to recover @pcidev.
136 * Return: The result of calling comedi_auto_config() (0 on success, or
137 * a negative error number on failure).
139 int comedi_pci_auto_config(struct pci_dev *pcidev,
140 struct comedi_driver *driver,
141 unsigned long context)
143 return comedi_auto_config(&pcidev->dev, driver, context);
145 EXPORT_SYMBOL_GPL(comedi_pci_auto_config);
148 * comedi_pci_auto_unconfig() - Unconfigure/remove a PCI COMEDI device
149 * @pcidev: PCI device.
151 * Typically called from the pci_driver (*remove) function. Auto-unconfigure
152 * a COMEDI device attached to this PCI device, using a pointer to the
153 * &struct device embedded in *@pcidev as the hardware device. The COMEDI
154 * driver's "detach" handler will be called during unconfiguration of the
157 * Note that the COMEDI device may have already been unconfigured using the
158 * %COMEDI_DEVCONFIG ioctl, in which case this attempt to unconfigure it
159 * again should be ignored.
161 void comedi_pci_auto_unconfig(struct pci_dev *pcidev)
163 comedi_auto_unconfig(&pcidev->dev);
165 EXPORT_SYMBOL_GPL(comedi_pci_auto_unconfig);
168 * comedi_pci_driver_register() - Register a PCI COMEDI driver
169 * @comedi_driver: COMEDI driver to be registered.
170 * @pci_driver: PCI driver to be registered.
172 * This function is called from the module_init() of PCI COMEDI driver modules
173 * to register the COMEDI driver and the PCI driver. Do not call it directly,
174 * use the module_comedi_pci_driver() helper macro instead.
176 * Return: 0 on success, or a negative error number on failure.
178 int comedi_pci_driver_register(struct comedi_driver *comedi_driver,
179 struct pci_driver *pci_driver)
183 ret = comedi_driver_register(comedi_driver);
187 ret = pci_register_driver(pci_driver);
189 comedi_driver_unregister(comedi_driver);
195 EXPORT_SYMBOL_GPL(comedi_pci_driver_register);
198 * comedi_pci_driver_unregister() - Unregister a PCI COMEDI driver
199 * @comedi_driver: COMEDI driver to be unregistered.
200 * @pci_driver: PCI driver to be unregistered.
202 * This function is called from the module_exit() of PCI COMEDI driver modules
203 * to unregister the PCI driver and the COMEDI driver. Do not call it
204 * directly, use the module_comedi_pci_driver() helper macro instead.
206 void comedi_pci_driver_unregister(struct comedi_driver *comedi_driver,
207 struct pci_driver *pci_driver)
209 pci_unregister_driver(pci_driver);
210 comedi_driver_unregister(comedi_driver);
212 EXPORT_SYMBOL_GPL(comedi_pci_driver_unregister);
214 static int __init comedi_pci_init(void)
218 module_init(comedi_pci_init);
220 static void __exit comedi_pci_exit(void)
223 module_exit(comedi_pci_exit);
225 MODULE_AUTHOR("https://www.comedi.org");
226 MODULE_DESCRIPTION("Comedi PCI interface module");
227 MODULE_LICENSE("GPL");