]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/devctl/devctl.8
zfs: merge openzfs/zfs@e61076683
[FreeBSD/FreeBSD.git] / usr.sbin / devctl / devctl.8
1 .\"
2 .\" Copyright (c) 2015 John Baldwin <jhb@FreeBSD.org>
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd October 31, 2021
28 .Dt DEVCTL 8
29 .Os
30 .Sh NAME
31 .Nm devctl
32 .Nd device control utility
33 .Sh SYNOPSIS
34 .Nm
35 .Cm attach
36 .Ar device
37 .Nm
38 .Cm clear driver
39 .Op Fl f
40 .Ar device
41 .Nm
42 .Cm detach
43 .Op Fl f
44 .Ar device
45 .Nm
46 .Cm disable
47 .Op Fl f
48 .Ar device
49 .Nm
50 .Cm enable
51 .Ar device
52 .Nm
53 .Cm suspend
54 .Ar device
55 .Nm
56 .Cm resume
57 .Ar device
58 .Nm
59 .Cm set driver
60 .Op Fl f
61 .Ar device driver
62 .Nm
63 .Cm rescan
64 .Ar device
65 .Nm
66 .Cm delete
67 .Op Fl f
68 .Ar device
69 .Nm
70 .Cm freeze
71 .Nm
72 .Cm thaw
73 .Nm
74 .Cm reset
75 .Op Fl d
76 .Ar device
77 .Nm
78 .Cm getpath
79 .Ar locator
80 .Ar device
81 .Sh DESCRIPTION
82 The
83 .Nm
84 utility adjusts the state of individual devices in the kernel's
85 internal device hierarchy.
86 Each invocation of
87 .Nm
88 consists of a single command followed by command-specific arguments.
89 Each command operates on a single device specified via the
90 .Ar device
91 argument.
92 The
93 .Ar device
94 may be specified either as the name of an existing device or as a
95 bus-specific address.
96 More details on supported address formats can be found in
97 .Xr devctl 3 .
98 .Pp
99 The following commands are supported:
100 .Bl -tag -width indent
101 .It Cm attach Ar device
102 Force the kernel to re-probe the device.
103 If a suitable driver is found,
104 it is attached to the device.
105 .It Xo Cm detach
106 .Op Fl f
107 .Ar device
108 .Xc
109 Detach the device from its current device driver.
110 If the
111 .Fl f
112 flag is specified,
113 the device driver will be detached even if the device is busy.
114 .It Xo Cm disable
115 .Op Fl f
116 .Ar device
117 .Xc
118 Disable a device.
119 If the device is currently attached to a device driver,
120 the device driver will be detached from the device,
121 but the device will retain its current name.
122 If the
123 .Fl f
124 flag is specified,
125 the device driver will be detached even if the device is busy.
126 .It Cm enable Ar device
127 Enable a device.
128 The device will probe and attach if a suitable device driver is found.
129 Note that this can re-enable a device disabled at boot time via a
130 loader tunable.
131 .It Cm suspend Ar device
132 Suspend a device.
133 This may include placing the device in a reduced power state.
134 .It Cm resume Ar device
135 Resume a suspended device to a fully working state.
136 .It Xo Cm set driver
137 .Op Fl f
138 .Ar device driver
139 .Xc
140 Force the device to use a device driver named
141 .Ar driver .
142 If the device is already attached to a device driver and the
143 .Fl f
144 flag is specified,
145 the device will be detached from its current device driver before it is
146 attached to the new device driver.
147 If the device is already attached to a device driver and the
148 .Fl f
149 flag is not specified,
150 the device will not be changed.
151 .It Xo Cm clear driver
152 .Op Fl f
153 .Ar device
154 .Xc
155 Clear a previously-forced driver name so that the device is able to use any
156 valid device driver.
157 After the previous name has been cleared,
158 the device is reprobed so that other device drivers may attach to it.
159 This can be used to undo an earlier
160 .Cm set driver
161 command.
162 If the device is currently attached to a device driver and the
163 .Fl f
164 flag is not specified,
165 the device will not be changed.
166 .It Cm rescan Ar device
167 Rescan a bus device checking for devices that have been added or
168 removed.
169 .It Xo Cm delete
170 .Op Fl f
171 .Ar device
172 .Xc
173 Delete the device from the device tree.
174 If the
175 .Fl f
176 flag is specified,
177 the device will be deleted even if it is physically present.
178 This command should be used with care as a device that is deleted but present
179 can no longer be used unless the parent bus device rediscovers the device via
180 a rescan request.
181 .It Cm freeze
182 Freeze probe and attach processing initiated in response to drivers being
183 loaded.
184 Drivers are placed on a
185 .Do
186 frozen list
187 .Dc
188 and processed when a later
189 .Do
190 thaw
191 .Dc
192 occurs.
193 .It Cm thaw
194 Resume (thaw the freeze) probe and attach initiated in response to drivers
195 being loaded.
196 In addition to resuming, all pending actions that were frozen during the freeze
197 are performed.
198 .It Xo Cm reset
199 .Op Fl d
200 .Ar device
201 .Xc
202 Reset the device, using bus-specific reset method.
203 Drivers for the devices being reset are suspended around the reset.
204 If the
205 .Fl d
206 option is specified, drivers are detached instead.
207 .Pp
208 Currently, resets are implemented for PCIe buses and PCI devices.
209 For PCIe bus, the link is disabled and then re-trained, causing all
210 children of the bus to reset.
211 Use
212 .Fl p
213 option of
214 .Xr devinfo 8
215 tool to report parent bus for the device.
216 For PCI device, if Function-Level Reset is implemented by it, FLR is
217 tried first; if failed or not implemented, power reset is tried.
218 .Pp
219 If you have detached or suspended a child device explicitly and then
220 do a reset, the child device will end up attached.
221 .It Xo Cm getpath
222 .Ar locator
223 .Ar device
224 .Xc
225 Prints the full path to the
226 .Ar device
227 using the
228 .Ar locator
229 method to get the path name.
230 Currently, only the
231 .Dq UEFI
232 and
233 .Dq FreeBSD
234 locators are implemented.
235 The UEFI locator constructs a path to the device using the rules
236 outlines for DEVICE_PATH in the UEFI standard.
237 The FreeBSD locator constructs a path back to the root of the tree
238 with the nodes separated by slashes.
239 .El
240 .Sh SEE ALSO
241 .Xr devctl 3 ,
242 .Xr devinfo 8
243 .Sh HISTORY
244 The
245 .Nm
246 utility first appeared in
247 .Fx 10.3 .
248 .Sh BUGS
249 Currently there is no administrative flag to prevent re-attach or resume
250 of the manually detached or suspended devices after reset.
251 Similarly, there is no flag to prevent un-suspending of the manually
252 suspended devices after system resume.