Main index | Section 3 | Options |
#include <devctl.h>
pcidomain, Ns, :, Ns, Fa, bus, Ns, :, Ns, Fa, slot, Ns, :, Ns, Fa, function | A PCI device with the specified domain, bus, slot, and function. |
pcibus, Ns, :, Ns, Fa, slot, Ns, :, Ns, Fa, function | A PCI device in domain zero with the specified bus, slot, and function. |
handle | A device with an ACPI handle of handle. The handle must be specified as an absolute path and must begin with a "\". |
The devctl_attach() function probes a device and attaches a suitable device driver if one is found.
The devctl_detach() function detaches a device from its current device driver. The device is left detached until either a new driver for its parent bus is loaded or the device is explicitly probed via devctl_attach(). If force is true, the current device driver will be detached even if the device is busy.
The devctl_delete() function deletes a device from the device tree. No If force is true, the device is deleted even if the device is physically present.
The devctl_disable() function disables a device. If the device is currently attached to a device driver, the device driver will be detached from the device, but the device will retain its current name. If force_detach is true, the current device driver will be detached even if the device is busy. The device will remain disabled and detached until it is explicitly enabled via devctl_enable().
The devctl_enable() function re-enables a disabled device. The device will probe and attach if a suitable device driver is found.
The devctl_suspend() function suspends a device. This may include placing the device in a reduced power state, but any device driver currently attached to the device will remain attached.
The devctl_resume() function resumes a suspended device to a fully working state.
The devctl_set_driver() function attaches a device driver named driver to a device. If the device is already attached and force is false, the request will fail. If the device is already attached and force is true, the device will be detached from its current device driver before it is attached to the new device driver.
The devctl_clear_driver() function resets a device so that it can be attached to any valid device driver rather than only drivers with a previously specified name. This function is used to undo a previous call to devctl_set_driver(). If the device is already attached and force is false, the request will fail. If the device is already attached and force is true, the device will be detached from its current device driver. After the device's name is reset, it is reprobed and attached to a suitable device driver if one is found.
The devctl_rescan() function rescans a bus device checking for devices that have been added or removed.
The devctl_freeze() function freezes probe and attach processing initiated in response to drivers being loaded.
The devctl_thaw() function resumes (thaws the freeze) probe and attach processing initiated in response to drivers being loaded.
The devctl_reset() function resets the specified device using bus-specific reset method. The detach argument, if true, specifies that the device driver is detached before the reset, and re-attached afterwards. If false, the device is suspended before the reset, and resumed after.
[EINVAL] | |
The device name is too long. | |
[ENOENT] | |
No existing device matches the specified name or location. | |
[EPERM] | |
The current process is not permitted to adjust the state of device. | |
The devctl_attach() function may fail if:
[EBUSY] | |
The device is already attached. | |
[ENOMEM] | |
An internal memory allocation request failed. | |
[ENXIO] | |
The device is disabled. | |
[ENXIO] | |
No suitable driver for the device could be found, or the driver failed to attach. | |
The devctl_detach() function may fail if:
[EBUSY] | |
The current device driver for device is busy and cannot detach at this time. Note that some drivers may return this even if force is true. | |
[ENXIO] | |
The device is not attached to a driver. | |
[ENXIO] | |
The current device driver for device does not support detaching. | |
The devctl_enable() function may fail if:
[EBUSY] | |
The device is already enabled. | |
[ENOMEM] | |
An internal memory allocation request failed. | |
[ENXIO] | |
No suitable driver for the device could be found, or the driver failed to attach. | |
The devctl_disable() function may fail if:
[EBUSY] | |
The current device driver for device is busy and cannot detach at this time. Note that some drivers may return this even if force_detach is true. | |
[ENXIO] | |
The device is already disabled. | |
[ENXIO] | |
The current device driver for device does not support detaching. | |
The devctl_suspend() function may fail if:
[EBUSY] | |
The device is already suspended. | |
[EINVAL] | |
The device to be suspended is the root bus device. | |
The devctl_resume() function may fail if:
[EINVAL] | |
The device is not suspended. | |
[EINVAL] | |
The device to be resumed is the root bus device. | |
The devctl_set_driver() function may fail if:
[EBUSY] | |
The device is currently attached to a device driver and force is false. | |
[EBUSY] | |
The current device driver for device is busy and cannot detach at this time. | |
[EFAULT] | |
The driver argument points outside the process' allocated address space. | |
[ENOENT] | |
No device driver with the requested name exists. | |
[ENOMEM] | |
An internal memory allocation request failed. | |
[ENXIO] | |
The device is disabled. | |
[ENXIO] | |
The new device driver failed to attach. | |
The devctl_clear_driver() function may fail if:
[EBUSY] | |
The device is currently attached to a device driver and force is false. | |
[EBUSY] | |
The current device driver for device is busy and cannot detach at this time. | |
[EINVAL] | |
The device is not configured for a specific device driver name. | |
[ENXIO] | |
The device driver chosen after reprobing failed to attach. | |
The devctl_rescan() function may fail if:
[ENXIO] | |
The device is not attached to a driver. | |
[ENXIO] | |
The bus driver does not support rescanning. | |
The devctl_delete() function may fail if:
[EBUSY] | |
The device is physically present and force is false. | |
[EINVAL] | |
dev is the root device of the device tree. | |
The devctl_reset() function may fail if:
[ENXIO] | |
The bus does not implement the reset method. | |
[ETIMEDOUT] | |
The device failed to respond after the reset in the time limits specific to the bus. | |
Similarly, if the device is suspended, and devctl_reset() is called on the device with detach set to false, the device is resumed by the devctl_reset() call. Or, if the driver for the device is detached manually, and devctl_reset() is called on the device with detach set to true, device reset re-attaches the driver.
DEVCTL (3) | April 4, 2019 |
Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.