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