~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/driver-api/driver-model/bus.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/driver-api/driver-model/bus.rst (Version linux-6.12-rc7) and /Documentation/driver-api/driver-model/bus.rst (Version linux-6.6.60)


  1 =========                                           1 =========
  2 Bus Types                                           2 Bus Types
  3 =========                                           3 =========
  4                                                     4 
  5 Definition                                          5 Definition
  6 ~~~~~~~~~~                                          6 ~~~~~~~~~~
  7 See the kerneldoc for the struct bus_type.          7 See the kerneldoc for the struct bus_type.
  8                                                     8 
  9 int bus_register(struct bus_type * bus);            9 int bus_register(struct bus_type * bus);
 10                                                    10 
 11                                                    11 
 12 Declaration                                        12 Declaration
 13 ~~~~~~~~~~~                                        13 ~~~~~~~~~~~
 14                                                    14 
 15 Each bus type in the kernel (PCI, USB, etc) sh     15 Each bus type in the kernel (PCI, USB, etc) should declare one static
 16 object of this type. They must initialize the      16 object of this type. They must initialize the name field, and may
 17 optionally initialize the match callback::         17 optionally initialize the match callback::
 18                                                    18 
 19    struct bus_type pci_bus_type = {                19    struct bus_type pci_bus_type = {
 20           .name = "pci",                           20           .name = "pci",
 21           .match        = pci_bus_match,           21           .match        = pci_bus_match,
 22    };                                              22    };
 23                                                    23 
 24 The structure should be exported to drivers in     24 The structure should be exported to drivers in a header file:
 25                                                    25 
 26 extern struct bus_type pci_bus_type;               26 extern struct bus_type pci_bus_type;
 27                                                    27 
 28                                                    28 
 29 Registration                                       29 Registration
 30 ~~~~~~~~~~~~                                       30 ~~~~~~~~~~~~
 31                                                    31 
 32 When a bus driver is initialized, it calls bus     32 When a bus driver is initialized, it calls bus_register. This
 33 initializes the rest of the fields in the bus      33 initializes the rest of the fields in the bus object and inserts it
 34 into a global list of bus types. Once the bus      34 into a global list of bus types. Once the bus object is registered,
 35 the fields in it are usable by the bus driver.     35 the fields in it are usable by the bus driver.
 36                                                    36 
 37                                                    37 
 38 Callbacks                                          38 Callbacks
 39 ~~~~~~~~~                                          39 ~~~~~~~~~
 40                                                    40 
 41 match(): Attaching Drivers to Devices              41 match(): Attaching Drivers to Devices
 42 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~              42 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 43                                                    43 
 44 The format of device ID structures and the sem     44 The format of device ID structures and the semantics for comparing
 45 them are inherently bus-specific. Drivers typi     45 them are inherently bus-specific. Drivers typically declare an array
 46 of device IDs of devices they support that res     46 of device IDs of devices they support that reside in a bus-specific
 47 driver structure.                                  47 driver structure.
 48                                                    48 
 49 The purpose of the match callback is to give t     49 The purpose of the match callback is to give the bus an opportunity to
 50 determine if a particular driver supports a pa     50 determine if a particular driver supports a particular device by
 51 comparing the device IDs the driver supports w     51 comparing the device IDs the driver supports with the device ID of a
 52 particular device, without sacrificing bus-spe     52 particular device, without sacrificing bus-specific functionality or
 53 type-safety.                                       53 type-safety.
 54                                                    54 
 55 When a driver is registered with the bus, the      55 When a driver is registered with the bus, the bus's list of devices is
 56 iterated over, and the match callback is calle     56 iterated over, and the match callback is called for each device that
 57 does not have a driver associated with it.         57 does not have a driver associated with it.
 58                                                    58 
 59                                                    59 
 60                                                    60 
 61 Device and Driver Lists                            61 Device and Driver Lists
 62 ~~~~~~~~~~~~~~~~~~~~~~~                            62 ~~~~~~~~~~~~~~~~~~~~~~~
 63                                                    63 
 64 The lists of devices and drivers are intended      64 The lists of devices and drivers are intended to replace the local
 65 lists that many buses keep. They are lists of      65 lists that many buses keep. They are lists of struct devices and
 66 struct device_drivers, respectively. Bus drive     66 struct device_drivers, respectively. Bus drivers are free to use the
 67 lists as they please, but conversion to the bu     67 lists as they please, but conversion to the bus-specific type may be
 68 necessary.                                         68 necessary.
 69                                                    69 
 70 The LDM core provides helper functions for ite     70 The LDM core provides helper functions for iterating over each list::
 71                                                    71 
 72   int bus_for_each_dev(struct bus_type * bus,      72   int bus_for_each_dev(struct bus_type * bus, struct device * start,
 73                        void * data,                73                        void * data,
 74                        int (*fn)(struct device     74                        int (*fn)(struct device *, void *));
 75                                                    75 
 76   int bus_for_each_drv(struct bus_type * bus,      76   int bus_for_each_drv(struct bus_type * bus, struct device_driver * start,
 77                        void * data, int (*fn)(     77                        void * data, int (*fn)(struct device_driver *, void *));
 78                                                    78 
 79 These helpers iterate over the respective list     79 These helpers iterate over the respective list, and call the callback
 80 for each device or driver in the list. All lis     80 for each device or driver in the list. All list accesses are
 81 synchronized by taking the bus's lock (read cu     81 synchronized by taking the bus's lock (read currently). The reference
 82 count on each object in the list is incremente     82 count on each object in the list is incremented before the callback is
 83 called; it is decremented after the next objec     83 called; it is decremented after the next object has been obtained. The
 84 lock is not held when calling the callback.        84 lock is not held when calling the callback.
 85                                                    85 
 86                                                    86 
 87 sysfs                                              87 sysfs
 88 ~~~~~~~~                                           88 ~~~~~~~~
 89 There is a top-level directory named 'bus'.        89 There is a top-level directory named 'bus'.
 90                                                    90 
 91 Each bus gets a directory in the bus directory     91 Each bus gets a directory in the bus directory, along with two default
 92 directories::                                      92 directories::
 93                                                    93 
 94         /sys/bus/pci/                              94         /sys/bus/pci/
 95         |-- devices                                95         |-- devices
 96         `-- drivers                                96         `-- drivers
 97                                                    97 
 98 Drivers registered with the bus get a director     98 Drivers registered with the bus get a directory in the bus's drivers
 99 directory::                                        99 directory::
100                                                   100 
101         /sys/bus/pci/                             101         /sys/bus/pci/
102         |-- devices                               102         |-- devices
103         `-- drivers                               103         `-- drivers
104             |-- Intel ICH                         104             |-- Intel ICH
105             |-- Intel ICH Joystick                105             |-- Intel ICH Joystick
106             |-- agpgart                           106             |-- agpgart
107             `-- e100                              107             `-- e100
108                                                   108 
109 Each device that is discovered on a bus of tha    109 Each device that is discovered on a bus of that type gets a symlink in
110 the bus's devices directory to the device's di    110 the bus's devices directory to the device's directory in the physical
111 hierarchy::                                       111 hierarchy::
112                                                   112 
113         /sys/bus/pci/                             113         /sys/bus/pci/
114         |-- devices                               114         |-- devices
115         |   |-- 00:00.0 -> ../../../root/pci0/    115         |   |-- 00:00.0 -> ../../../root/pci0/00:00.0
116         |   |-- 00:01.0 -> ../../../root/pci0/    116         |   |-- 00:01.0 -> ../../../root/pci0/00:01.0
117         |   `-- 00:02.0 -> ../../../root/pci0/    117         |   `-- 00:02.0 -> ../../../root/pci0/00:02.0
118         `-- drivers                               118         `-- drivers
119                                                   119 
120                                                   120 
121 Exporting Attributes                              121 Exporting Attributes
122 ~~~~~~~~~~~~~~~~~~~~                              122 ~~~~~~~~~~~~~~~~~~~~
123                                                   123 
124 ::                                                124 ::
125                                                   125 
126   struct bus_attribute {                          126   struct bus_attribute {
127         struct attribute        attr;             127         struct attribute        attr;
128         ssize_t (*show)(const struct bus_type     128         ssize_t (*show)(const struct bus_type *, char * buf);
129         ssize_t (*store)(const struct bus_type    129         ssize_t (*store)(const struct bus_type *, const char * buf, size_t count);
130   };                                              130   };
131                                                   131 
132 Bus drivers can export attributes using the BU    132 Bus drivers can export attributes using the BUS_ATTR_RW macro that works
133 similarly to the DEVICE_ATTR_RW macro for devi    133 similarly to the DEVICE_ATTR_RW macro for devices. For example, a
134 definition like this::                            134 definition like this::
135                                                   135 
136         static BUS_ATTR_RW(debug);                136         static BUS_ATTR_RW(debug);
137                                                   137 
138 is equivalent to declaring::                      138 is equivalent to declaring::
139                                                   139 
140         static bus_attribute bus_attr_debug;      140         static bus_attribute bus_attr_debug;
141                                                   141 
142 This can then be used to add and remove the at    142 This can then be used to add and remove the attribute from the bus's
143 sysfs directory using::                           143 sysfs directory using::
144                                                   144 
145         int bus_create_file(struct bus_type *,    145         int bus_create_file(struct bus_type *, struct bus_attribute *);
146         void bus_remove_file(struct bus_type *    146         void bus_remove_file(struct bus_type *, struct bus_attribute *);
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php