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