1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * V4L2 asynchronous subdevice registration API 4 * 5 * Copyright (C) 2012-2013, Guennadi Liakhovetski <g.liakhovetski@gmx.de> 6 */ 7 8 #ifndef V4L2_ASYNC_H 9 #define V4L2_ASYNC_H 10 11 #include <linux/list.h> 12 #include <linux/mutex.h> 13 14 struct dentry; 15 struct device; 16 struct device_node; 17 struct v4l2_device; 18 struct v4l2_subdev; 19 struct v4l2_async_notifier; 20 21 /** 22 * enum v4l2_async_match_type - type of asynchronous subdevice logic to be used 23 * in order to identify a match 24 * 25 * @V4L2_ASYNC_MATCH_TYPE_I2C: Match will check for I2C adapter ID and address 26 * @V4L2_ASYNC_MATCH_TYPE_FWNODE: Match will use firmware node 27 * 28 * This enum is used by the asynchronous connection logic to define the 29 * algorithm that will be used to match an asynchronous device. 30 */ 31 enum v4l2_async_match_type { 32 V4L2_ASYNC_MATCH_TYPE_I2C, 33 V4L2_ASYNC_MATCH_TYPE_FWNODE, 34 }; 35 36 /** 37 * struct v4l2_async_match_desc - async connection match information 38 * 39 * @type: type of match that will be used 40 * @fwnode: pointer to &struct fwnode_handle to be matched. 41 * Used if @match_type is %V4L2_ASYNC_MATCH_TYPE_FWNODE. 42 * @i2c: embedded struct with I2C parameters to be matched. 43 * Both @match.i2c.adapter_id and @match.i2c.address 44 * should be matched. 45 * Used if @match_type is %V4L2_ASYNC_MATCH_TYPE_I2C. 46 * @i2c.adapter_id: 47 * I2C adapter ID to be matched. 48 * Used if @match_type is %V4L2_ASYNC_MATCH_TYPE_I2C. 49 * @i2c.address: 50 * I2C address to be matched. 51 * Used if @match_type is %V4L2_ASYNC_MATCH_TYPE_I2C. 52 */ 53 struct v4l2_async_match_desc { 54 enum v4l2_async_match_type type; 55 union { 56 struct fwnode_handle *fwnode; 57 struct { 58 int adapter_id; 59 unsigned short address; 60 } i2c; 61 }; 62 }; 63 64 /** 65 * struct v4l2_async_connection - connection descriptor, as known to a bridge 66 * 67 * @match: struct of match type and per-bus type matching data sets 68 * @asc_entry: used to add struct v4l2_async_connection objects to the 69 * notifier @waiting_list or @done_list 70 * @sd: the related sub-device 71 * 72 * When this struct is used as a member in a driver specific struct, 73 * the driver specific struct shall contain the &struct 74 * v4l2_async_connection as its first member. 75 */ 76 struct v4l2_async_connection { 77 struct v4l2_async_match_desc match; 78 struct list_head asc_entry; 79 struct v4l2_subdev *sd; 80 }; 81 82 /** 83 * struct v4l2_async_notifier_operations - Asynchronous V4L2 notifier operations 84 * @bound: a subdevice driver has successfully probed one of the subdevices 85 * @complete: All subdevices have been probed successfully. The complete 86 * callback is only executed for the root notifier. 87 * @unbind: a subdevice is leaving 88 * @destroy: the asc is about to be freed 89 */ 90 struct v4l2_async_notifier_operations { 91 int (*bound)(struct v4l2_async_notifier *notifier, 92 struct v4l2_subdev *subdev, 93 struct v4l2_async_connection *asc); 94 int (*complete)(struct v4l2_async_notifier *notifier); 95 void (*unbind)(struct v4l2_async_notifier *notifier, 96 struct v4l2_subdev *subdev, 97 struct v4l2_async_connection *asc); 98 void (*destroy)(struct v4l2_async_connection *asc); 99 }; 100 101 /** 102 * struct v4l2_async_notifier - v4l2_device notifier data 103 * 104 * @ops: notifier operations 105 * @v4l2_dev: v4l2_device of the root notifier, NULL otherwise 106 * @sd: sub-device that registered the notifier, NULL otherwise 107 * @parent: parent notifier 108 * @waiting_list: list of struct v4l2_async_connection, waiting for their 109 * drivers 110 * @done_list: list of struct v4l2_subdev, already probed 111 * @notifier_entry: member in a global list of notifiers 112 */ 113 struct v4l2_async_notifier { 114 const struct v4l2_async_notifier_operations *ops; 115 struct v4l2_device *v4l2_dev; 116 struct v4l2_subdev *sd; 117 struct v4l2_async_notifier *parent; 118 struct list_head waiting_list; 119 struct list_head done_list; 120 struct list_head notifier_entry; 121 }; 122 123 /** 124 * v4l2_async_debug_init - Initialize debugging tools. 125 * 126 * @debugfs_dir: pointer to the parent debugfs &struct dentry 127 */ 128 void v4l2_async_debug_init(struct dentry *debugfs_dir); 129 130 /** 131 * v4l2_async_nf_init - Initialize a notifier. 132 * 133 * @notifier: pointer to &struct v4l2_async_notifier 134 * 135 * This function initializes the notifier @asc_list. It must be called 136 * before adding a subdevice to a notifier, using one of: 137 * v4l2_async_nf_add_fwnode_remote(), v4l2_async_nf_add_fwnode() or 138 * v4l2_async_nf_add_i2c(). 139 */ 140 void v4l2_async_nf_init(struct v4l2_async_notifier *notifier); 141 142 struct v4l2_async_connection * 143 __v4l2_async_nf_add_fwnode(struct v4l2_async_notifier *notifier, 144 struct fwnode_handle *fwnode, 145 unsigned int asc_struct_size); 146 /** 147 * v4l2_async_nf_add_fwnode - Allocate and add a fwnode async 148 * subdev to the notifier's master asc_list. 149 * 150 * @notifier: pointer to &struct v4l2_async_notifier 151 * @fwnode: fwnode handle of the sub-device to be matched, pointer to 152 * &struct fwnode_handle 153 * @type: Type of the driver's async sub-device or connection struct. The 154 * &struct v4l2_async_connection shall be the first member of the 155 * driver's async struct, i.e. both begin at the same memory address. 156 * 157 * Allocate a fwnode-matched asc of size asc_struct_size, and add it to the 158 * notifiers @asc_list. The function also gets a reference of the fwnode which 159 * is released later at notifier cleanup time. 160 */ 161 #define v4l2_async_nf_add_fwnode(notifier, fwnode, type) \ 162 ((type *)__v4l2_async_nf_add_fwnode(notifier, fwnode, sizeof(type))) 163 164 struct v4l2_async_connection * 165 __v4l2_async_nf_add_fwnode_remote(struct v4l2_async_notifier *notif, 166 struct fwnode_handle *endpoint, 167 unsigned int asc_struct_size); 168 /** 169 * v4l2_async_nf_add_fwnode_remote - Allocate and add a fwnode 170 * remote async subdev to the 171 * notifier's master asc_list. 172 * 173 * @notifier: pointer to &struct v4l2_async_notifier 174 * @ep: local endpoint pointing to the remote connection to be matched, 175 * pointer to &struct fwnode_handle 176 * @type: Type of the driver's async connection struct. The &struct 177 * v4l2_async_connection shall be the first member of the driver's async 178 * connection struct, i.e. both begin at the same memory address. 179 * 180 * Gets the remote endpoint of a given local endpoint, set it up for fwnode 181 * matching and adds the async connection to the notifier's @asc_list. The 182 * function also gets a reference of the fwnode which is released later at 183 * notifier cleanup time. 184 * 185 * This is just like v4l2_async_nf_add_fwnode(), but with the 186 * exception that the fwnode refers to a local endpoint, not the remote one. 187 */ 188 #define v4l2_async_nf_add_fwnode_remote(notifier, ep, type) \ 189 ((type *)__v4l2_async_nf_add_fwnode_remote(notifier, ep, sizeof(type))) 190 191 struct v4l2_async_connection * 192 __v4l2_async_nf_add_i2c(struct v4l2_async_notifier *notifier, 193 int adapter_id, unsigned short address, 194 unsigned int asc_struct_size); 195 /** 196 * v4l2_async_nf_add_i2c - Allocate and add an i2c async 197 * subdev to the notifier's master asc_list. 198 * 199 * @notifier: pointer to &struct v4l2_async_notifier 200 * @adapter: I2C adapter ID to be matched 201 * @address: I2C address of connection to be matched 202 * @type: Type of the driver's async connection struct. The &struct 203 * v4l2_async_connection shall be the first member of the driver's async 204 * connection struct, i.e. both begin at the same memory address. 205 * 206 * Same as v4l2_async_nf_add_fwnode() but for I2C matched 207 * connections. 208 */ 209 #define v4l2_async_nf_add_i2c(notifier, adapter, address, type) \ 210 ((type *)__v4l2_async_nf_add_i2c(notifier, adapter, address, \ 211 sizeof(type))) 212 213 /** 214 * v4l2_async_connection_unique - return a unique &struct v4l2_async_connection 215 * for a sub-device 216 * @sd: the sub-device 217 * 218 * Return an async connection for a sub-device, when there is a single 219 * one only. 220 */ 221 struct v4l2_async_connection * 222 v4l2_async_connection_unique(struct v4l2_subdev *sd); 223 224 /** 225 * v4l2_async_nf_register - registers a subdevice asynchronous notifier 226 * 227 * @v4l2_dev: pointer to &struct v4l2_device 228 * @notifier: pointer to &struct v4l2_async_notifier 229 */ 230 int v4l2_async_nf_register(struct v4l2_device *v4l2_dev, 231 struct v4l2_async_notifier *notifier); 232 233 /** 234 * v4l2_async_subdev_nf_register - registers a subdevice asynchronous 235 * notifier for a sub-device 236 * 237 * @sd: pointer to &struct v4l2_subdev 238 * @notifier: pointer to &struct v4l2_async_notifier 239 */ 240 int v4l2_async_subdev_nf_register(struct v4l2_subdev *sd, 241 struct v4l2_async_notifier *notifier); 242 243 /** 244 * v4l2_async_nf_unregister - unregisters a subdevice 245 * asynchronous notifier 246 * 247 * @notifier: pointer to &struct v4l2_async_notifier 248 */ 249 void v4l2_async_nf_unregister(struct v4l2_async_notifier *notifier); 250 251 /** 252 * v4l2_async_nf_cleanup - clean up notifier resources 253 * @notifier: the notifier the resources of which are to be cleaned up 254 * 255 * Release memory resources related to a notifier, including the async 256 * connections allocated for the purposes of the notifier but not the notifier 257 * itself. The user is responsible for calling this function to clean up the 258 * notifier after calling v4l2_async_nf_add_fwnode_remote(), 259 * v4l2_async_nf_add_fwnode() or v4l2_async_nf_add_i2c(). 260 * 261 * There is no harm from calling v4l2_async_nf_cleanup() in other 262 * cases as long as its memory has been zeroed after it has been 263 * allocated. 264 */ 265 void v4l2_async_nf_cleanup(struct v4l2_async_notifier *notifier); 266 267 /** 268 * v4l2_async_register_subdev - registers a sub-device to the asynchronous 269 * subdevice framework 270 * 271 * @sd: pointer to &struct v4l2_subdev 272 */ 273 int v4l2_async_register_subdev(struct v4l2_subdev *sd); 274 275 /** 276 * v4l2_async_register_subdev_sensor - registers a sensor sub-device to the 277 * asynchronous sub-device framework and 278 * parse set up common sensor related 279 * devices 280 * 281 * @sd: pointer to struct &v4l2_subdev 282 * 283 * This function is just like v4l2_async_register_subdev() with the exception 284 * that calling it will also parse firmware interfaces for remote references 285 * using v4l2_async_nf_parse_fwnode_sensor() and registers the 286 * async sub-devices. The sub-device is similarly unregistered by calling 287 * v4l2_async_unregister_subdev(). 288 * 289 * While registered, the subdev module is marked as in-use. 290 * 291 * An error is returned if the module is no longer loaded on any attempts 292 * to register it. 293 */ 294 int __must_check 295 v4l2_async_register_subdev_sensor(struct v4l2_subdev *sd); 296 297 /** 298 * v4l2_async_unregister_subdev - unregisters a sub-device to the asynchronous 299 * subdevice framework 300 * 301 * @sd: pointer to &struct v4l2_subdev 302 */ 303 void v4l2_async_unregister_subdev(struct v4l2_subdev *sd); 304 #endif 305