aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2008-11-29 19:36:58 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-30 06:38:37 -0500
commit2a1fcdf08230522bd5024f91da24aaa6e8d81f59 (patch)
tree03781d767920d0569e6441ff9c74186d50f70a23
parent07b1747c8d0bb463311f9dd05d4c013765abe2eb (diff)
V4L/DVB (9820): v4l2: add v4l2_device and v4l2_subdev structs to the v4l2 framework.
Start implementing a proper v4l2 framework as discussed during the Linux Plumbers Conference 2008. Introduces v4l2_device (for device instances) and v4l2_subdev (representing sub-device instances). Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Reviewed-by: Laurent Pinchart <laurent.pinchart@skynet.be> Reviewed-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Reviewed-by: Andy Walls <awalls@radix.net> Reviewed-by: David Brownell <david-b@pacbell.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--Documentation/video4linux/v4l2-framework.txt362
-rw-r--r--drivers/media/video/Makefile2
-rw-r--r--drivers/media/video/v4l2-device.c86
-rw-r--r--drivers/media/video/v4l2-subdev.c108
-rw-r--r--include/media/v4l2-device.h109
-rw-r--r--include/media/v4l2-subdev.h188
6 files changed, 854 insertions, 1 deletions
diff --git a/Documentation/video4linux/v4l2-framework.txt b/Documentation/video4linux/v4l2-framework.txt
new file mode 100644
index 000000000000..60eaf54e7eff
--- /dev/null
+++ b/Documentation/video4linux/v4l2-framework.txt
@@ -0,0 +1,362 @@
1Overview of the V4L2 driver framework
2=====================================
3
4This text documents the various structures provided by the V4L2 framework and
5their relationships.
6
7
8Introduction
9------------
10
11The V4L2 drivers tend to be very complex due to the complexity of the
12hardware: most devices have multiple ICs, export multiple device nodes in
13/dev, and create also non-V4L2 devices such as DVB, ALSA, FB, I2C and input
14(IR) devices.
15
16Especially the fact that V4L2 drivers have to setup supporting ICs to
17do audio/video muxing/encoding/decoding makes it more complex than most.
18Usually these ICs are connected to the main bridge driver through one or
19more I2C busses, but other busses can also be used. Such devices are
20called 'sub-devices'.
21
22For a long time the framework was limited to the video_device struct for
23creating V4L device nodes and video_buf for handling the video buffers
24(note that this document does not discuss the video_buf framework).
25
26This meant that all drivers had to do the setup of device instances and
27connecting to sub-devices themselves. Some of this is quite complicated
28to do right and many drivers never did do it correctly.
29
30There is also a lot of common code that could never be refactored due to
31the lack of a framework.
32
33So this framework sets up the basic building blocks that all drivers
34need and this same framework should make it much easier to refactor
35common code into utility functions shared by all drivers.
36
37
38Structure of a driver
39---------------------
40
41All drivers have the following structure:
42
431) A struct for each device instance containing the device state.
44
452) A way of initializing and commanding sub-devices (if any).
46
473) Creating V4L2 device nodes (/dev/videoX, /dev/vbiX, /dev/radioX and
48 /dev/vtxX) and keeping track of device-node specific data.
49
504) Filehandle-specific structs containing per-filehandle data.
51
52This is a rough schematic of how it all relates:
53
54 device instances
55 |
56 +-sub-device instances
57 |
58 \-V4L2 device nodes
59 |
60 \-filehandle instances
61
62
63Structure of the framework
64--------------------------
65
66The framework closely resembles the driver structure: it has a v4l2_device
67struct for the device instance data, a v4l2_subdev struct to refer to
68sub-device instances, the video_device struct stores V4L2 device node data
69and in the future a v4l2_fh struct will keep track of filehandle instances
70(this is not yet implemented).
71
72
73struct v4l2_device
74------------------
75
76Each device instance is represented by a struct v4l2_device (v4l2-device.h).
77Very simple devices can just allocate this struct, but most of the time you
78would embed this struct inside a larger struct.
79
80You must register the device instance:
81
82 v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev);
83
84Registration will initialize the v4l2_device struct and link dev->driver_data
85to v4l2_dev. Registration will also set v4l2_dev->name to a value derived from
86dev (driver name followed by the bus_id, to be precise). You may change the
87name after registration if you want.
88
89You unregister with:
90
91 v4l2_device_unregister(struct v4l2_device *v4l2_dev);
92
93Unregistering will also automatically unregister all subdevs from the device.
94
95Sometimes you need to iterate over all devices registered by a specific
96driver. This is usually the case if multiple device drivers use the same
97hardware. E.g. the ivtvfb driver is a framebuffer driver that uses the ivtv
98hardware. The same is true for alsa drivers for example.
99
100You can iterate over all registered devices as follows:
101
102static int callback(struct device *dev, void *p)
103{
104 struct v4l2_device *v4l2_dev = dev_get_drvdata(dev);
105
106 /* test if this device was inited */
107 if (v4l2_dev == NULL)
108 return 0;
109 ...
110 return 0;
111}
112
113int iterate(void *p)
114{
115 struct device_driver *drv;
116 int err;
117
118 /* Find driver 'ivtv' on the PCI bus.
119 pci_bus_type is a global. For USB busses use usb_bus_type. */
120 drv = driver_find("ivtv", &pci_bus_type);
121 /* iterate over all ivtv device instances */
122 err = driver_for_each_device(drv, NULL, p, callback);
123 put_driver(drv);
124 return err;
125}
126
127Sometimes you need to keep a running counter of the device instance. This is
128commonly used to map a device instance to an index of a module option array.
129
130The recommended approach is as follows:
131
132static atomic_t drv_instance = ATOMIC_INIT(0);
133
134static int __devinit drv_probe(struct pci_dev *dev,
135 const struct pci_device_id *pci_id)
136{
137 ...
138 state->instance = atomic_inc_return(&drv_instance) - 1;
139}
140
141
142struct v4l2_subdev
143------------------
144
145Many drivers need to communicate with sub-devices. These devices can do all
146sort of tasks, but most commonly they handle audio and/or video muxing,
147encoding or decoding. For webcams common sub-devices are sensors and camera
148controllers.
149
150Usually these are I2C devices, but not necessarily. In order to provide the
151driver with a consistent interface to these sub-devices the v4l2_subdev struct
152(v4l2-subdev.h) was created.
153
154Each sub-device driver must have a v4l2_subdev struct. This struct can be
155stand-alone for simple sub-devices or it might be embedded in a larger struct
156if more state information needs to be stored. Usually there is a low-level
157device struct (e.g. i2c_client) that contains the device data as setup
158by the kernel. It is recommended to store that pointer in the private
159data of v4l2_subdev using v4l2_set_subdevdata(). That makes it easy to go
160from a v4l2_subdev to the actual low-level bus-specific device data.
161
162You also need a way to go from the low-level struct to v4l2_subdev. For the
163common i2c_client struct the i2c_set_clientdata() call is used to store a
164v4l2_subdev pointer, for other busses you may have to use other methods.
165
166From the bridge driver perspective you load the sub-device module and somehow
167obtain the v4l2_subdev pointer. For i2c devices this is easy: you call
168i2c_get_clientdata(). For other busses something similar needs to be done.
169Helper functions exists for sub-devices on an I2C bus that do most of this
170tricky work for you.
171
172Each v4l2_subdev contains function pointers that sub-device drivers can
173implement (or leave NULL if it is not applicable). Since sub-devices can do
174so many different things and you do not want to end up with a huge ops struct
175of which only a handful of ops are commonly implemented, the function pointers
176are sorted according to category and each category has its own ops struct.
177
178The top-level ops struct contains pointers to the category ops structs, which
179may be NULL if the subdev driver does not support anything from that category.
180
181It looks like this:
182
183struct v4l2_subdev_core_ops {
184 int (*g_chip_ident)(struct v4l2_subdev *sd, struct v4l2_chip_ident *chip);
185 int (*log_status)(struct v4l2_subdev *sd);
186 int (*init)(struct v4l2_subdev *sd, u32 val);
187 ...
188};
189
190struct v4l2_subdev_tuner_ops {
191 ...
192};
193
194struct v4l2_subdev_audio_ops {
195 ...
196};
197
198struct v4l2_subdev_video_ops {
199 ...
200};
201
202struct v4l2_subdev_ops {
203 const struct v4l2_subdev_core_ops *core;
204 const struct v4l2_subdev_tuner_ops *tuner;
205 const struct v4l2_subdev_audio_ops *audio;
206 const struct v4l2_subdev_video_ops *video;
207};
208
209The core ops are common to all subdevs, the other categories are implemented
210depending on the sub-device. E.g. a video device is unlikely to support the
211audio ops and vice versa.
212
213This setup limits the number of function pointers while still making it easy
214to add new ops and categories.
215
216A sub-device driver initializes the v4l2_subdev struct using:
217
218 v4l2_subdev_init(subdev, &ops);
219
220Afterwards you need to initialize subdev->name with a unique name and set the
221module owner. This is done for you if you use the i2c helper functions.
222
223A device (bridge) driver needs to register the v4l2_subdev with the
224v4l2_device:
225
226 int err = v4l2_device_register_subdev(device, subdev);
227
228This can fail if the subdev module disappeared before it could be registered.
229After this function was called successfully the subdev->dev field points to
230the v4l2_device.
231
232You can unregister a sub-device using:
233
234 v4l2_device_unregister_subdev(subdev);
235
236Afterwards the subdev module can be unloaded and subdev->dev == NULL.
237
238You can call an ops function either directly:
239
240 err = subdev->ops->core->g_chip_ident(subdev, &chip);
241
242but it is better and easier to use this macro:
243
244 err = v4l2_subdev_call(subdev, core, g_chip_ident, &chip);
245
246The macro will to the right NULL pointer checks and returns -ENODEV if subdev
247is NULL, -ENOIOCTLCMD if either subdev->core or subdev->core->g_chip_ident is
248NULL, or the actual result of the subdev->ops->core->g_chip_ident ops.
249
250It is also possible to call all or a subset of the sub-devices:
251
252 v4l2_device_call_all(dev, 0, core, g_chip_ident, &chip);
253
254Any subdev that does not support this ops is skipped and error results are
255ignored. If you want to check for errors use this:
256
257 err = v4l2_device_call_until_err(dev, 0, core, g_chip_ident, &chip);
258
259Any error except -ENOIOCTLCMD will exit the loop with that error. If no
260errors (except -ENOIOCTLCMD) occured, then 0 is returned.
261
262The second argument to both calls is a group ID. If 0, then all subdevs are
263called. If non-zero, then only those whose group ID match that value will
264be called. Before a bridge driver registers a subdev it can set subdev->grp_id
265to whatever value it wants (it's 0 by default). This value is owned by the
266bridge driver and the sub-device driver will never modify or use it.
267
268The group ID gives the bridge driver more control how callbacks are called.
269For example, there may be multiple audio chips on a board, each capable of
270changing the volume. But usually only one will actually be used when the
271user want to change the volume. You can set the group ID for that subdev to
272e.g. AUDIO_CONTROLLER and specify that as the group ID value when calling
273v4l2_device_call_all(). That ensures that it will only go to the subdev
274that needs it.
275
276The advantage of using v4l2_subdev is that it is a generic struct and does
277not contain any knowledge about the underlying hardware. So a driver might
278contain several subdevs that use an I2C bus, but also a subdev that is
279controlled through GPIO pins. This distinction is only relevant when setting
280up the device, but once the subdev is registered it is completely transparent.
281
282
283I2C sub-device drivers
284----------------------
285
286Since these drivers are so common, special helper functions are available to
287ease the use of these drivers (v4l2-common.h).
288
289The recommended method of adding v4l2_subdev support to an I2C driver is to
290embed the v4l2_subdev struct into the state struct that is created for each
291I2C device instance. Very simple devices have no state struct and in that case
292you can just create a v4l2_subdev directly.
293
294A typical state struct would look like this (where 'chipname' is replaced by
295the name of the chip):
296
297struct chipname_state {
298 struct v4l2_subdev sd;
299 ... /* additional state fields */
300};
301
302Initialize the v4l2_subdev struct as follows:
303
304 v4l2_i2c_subdev_init(&state->sd, client, subdev_ops);
305
306This function will fill in all the fields of v4l2_subdev and ensure that the
307v4l2_subdev and i2c_client both point to one another.
308
309You should also add a helper inline function to go from a v4l2_subdev pointer
310to a chipname_state struct:
311
312static inline struct chipname_state *to_state(struct v4l2_subdev *sd)
313{
314 return container_of(sd, struct chipname_state, sd);
315}
316
317Use this to go from the v4l2_subdev struct to the i2c_client struct:
318
319 struct i2c_client *client = v4l2_get_subdevdata(sd);
320
321And this to go from an i2c_client to a v4l2_subdev struct:
322
323 struct v4l2_subdev *sd = i2c_get_clientdata(client);
324
325Finally you need to make a command function to make driver->command()
326call the right subdev_ops functions:
327
328static int subdev_command(struct i2c_client *client, unsigned cmd, void *arg)
329{
330 return v4l2_subdev_command(i2c_get_clientdata(client), cmd, arg);
331}
332
333If driver->command is never used then you can leave this out. Eventually the
334driver->command usage should be removed from v4l.
335
336Make sure to call v4l2_device_unregister_subdev(sd) when the remove() callback
337is called. This will unregister the sub-device from the bridge driver. It is
338safe to call this even if the sub-device was never registered.
339
340
341The bridge driver also has some helper functions it can use:
342
343struct v4l2_subdev *sd = v4l2_i2c_new_subdev(adapter, "module_foo", "chipid", 0x36);
344
345This loads the given module (can be NULL if no module needs to be loaded) and
346calls i2c_new_device() with the given i2c_adapter and chip/address arguments.
347If all goes well, then it registers the subdev with the v4l2_device. It gets
348the v4l2_device by calling i2c_get_adapdata(adapter), so you should make sure
349that adapdata is set to v4l2_device when you setup the i2c_adapter in your
350driver.
351
352You can also use v4l2_i2c_new_probed_subdev() which is very similar to
353v4l2_i2c_new_subdev(), except that it has an array of possible I2C addresses
354that it should probe. Internally it calls i2c_new_probed_device().
355
356Both functions return NULL if something went wrong.
357
358
359struct video_device
360-------------------
361
362Not yet documented.
diff --git a/drivers/media/video/Makefile b/drivers/media/video/Makefile
index 492ab3dce71b..84a2be0cbbe7 100644
--- a/drivers/media/video/Makefile
+++ b/drivers/media/video/Makefile
@@ -10,7 +10,7 @@ stkwebcam-objs := stk-webcam.o stk-sensor.o
10 10
11omap2cam-objs := omap24xxcam.o omap24xxcam-dma.o 11omap2cam-objs := omap24xxcam.o omap24xxcam-dma.o
12 12
13videodev-objs := v4l2-dev.o v4l2-ioctl.o 13videodev-objs := v4l2-dev.o v4l2-ioctl.o v4l2-device.o v4l2-subdev.o
14 14
15obj-$(CONFIG_VIDEO_DEV) += videodev.o v4l2-compat-ioctl32.o v4l2-int-device.o 15obj-$(CONFIG_VIDEO_DEV) += videodev.o v4l2-compat-ioctl32.o v4l2-int-device.o
16 16
diff --git a/drivers/media/video/v4l2-device.c b/drivers/media/video/v4l2-device.c
new file mode 100644
index 000000000000..9eefde031597
--- /dev/null
+++ b/drivers/media/video/v4l2-device.c
@@ -0,0 +1,86 @@
1/*
2 V4L2 device support.
3
4 Copyright (C) 2008 Hans Verkuil <hverkuil@xs4all.nl>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/types.h>
22#include <linux/ioctl.h>
23#include <linux/i2c.h>
24#include <linux/videodev2.h>
25#include <media/v4l2-device.h>
26
27int v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev)
28{
29 if (dev == NULL || v4l2_dev == NULL)
30 return -EINVAL;
31 /* Warn if we apparently re-register a device */
32 WARN_ON(dev_get_drvdata(dev));
33 INIT_LIST_HEAD(&v4l2_dev->subdevs);
34 spin_lock_init(&v4l2_dev->lock);
35 v4l2_dev->dev = dev;
36 snprintf(v4l2_dev->name, sizeof(v4l2_dev->name), "%s %s",
37 dev->driver->name, dev->bus_id);
38 dev_set_drvdata(dev, v4l2_dev);
39 return 0;
40}
41EXPORT_SYMBOL_GPL(v4l2_device_register);
42
43void v4l2_device_unregister(struct v4l2_device *v4l2_dev)
44{
45 struct v4l2_subdev *sd, *next;
46
47 if (v4l2_dev == NULL || v4l2_dev->dev == NULL)
48 return;
49 dev_set_drvdata(v4l2_dev->dev, NULL);
50 /* unregister subdevs */
51 list_for_each_entry_safe(sd, next, &v4l2_dev->subdevs, list)
52 v4l2_device_unregister_subdev(sd);
53
54 v4l2_dev->dev = NULL;
55}
56EXPORT_SYMBOL_GPL(v4l2_device_unregister);
57
58int v4l2_device_register_subdev(struct v4l2_device *dev, struct v4l2_subdev *sd)
59{
60 /* Check for valid input */
61 if (dev == NULL || sd == NULL || !sd->name[0])
62 return -EINVAL;
63 /* Warn if we apparently re-register a subdev */
64 WARN_ON(sd->dev);
65 if (!try_module_get(sd->owner))
66 return -ENODEV;
67 sd->dev = dev;
68 spin_lock(&dev->lock);
69 list_add_tail(&sd->list, &dev->subdevs);
70 spin_unlock(&dev->lock);
71 return 0;
72}
73EXPORT_SYMBOL_GPL(v4l2_device_register_subdev);
74
75void v4l2_device_unregister_subdev(struct v4l2_subdev *sd)
76{
77 /* return if it isn't registered */
78 if (sd == NULL || sd->dev == NULL)
79 return;
80 spin_lock(&sd->dev->lock);
81 list_del(&sd->list);
82 spin_unlock(&sd->dev->lock);
83 sd->dev = NULL;
84 module_put(sd->owner);
85}
86EXPORT_SYMBOL_GPL(v4l2_device_unregister_subdev);
diff --git a/drivers/media/video/v4l2-subdev.c b/drivers/media/video/v4l2-subdev.c
new file mode 100644
index 000000000000..fe1f01c970ac
--- /dev/null
+++ b/drivers/media/video/v4l2-subdev.c
@@ -0,0 +1,108 @@
1/*
2 V4L2 sub-device support.
3
4 Copyright (C) 2008 Hans Verkuil <hverkuil@xs4all.nl>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/types.h>
22#include <linux/ioctl.h>
23#include <linux/i2c.h>
24#include <linux/videodev2.h>
25#include <media/v4l2-subdev.h>
26
27int v4l2_subdev_command(struct v4l2_subdev *sd, unsigned cmd, void *arg)
28{
29 switch (cmd) {
30 case VIDIOC_QUERYCTRL:
31 return v4l2_subdev_call(sd, core, querymenu, arg);
32 case VIDIOC_G_CTRL:
33 return v4l2_subdev_call(sd, core, g_ctrl, arg);
34 case VIDIOC_S_CTRL:
35 return v4l2_subdev_call(sd, core, s_ctrl, arg);
36 case VIDIOC_QUERYMENU:
37 return v4l2_subdev_call(sd, core, queryctrl, arg);
38 case VIDIOC_LOG_STATUS:
39 return v4l2_subdev_call(sd, core, log_status);
40 case VIDIOC_G_CHIP_IDENT:
41 return v4l2_subdev_call(sd, core, g_chip_ident, arg);
42 case VIDIOC_INT_S_STANDBY:
43 return v4l2_subdev_call(sd, core, s_standby, *(u32 *)arg);
44 case VIDIOC_INT_RESET:
45 return v4l2_subdev_call(sd, core, reset, *(u32 *)arg);
46 case VIDIOC_INT_S_GPIO:
47 return v4l2_subdev_call(sd, core, s_gpio, *(u32 *)arg);
48 case VIDIOC_INT_INIT:
49 return v4l2_subdev_call(sd, core, init, *(u32 *)arg);
50#ifdef CONFIG_VIDEO_ADV_DEBUG
51 case VIDIOC_DBG_G_REGISTER:
52 return v4l2_subdev_call(sd, core, g_register, arg);
53 case VIDIOC_DBG_S_REGISTER:
54 return v4l2_subdev_call(sd, core, s_register, arg);
55#endif
56
57 case VIDIOC_INT_S_TUNER_MODE:
58 return v4l2_subdev_call(sd, tuner, s_mode, *(enum v4l2_tuner_type *)arg);
59 case AUDC_SET_RADIO:
60 return v4l2_subdev_call(sd, tuner, s_radio);
61 case VIDIOC_S_TUNER:
62 return v4l2_subdev_call(sd, tuner, s_tuner, arg);
63 case VIDIOC_G_TUNER:
64 return v4l2_subdev_call(sd, tuner, g_tuner, arg);
65 case VIDIOC_S_STD:
66 return v4l2_subdev_call(sd, tuner, s_std, *(v4l2_std_id *)arg);
67 case VIDIOC_S_FREQUENCY:
68 return v4l2_subdev_call(sd, tuner, s_frequency, arg);
69 case VIDIOC_G_FREQUENCY:
70 return v4l2_subdev_call(sd, tuner, g_frequency, arg);
71 case TUNER_SET_TYPE_ADDR:
72 return v4l2_subdev_call(sd, tuner, s_type_addr, arg);
73 case TUNER_SET_CONFIG:
74 return v4l2_subdev_call(sd, tuner, s_config, arg);
75
76 case VIDIOC_INT_AUDIO_CLOCK_FREQ:
77 return v4l2_subdev_call(sd, audio, s_clock_freq, *(u32 *)arg);
78 case VIDIOC_INT_S_AUDIO_ROUTING:
79 return v4l2_subdev_call(sd, audio, s_routing, arg);
80 case VIDIOC_INT_I2S_CLOCK_FREQ:
81 return v4l2_subdev_call(sd, audio, s_i2s_clock_freq, *(u32 *)arg);
82
83 case VIDIOC_INT_S_VIDEO_ROUTING:
84 return v4l2_subdev_call(sd, video, s_routing, arg);
85 case VIDIOC_INT_S_CRYSTAL_FREQ:
86 return v4l2_subdev_call(sd, video, s_crystal_freq, arg);
87 case VIDIOC_INT_DECODE_VBI_LINE:
88 return v4l2_subdev_call(sd, video, decode_vbi_line, arg);
89 case VIDIOC_INT_S_VBI_DATA:
90 return v4l2_subdev_call(sd, video, s_vbi_data, arg);
91 case VIDIOC_INT_G_VBI_DATA:
92 return v4l2_subdev_call(sd, video, g_vbi_data, arg);
93 case VIDIOC_S_FMT:
94 return v4l2_subdev_call(sd, video, s_fmt, arg);
95 case VIDIOC_G_FMT:
96 return v4l2_subdev_call(sd, video, g_fmt, arg);
97 case VIDIOC_INT_S_STD_OUTPUT:
98 return v4l2_subdev_call(sd, video, s_std_output, *(v4l2_std_id *)arg);
99 case VIDIOC_STREAMON:
100 return v4l2_subdev_call(sd, video, s_stream, 1);
101 case VIDIOC_STREAMOFF:
102 return v4l2_subdev_call(sd, video, s_stream, 0);
103
104 default:
105 return v4l2_subdev_call(sd, core, ioctl, cmd, arg);
106 }
107}
108EXPORT_SYMBOL_GPL(v4l2_subdev_command);
diff --git a/include/media/v4l2-device.h b/include/media/v4l2-device.h
new file mode 100644
index 000000000000..97b283a04289
--- /dev/null
+++ b/include/media/v4l2-device.h
@@ -0,0 +1,109 @@
1/*
2 V4L2 device support header.
3
4 Copyright (C) 2008 Hans Verkuil <hverkuil@xs4all.nl>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#ifndef _V4L2_DEVICE_H
22#define _V4L2_DEVICE_H
23
24#include <media/v4l2-subdev.h>
25
26/* Each instance of a V4L2 device should create the v4l2_device struct,
27 either stand-alone or embedded in a larger struct.
28
29 It allows easy access to sub-devices (see v4l2-subdev.h) and provides
30 basic V4L2 device-level support.
31 */
32
33#define V4L2_DEVICE_NAME_SIZE (BUS_ID_SIZE + 16)
34
35struct v4l2_device {
36 /* dev->driver_data points to this struct */
37 struct device *dev;
38 /* used to keep track of the registered subdevs */
39 struct list_head subdevs;
40 /* lock this struct; can be used by the driver as well if this
41 struct is embedded into a larger struct. */
42 spinlock_t lock;
43 /* unique device name, by default the driver name + bus ID */
44 char name[V4L2_DEVICE_NAME_SIZE];
45};
46
47/* Initialize v4l2_dev and make dev->driver_data point to v4l2_dev */
48int __must_check v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev);
49/* Set v4l2_dev->dev->driver_data to NULL and unregister all sub-devices */
50void v4l2_device_unregister(struct v4l2_device *v4l2_dev);
51
52/* Register a subdev with a v4l2 device. While registered the subdev module
53 is marked as in-use. An error is returned if the module is no longer
54 loaded when you attempt to register it. */
55int __must_check v4l2_device_register_subdev(struct v4l2_device *dev, struct v4l2_subdev *sd);
56/* Unregister a subdev with a v4l2 device. Can also be called if the subdev
57 wasn't registered. In that case it will do nothing. */
58void v4l2_device_unregister_subdev(struct v4l2_subdev *sd);
59
60/* Iterate over all subdevs. */
61#define v4l2_device_for_each_subdev(sd, dev) \
62 list_for_each_entry(sd, &(dev)->subdevs, list)
63
64/* Call the specified callback for all subdevs matching the condition.
65 Ignore any errors. Note that you cannot add or delete a subdev
66 while walking the subdevs list. */
67#define __v4l2_device_call_subdevs(dev, cond, o, f, args...) \
68 do { \
69 struct v4l2_subdev *sd; \
70 \
71 list_for_each_entry(sd, &(dev)->subdevs, list) \
72 if ((cond) && sd->ops->o && sd->ops->o->f) \
73 sd->ops->o->f(sd , ##args); \
74 } while (0)
75
76/* Call the specified callback for all subdevs matching the condition.
77 If the callback returns an error other than 0 or -ENOIOCTLCMD, then
78 return with that error code. Note that you cannot add or delete a
79 subdev while walking the subdevs list. */
80#define __v4l2_device_call_subdevs_until_err(dev, cond, o, f, args...) \
81({ \
82 struct v4l2_subdev *sd; \
83 int err = 0; \
84 \
85 list_for_each_entry(sd, &(dev)->subdevs, list) { \
86 if ((cond) && sd->ops->o && sd->ops->o->f) \
87 err = sd->ops->o->f(sd , ##args); \
88 if (err && err != -ENOIOCTLCMD) \
89 break; \
90 } \
91 (err == -ENOIOCTLCMD) ? 0 : err; \
92})
93
94/* Call the specified callback for all subdevs matching grp_id (if 0, then
95 match them all). Ignore any errors. Note that you cannot add or delete
96 a subdev while walking the subdevs list. */
97#define v4l2_device_call_all(dev, grp_id, o, f, args...) \
98 __v4l2_device_call_subdevs(dev, \
99 !(grp_id) || sd->grp_id == (grp_id), o, f , ##args)
100
101/* Call the specified callback for all subdevs matching grp_id (if 0, then
102 match them all). If the callback returns an error other than 0 or
103 -ENOIOCTLCMD, then return with that error code. Note that you cannot
104 add or delete a subdev while walking the subdevs list. */
105#define v4l2_device_call_until_err(dev, grp_id, o, f, args...) \
106 __v4l2_device_call_subdevs_until_err(dev, \
107 !(grp_id) || sd->grp_id == (grp_id), o, f , ##args)
108
109#endif
diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h
new file mode 100644
index 000000000000..bc9e0fbf2822
--- /dev/null
+++ b/include/media/v4l2-subdev.h
@@ -0,0 +1,188 @@
1/*
2 V4L2 sub-device support header.
3
4 Copyright (C) 2008 Hans Verkuil <hverkuil@xs4all.nl>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#ifndef _V4L2_SUBDEV_H
22#define _V4L2_SUBDEV_H
23
24#include <media/v4l2-common.h>
25
26struct v4l2_device;
27struct v4l2_subdev;
28struct tuner_setup;
29
30/* Sub-devices are devices that are connected somehow to the main bridge
31 device. These devices are usually audio/video muxers/encoders/decoders or
32 sensors and webcam controllers.
33
34 Usually these devices are controlled through an i2c bus, but other busses
35 may also be used.
36
37 The v4l2_subdev struct provides a way of accessing these devices in a
38 generic manner. Most operations that these sub-devices support fall in
39 a few categories: core ops, audio ops, video ops and tuner ops.
40
41 More categories can be added if needed, although this should remain a
42 limited set (no more than approx. 8 categories).
43
44 Each category has its own set of ops that subdev drivers can implement.
45
46 A subdev driver can leave the pointer to the category ops NULL if
47 it does not implement them (e.g. an audio subdev will generally not
48 implement the video category ops). The exception is the core category:
49 this must always be present.
50
51 These ops are all used internally so it is no problem to change, remove
52 or add ops or move ops from one to another category. Currently these
53 ops are based on the original ioctls, but since ops are not limited to
54 one argument there is room for improvement here once all i2c subdev
55 drivers are converted to use these ops.
56 */
57
58/* Core ops: it is highly recommended to implement at least these ops:
59
60 g_chip_ident
61 log_status
62 g_register
63 s_register
64
65 This provides basic debugging support.
66
67 The ioctl ops is meant for generic ioctl-like commands. Depending on
68 the use-case it might be better to use subdev-specific ops (currently
69 not yet implemented) since ops provide proper type-checking.
70 */
71struct v4l2_subdev_core_ops {
72 int (*g_chip_ident)(struct v4l2_subdev *sd, struct v4l2_chip_ident *chip);
73 int (*log_status)(struct v4l2_subdev *sd);
74 int (*init)(struct v4l2_subdev *sd, u32 val);
75 int (*s_standby)(struct v4l2_subdev *sd, u32 standby);
76 int (*reset)(struct v4l2_subdev *sd, u32 val);
77 int (*s_gpio)(struct v4l2_subdev *sd, u32 val);
78 int (*queryctrl)(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc);
79 int (*g_ctrl)(struct v4l2_subdev *sd, struct v4l2_control *ctrl);
80 int (*s_ctrl)(struct v4l2_subdev *sd, struct v4l2_control *ctrl);
81 int (*querymenu)(struct v4l2_subdev *sd, struct v4l2_querymenu *qm);
82 int (*ioctl)(struct v4l2_subdev *sd, int cmd, void *arg);
83#ifdef CONFIG_VIDEO_ADV_DEBUG
84 int (*g_register)(struct v4l2_subdev *sd, struct v4l2_register *reg);
85 int (*s_register)(struct v4l2_subdev *sd, struct v4l2_register *reg);
86#endif
87};
88
89struct v4l2_subdev_tuner_ops {
90 int (*s_mode)(struct v4l2_subdev *sd, enum v4l2_tuner_type);
91 int (*s_radio)(struct v4l2_subdev *sd);
92 int (*s_frequency)(struct v4l2_subdev *sd, struct v4l2_frequency *freq);
93 int (*g_frequency)(struct v4l2_subdev *sd, struct v4l2_frequency *freq);
94 int (*g_tuner)(struct v4l2_subdev *sd, struct v4l2_tuner *vt);
95 int (*s_tuner)(struct v4l2_subdev *sd, struct v4l2_tuner *vt);
96 int (*s_std)(struct v4l2_subdev *sd, v4l2_std_id norm);
97 int (*s_type_addr)(struct v4l2_subdev *sd, struct tuner_setup *type);
98 int (*s_config)(struct v4l2_subdev *sd, const struct v4l2_priv_tun_config *config);
99};
100
101struct v4l2_subdev_audio_ops {
102 int (*s_clock_freq)(struct v4l2_subdev *sd, u32 freq);
103 int (*s_i2s_clock_freq)(struct v4l2_subdev *sd, u32 freq);
104 int (*s_routing)(struct v4l2_subdev *sd, const struct v4l2_routing *route);
105};
106
107struct v4l2_subdev_video_ops {
108 int (*s_routing)(struct v4l2_subdev *sd, const struct v4l2_routing *route);
109 int (*s_crystal_freq)(struct v4l2_subdev *sd, struct v4l2_crystal_freq *freq);
110 int (*decode_vbi_line)(struct v4l2_subdev *sd, struct v4l2_decode_vbi_line *vbi_line);
111 int (*s_vbi_data)(struct v4l2_subdev *sd, const struct v4l2_sliced_vbi_data *vbi_data);
112 int (*g_vbi_data)(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_data *vbi_data);
113 int (*s_std_output)(struct v4l2_subdev *sd, v4l2_std_id std);
114 int (*s_stream)(struct v4l2_subdev *sd, int enable);
115 int (*s_fmt)(struct v4l2_subdev *sd, struct v4l2_format *fmt);
116 int (*g_fmt)(struct v4l2_subdev *sd, struct v4l2_format *fmt);
117};
118
119struct v4l2_subdev_ops {
120 const struct v4l2_subdev_core_ops *core;
121 const struct v4l2_subdev_tuner_ops *tuner;
122 const struct v4l2_subdev_audio_ops *audio;
123 const struct v4l2_subdev_video_ops *video;
124};
125
126#define V4L2_SUBDEV_NAME_SIZE 32
127
128/* Each instance of a subdev driver should create this struct, either
129 stand-alone or embedded in a larger struct.
130 */
131struct v4l2_subdev {
132 struct list_head list;
133 struct module *owner;
134 struct v4l2_device *dev;
135 const struct v4l2_subdev_ops *ops;
136 /* name must be unique */
137 char name[V4L2_SUBDEV_NAME_SIZE];
138 /* can be used to group similar subdevs, value is driver-specific */
139 u32 grp_id;
140 /* pointer to private data */
141 void *priv;
142};
143
144static inline void v4l2_set_subdevdata(struct v4l2_subdev *sd, void *p)
145{
146 sd->priv = p;
147}
148
149static inline void *v4l2_get_subdevdata(const struct v4l2_subdev *sd)
150{
151 return sd->priv;
152}
153
154/* Convert an ioctl-type command to the proper v4l2_subdev_ops function call.
155 This is used by subdev modules that can be called by both old-style ioctl
156 commands and through the v4l2_subdev_ops.
157
158 The ioctl API of the subdev driver can call this function to call the
159 right ops based on the ioctl cmd and arg.
160
161 Once all subdev drivers have been converted and all drivers no longer
162 use the ioctl interface, then this function can be removed.
163 */
164int v4l2_subdev_command(struct v4l2_subdev *sd, unsigned cmd, void *arg);
165
166static inline void v4l2_subdev_init(struct v4l2_subdev *sd,
167 const struct v4l2_subdev_ops *ops)
168{
169 INIT_LIST_HEAD(&sd->list);
170 /* ops->core MUST be set */
171 BUG_ON(!ops || !ops->core);
172 sd->ops = ops;
173 sd->dev = NULL;
174 sd->name[0] = '\0';
175 sd->grp_id = 0;
176 sd->priv = NULL;
177}
178
179/* Call an ops of a v4l2_subdev, doing the right checks against
180 NULL pointers.
181
182 Example: err = v4l2_subdev_call(sd, core, g_chip_ident, &chip);
183 */
184#define v4l2_subdev_call(sd, o, f, args...) \
185 (!(sd) ? -ENODEV : (((sd) && (sd)->ops->o && (sd)->ops->o->f) ? \
186 (sd)->ops->o->f((sd) , ##args) : -ENOIOCTLCMD))
187
188#endif