Lines Matching full:devices

15 Most of the work of porting devices drivers to the new model happens
82 subdirectories: 'devices' and 'drivers'::
86 |-- devices
91 Step 2: Registering Devices.
127 When devices are discovered or registered with the bus type, the
133 necessary for representing devices in sysfs.
138 The driver model maintains an ordered list of devices that it uses
140 devices are shutdown before their physical parents, and vice versa.
142 devices.
176 This should happen on buses that support hotpluggable devices.
188 /sys/devices/pci0/
208 Also, symlinks are created in the bus's 'devices' directory
211 /sys/bus/pci/devices/
212 |-- 00:00.0 -> ../../../devices/pci0/00:00.0
213 |-- 00:01.0 -> ../../../devices/pci0/00:01.0
214 |-- 00:02.0 -> ../../../devices/pci0/00:02.0
215 |-- 00:1e.0 -> ../../../devices/pci0/00:1e.0
216 |-- 00:1f.0 -> ../../../devices/pci0/00:1f.0
217 |-- 00:1f.1 -> ../../../devices/pci0/00:1f.1
218 |-- 00:1f.2 -> ../../../devices/pci0/00:1f.2
219 |-- 00:1f.3 -> ../../../devices/pci0/00:1f.3
220 |-- 00:1f.5 -> ../../../devices/pci0/00:1f.5
221 |-- 01:00.0 -> ../../../devices/pci0/00:01.0/01:00.0
222 |-- 02:1f.0 -> ../../../devices/pci0/00:02.0/02:1f.0
223 |-- 03:00.0 -> ../../../devices/pci0/00:02.0/02:1f.0/03:00.0
224 `-- 04:04.0 -> ../../../devices/pci0/00:1e.0/04:04.0
236 Just like with devices, do something like::
332 devices must be bound to a driver, or drivers must be bound to all
333 devices that it supports.
336 bus driver compares these IDs to the IDs of devices registered with it.
353 When a driver is registered, the bus's list of devices is iterated
358 set, the device is added to a per-driver list of devices, and a
364 | `-- 00:0b.0 -> ../../../../devices/pci0/00:0b.0
367 | `-- 00:00.0 -> ../../../../devices/pci0/00:00.0
369 | `-- 00:0c.0 -> ../../../../devices/pci0/00:0c.0
407 struct bus_type contains a list of all devices registered with the bus
408 type. This includes all devices on all instances of that bus type.
412 The core provides an iterator to access these devices::
424 The drivers may be iterated over, like devices::