4 * A generic video device interface for the LINUX operating system
5 * using a set of device structures/vectors for low level operations.
7 * This file replaces the videodev.c file that comes with the
8 * regular kernel distribution.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
15 * Author: Bill Dirks <bill@thedirks.org>
16 * based on code by Alan Cox, <alan@cymru.net>
21 * Video capture interface for Linux
23 * A generic video device interface for the LINUX operating system
24 * using a set of device structures/vectors for low level operations.
26 * This program is free software; you can redistribute it and/or
27 * modify it under the terms of the GNU General Public License
28 * as published by the Free Software Foundation; either version
29 * 2 of the License, or (at your option) any later version.
31 * Author: Alan Cox, <alan@lxorguk.ukuu.org.uk>
37 * Video4linux 1/2 integration by Justin Schoeman
38 * <justin@suntiger.ee.up.ac.za>
39 * 2.4 PROCFS support ported from 2.4 kernels by
40 * Iñaki García Etxebarria <garetxe@euskalnet.net>
41 * Makefile fix by "W. Michael Petullo" <mike@flyn.org>
42 * 2.4 devfs support ported from 2.4 kernels by
43 * Dan Merillat <dan@merillat.org>
44 * Added Gerd Knorrs v4l1 enhancements (Justin Schoeman)
47 #include <linux/module.h>
48 #include <linux/types.h>
49 #include <linux/kernel.h>
51 #include <linux/string.h>
52 #include <linux/errno.h>
53 #include <linux/i2c.h>
54 #include <asm/uaccess.h>
55 #include <asm/system.h>
56 #include <asm/pgtable.h>
58 #include <asm/div64.h>
59 #define __OLD_VIDIOC_ /* To allow fixing old calls*/
60 #include <media/v4l2-common.h>
61 #include <media/v4l2-device.h>
62 #include <media/v4l2-chip-ident.h>
64 #include <linux/videodev2.h>
66 MODULE_AUTHOR("Bill Dirks, Justin Schoeman, Gerd Knorr");
67 MODULE_DESCRIPTION("misc helper functions for v4l2 device drivers");
68 MODULE_LICENSE("GPL");
72 * V 4 L 2 D R I V E R H E L P E R A P I
77 * Video Standard Operations (contributed by Michael Schimek)
81 /* ----------------------------------------------------------------- */
82 /* priority handling */
84 #define V4L2_PRIO_VALID(val) (val == V4L2_PRIORITY_BACKGROUND || \
85 val == V4L2_PRIORITY_INTERACTIVE || \
86 val == V4L2_PRIORITY_RECORD)
88 int v4l2_prio_init(struct v4l2_prio_state *global)
90 memset(global,0,sizeof(*global));
93 EXPORT_SYMBOL(v4l2_prio_init);
95 int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
96 enum v4l2_priority new)
98 if (!V4L2_PRIO_VALID(new))
103 atomic_inc(&global->prios[new]);
104 if (V4L2_PRIO_VALID(*local))
105 atomic_dec(&global->prios[*local]);
109 EXPORT_SYMBOL(v4l2_prio_change);
111 int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local)
113 return v4l2_prio_change(global,local,V4L2_PRIORITY_DEFAULT);
115 EXPORT_SYMBOL(v4l2_prio_open);
117 int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local)
119 if (V4L2_PRIO_VALID(*local))
120 atomic_dec(&global->prios[*local]);
123 EXPORT_SYMBOL(v4l2_prio_close);
125 enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global)
127 if (atomic_read(&global->prios[V4L2_PRIORITY_RECORD]) > 0)
128 return V4L2_PRIORITY_RECORD;
129 if (atomic_read(&global->prios[V4L2_PRIORITY_INTERACTIVE]) > 0)
130 return V4L2_PRIORITY_INTERACTIVE;
131 if (atomic_read(&global->prios[V4L2_PRIORITY_BACKGROUND]) > 0)
132 return V4L2_PRIORITY_BACKGROUND;
133 return V4L2_PRIORITY_UNSET;
135 EXPORT_SYMBOL(v4l2_prio_max);
137 int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local)
139 if (*local < v4l2_prio_max(global))
143 EXPORT_SYMBOL(v4l2_prio_check);
145 /* ----------------------------------------------------------------- */
147 /* Helper functions for control handling */
149 /* Check for correctness of the ctrl's value based on the data from
150 struct v4l2_queryctrl and the available menu items. Note that
151 menu_items may be NULL, in that case it is ignored. */
152 int v4l2_ctrl_check(struct v4l2_ext_control *ctrl, struct v4l2_queryctrl *qctrl,
153 const char **menu_items)
155 if (qctrl->flags & V4L2_CTRL_FLAG_DISABLED)
157 if (qctrl->flags & V4L2_CTRL_FLAG_GRABBED)
159 if (qctrl->type == V4L2_CTRL_TYPE_BUTTON ||
160 qctrl->type == V4L2_CTRL_TYPE_INTEGER64 ||
161 qctrl->type == V4L2_CTRL_TYPE_CTRL_CLASS)
163 if (ctrl->value < qctrl->minimum || ctrl->value > qctrl->maximum)
165 if (qctrl->type == V4L2_CTRL_TYPE_MENU && menu_items != NULL) {
166 if (menu_items[ctrl->value] == NULL ||
167 menu_items[ctrl->value][0] == '\0')
172 EXPORT_SYMBOL(v4l2_ctrl_check);
174 /* Returns NULL or a character pointer array containing the menu for
175 the given control ID. The pointer array ends with a NULL pointer.
176 An empty string signifies a menu entry that is invalid. This allows
177 drivers to disable certain options if it is not supported. */
178 const char **v4l2_ctrl_get_menu(u32 id)
180 static const char *mpeg_audio_sampling_freq[] = {
186 static const char *mpeg_audio_encoding[] = {
189 "MPEG-1/2 Layer III",
194 static const char *mpeg_audio_l1_bitrate[] = {
211 static const char *mpeg_audio_l2_bitrate[] = {
228 static const char *mpeg_audio_l3_bitrate[] = {
245 static const char *mpeg_audio_ac3_bitrate[] = {
267 static const char *mpeg_audio_mode[] = {
274 static const char *mpeg_audio_mode_extension[] = {
281 static const char *mpeg_audio_emphasis[] = {
287 static const char *mpeg_audio_crc[] = {
292 static const char *mpeg_video_encoding[] = {
298 static const char *mpeg_video_aspect[] = {
305 static const char *mpeg_video_bitrate_mode[] = {
310 static const char *mpeg_stream_type[] = {
311 "MPEG-2 Program Stream",
312 "MPEG-2 Transport Stream",
313 "MPEG-1 System Stream",
314 "MPEG-2 DVD-compatible Stream",
315 "MPEG-1 VCD-compatible Stream",
316 "MPEG-2 SVCD-compatible Stream",
319 static const char *mpeg_stream_vbi_fmt[] = {
321 "Private packet, IVTV format",
324 static const char *camera_power_line_frequency[] = {
330 static const char *camera_exposure_auto[] = {
333 "Shutter Priority Mode",
334 "Aperture Priority Mode",
337 static const char *colorfx[] = {
345 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
346 return mpeg_audio_sampling_freq;
347 case V4L2_CID_MPEG_AUDIO_ENCODING:
348 return mpeg_audio_encoding;
349 case V4L2_CID_MPEG_AUDIO_L1_BITRATE:
350 return mpeg_audio_l1_bitrate;
351 case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
352 return mpeg_audio_l2_bitrate;
353 case V4L2_CID_MPEG_AUDIO_L3_BITRATE:
354 return mpeg_audio_l3_bitrate;
355 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
356 return mpeg_audio_ac3_bitrate;
357 case V4L2_CID_MPEG_AUDIO_MODE:
358 return mpeg_audio_mode;
359 case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION:
360 return mpeg_audio_mode_extension;
361 case V4L2_CID_MPEG_AUDIO_EMPHASIS:
362 return mpeg_audio_emphasis;
363 case V4L2_CID_MPEG_AUDIO_CRC:
364 return mpeg_audio_crc;
365 case V4L2_CID_MPEG_VIDEO_ENCODING:
366 return mpeg_video_encoding;
367 case V4L2_CID_MPEG_VIDEO_ASPECT:
368 return mpeg_video_aspect;
369 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
370 return mpeg_video_bitrate_mode;
371 case V4L2_CID_MPEG_STREAM_TYPE:
372 return mpeg_stream_type;
373 case V4L2_CID_MPEG_STREAM_VBI_FMT:
374 return mpeg_stream_vbi_fmt;
375 case V4L2_CID_POWER_LINE_FREQUENCY:
376 return camera_power_line_frequency;
377 case V4L2_CID_EXPOSURE_AUTO:
378 return camera_exposure_auto;
379 case V4L2_CID_COLORFX:
385 EXPORT_SYMBOL(v4l2_ctrl_get_menu);
387 /* Return the control name. */
388 const char *v4l2_ctrl_get_name(u32 id)
392 case V4L2_CID_USER_CLASS: return "User Controls";
393 case V4L2_CID_BRIGHTNESS: return "Brightness";
394 case V4L2_CID_CONTRAST: return "Contrast";
395 case V4L2_CID_SATURATION: return "Saturation";
396 case V4L2_CID_HUE: return "Hue";
397 case V4L2_CID_AUDIO_VOLUME: return "Volume";
398 case V4L2_CID_AUDIO_BALANCE: return "Balance";
399 case V4L2_CID_AUDIO_BASS: return "Bass";
400 case V4L2_CID_AUDIO_TREBLE: return "Treble";
401 case V4L2_CID_AUDIO_MUTE: return "Mute";
402 case V4L2_CID_AUDIO_LOUDNESS: return "Loudness";
403 case V4L2_CID_BLACK_LEVEL: return "Black Level";
404 case V4L2_CID_AUTO_WHITE_BALANCE: return "White Balance, Automatic";
405 case V4L2_CID_DO_WHITE_BALANCE: return "Do White Balance";
406 case V4L2_CID_RED_BALANCE: return "Red Balance";
407 case V4L2_CID_BLUE_BALANCE: return "Blue Balance";
408 case V4L2_CID_GAMMA: return "Gamma";
409 case V4L2_CID_EXPOSURE: return "Exposure";
410 case V4L2_CID_AUTOGAIN: return "Gain, Automatic";
411 case V4L2_CID_GAIN: return "Gain";
412 case V4L2_CID_HFLIP: return "Horizontal Flip";
413 case V4L2_CID_VFLIP: return "Vertical Flip";
414 case V4L2_CID_HCENTER: return "Horizontal Center";
415 case V4L2_CID_VCENTER: return "Vertical Center";
416 case V4L2_CID_POWER_LINE_FREQUENCY: return "Power Line Frequency";
417 case V4L2_CID_HUE_AUTO: return "Hue, Automatic";
418 case V4L2_CID_WHITE_BALANCE_TEMPERATURE: return "White Balance Temperature";
419 case V4L2_CID_SHARPNESS: return "Sharpness";
420 case V4L2_CID_BACKLIGHT_COMPENSATION: return "Backlight Compensation";
421 case V4L2_CID_CHROMA_AGC: return "Chroma AGC";
422 case V4L2_CID_COLOR_KILLER: return "Color Killer";
423 case V4L2_CID_COLORFX: return "Color Effects";
426 case V4L2_CID_MPEG_CLASS: return "MPEG Encoder Controls";
427 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ: return "Audio Sampling Frequency";
428 case V4L2_CID_MPEG_AUDIO_ENCODING: return "Audio Encoding";
429 case V4L2_CID_MPEG_AUDIO_L1_BITRATE: return "Audio Layer I Bitrate";
430 case V4L2_CID_MPEG_AUDIO_L2_BITRATE: return "Audio Layer II Bitrate";
431 case V4L2_CID_MPEG_AUDIO_L3_BITRATE: return "Audio Layer III Bitrate";
432 case V4L2_CID_MPEG_AUDIO_AAC_BITRATE: return "Audio AAC Bitrate";
433 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE: return "Audio AC-3 Bitrate";
434 case V4L2_CID_MPEG_AUDIO_MODE: return "Audio Stereo Mode";
435 case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION: return "Audio Stereo Mode Extension";
436 case V4L2_CID_MPEG_AUDIO_EMPHASIS: return "Audio Emphasis";
437 case V4L2_CID_MPEG_AUDIO_CRC: return "Audio CRC";
438 case V4L2_CID_MPEG_AUDIO_MUTE: return "Audio Mute";
439 case V4L2_CID_MPEG_VIDEO_ENCODING: return "Video Encoding";
440 case V4L2_CID_MPEG_VIDEO_ASPECT: return "Video Aspect";
441 case V4L2_CID_MPEG_VIDEO_B_FRAMES: return "Video B Frames";
442 case V4L2_CID_MPEG_VIDEO_GOP_SIZE: return "Video GOP Size";
443 case V4L2_CID_MPEG_VIDEO_GOP_CLOSURE: return "Video GOP Closure";
444 case V4L2_CID_MPEG_VIDEO_PULLDOWN: return "Video Pulldown";
445 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE: return "Video Bitrate Mode";
446 case V4L2_CID_MPEG_VIDEO_BITRATE: return "Video Bitrate";
447 case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK: return "Video Peak Bitrate";
448 case V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION: return "Video Temporal Decimation";
449 case V4L2_CID_MPEG_VIDEO_MUTE: return "Video Mute";
450 case V4L2_CID_MPEG_VIDEO_MUTE_YUV: return "Video Mute YUV";
451 case V4L2_CID_MPEG_STREAM_TYPE: return "Stream Type";
452 case V4L2_CID_MPEG_STREAM_PID_PMT: return "Stream PMT Program ID";
453 case V4L2_CID_MPEG_STREAM_PID_AUDIO: return "Stream Audio Program ID";
454 case V4L2_CID_MPEG_STREAM_PID_VIDEO: return "Stream Video Program ID";
455 case V4L2_CID_MPEG_STREAM_PID_PCR: return "Stream PCR Program ID";
456 case V4L2_CID_MPEG_STREAM_PES_ID_AUDIO: return "Stream PES Audio ID";
457 case V4L2_CID_MPEG_STREAM_PES_ID_VIDEO: return "Stream PES Video ID";
458 case V4L2_CID_MPEG_STREAM_VBI_FMT: return "Stream VBI Format";
460 /* CAMERA controls */
461 case V4L2_CID_CAMERA_CLASS: return "Camera Controls";
462 case V4L2_CID_EXPOSURE_AUTO: return "Auto Exposure";
463 case V4L2_CID_EXPOSURE_ABSOLUTE: return "Exposure Time, Absolute";
464 case V4L2_CID_EXPOSURE_AUTO_PRIORITY: return "Exposure, Dynamic Framerate";
465 case V4L2_CID_PAN_RELATIVE: return "Pan, Relative";
466 case V4L2_CID_TILT_RELATIVE: return "Tilt, Relative";
467 case V4L2_CID_PAN_RESET: return "Pan, Reset";
468 case V4L2_CID_TILT_RESET: return "Tilt, Reset";
469 case V4L2_CID_PAN_ABSOLUTE: return "Pan, Absolute";
470 case V4L2_CID_TILT_ABSOLUTE: return "Tilt, Absolute";
471 case V4L2_CID_FOCUS_ABSOLUTE: return "Focus, Absolute";
472 case V4L2_CID_FOCUS_RELATIVE: return "Focus, Relative";
473 case V4L2_CID_FOCUS_AUTO: return "Focus, Automatic";
474 case V4L2_CID_ZOOM_ABSOLUTE: return "Zoom, Absolute";
475 case V4L2_CID_ZOOM_RELATIVE: return "Zoom, Relative";
476 case V4L2_CID_ZOOM_CONTINUOUS: return "Zoom, Continuous";
477 case V4L2_CID_PRIVACY: return "Privacy";
483 EXPORT_SYMBOL(v4l2_ctrl_get_name);
485 /* Fill in a struct v4l2_queryctrl */
486 int v4l2_ctrl_query_fill(struct v4l2_queryctrl *qctrl, s32 min, s32 max, s32 step, s32 def)
488 const char *name = v4l2_ctrl_get_name(qctrl->id);
495 case V4L2_CID_AUDIO_MUTE:
496 case V4L2_CID_AUDIO_LOUDNESS:
497 case V4L2_CID_AUTO_WHITE_BALANCE:
498 case V4L2_CID_AUTOGAIN:
501 case V4L2_CID_HUE_AUTO:
502 case V4L2_CID_CHROMA_AGC:
503 case V4L2_CID_COLOR_KILLER:
504 case V4L2_CID_MPEG_AUDIO_MUTE:
505 case V4L2_CID_MPEG_VIDEO_MUTE:
506 case V4L2_CID_MPEG_VIDEO_GOP_CLOSURE:
507 case V4L2_CID_MPEG_VIDEO_PULLDOWN:
508 case V4L2_CID_EXPOSURE_AUTO_PRIORITY:
509 case V4L2_CID_FOCUS_AUTO:
510 case V4L2_CID_PRIVACY:
511 qctrl->type = V4L2_CTRL_TYPE_BOOLEAN;
515 case V4L2_CID_PAN_RESET:
516 case V4L2_CID_TILT_RESET:
517 qctrl->type = V4L2_CTRL_TYPE_BUTTON;
518 qctrl->flags |= V4L2_CTRL_FLAG_WRITE_ONLY;
519 min = max = step = def = 0;
521 case V4L2_CID_POWER_LINE_FREQUENCY:
522 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
523 case V4L2_CID_MPEG_AUDIO_ENCODING:
524 case V4L2_CID_MPEG_AUDIO_L1_BITRATE:
525 case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
526 case V4L2_CID_MPEG_AUDIO_L3_BITRATE:
527 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
528 case V4L2_CID_MPEG_AUDIO_MODE:
529 case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION:
530 case V4L2_CID_MPEG_AUDIO_EMPHASIS:
531 case V4L2_CID_MPEG_AUDIO_CRC:
532 case V4L2_CID_MPEG_VIDEO_ENCODING:
533 case V4L2_CID_MPEG_VIDEO_ASPECT:
534 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
535 case V4L2_CID_MPEG_STREAM_TYPE:
536 case V4L2_CID_MPEG_STREAM_VBI_FMT:
537 case V4L2_CID_EXPOSURE_AUTO:
538 case V4L2_CID_COLORFX:
539 qctrl->type = V4L2_CTRL_TYPE_MENU;
542 case V4L2_CID_USER_CLASS:
543 case V4L2_CID_CAMERA_CLASS:
544 case V4L2_CID_MPEG_CLASS:
545 qctrl->type = V4L2_CTRL_TYPE_CTRL_CLASS;
546 qctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY;
547 min = max = step = def = 0;
550 qctrl->type = V4L2_CTRL_TYPE_INTEGER;
554 case V4L2_CID_MPEG_AUDIO_ENCODING:
555 case V4L2_CID_MPEG_AUDIO_MODE:
556 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
557 case V4L2_CID_MPEG_VIDEO_B_FRAMES:
558 case V4L2_CID_MPEG_STREAM_TYPE:
559 qctrl->flags |= V4L2_CTRL_FLAG_UPDATE;
561 case V4L2_CID_AUDIO_VOLUME:
562 case V4L2_CID_AUDIO_BALANCE:
563 case V4L2_CID_AUDIO_BASS:
564 case V4L2_CID_AUDIO_TREBLE:
565 case V4L2_CID_BRIGHTNESS:
566 case V4L2_CID_CONTRAST:
567 case V4L2_CID_SATURATION:
569 case V4L2_CID_RED_BALANCE:
570 case V4L2_CID_BLUE_BALANCE:
572 qctrl->flags |= V4L2_CTRL_FLAG_SLIDER;
574 case V4L2_CID_PAN_RELATIVE:
575 case V4L2_CID_TILT_RELATIVE:
576 case V4L2_CID_FOCUS_RELATIVE:
577 case V4L2_CID_ZOOM_RELATIVE:
578 qctrl->flags |= V4L2_CTRL_FLAG_WRITE_ONLY;
581 qctrl->minimum = min;
582 qctrl->maximum = max;
584 qctrl->default_value = def;
585 qctrl->reserved[0] = qctrl->reserved[1] = 0;
586 strlcpy(qctrl->name, name, sizeof(qctrl->name));
589 EXPORT_SYMBOL(v4l2_ctrl_query_fill);
591 /* Fill in a struct v4l2_querymenu based on the struct v4l2_queryctrl and
592 the menu. The qctrl pointer may be NULL, in which case it is ignored.
593 If menu_items is NULL, then the menu items are retrieved using
594 v4l2_ctrl_get_menu. */
595 int v4l2_ctrl_query_menu(struct v4l2_querymenu *qmenu, struct v4l2_queryctrl *qctrl,
596 const char **menu_items)
601 if (menu_items == NULL)
602 menu_items = v4l2_ctrl_get_menu(qmenu->id);
603 if (menu_items == NULL ||
604 (qctrl && (qmenu->index < qctrl->minimum || qmenu->index > qctrl->maximum)))
606 for (i = 0; i < qmenu->index && menu_items[i]; i++) ;
607 if (menu_items[i] == NULL || menu_items[i][0] == '\0')
609 strlcpy(qmenu->name, menu_items[qmenu->index], sizeof(qmenu->name));
612 EXPORT_SYMBOL(v4l2_ctrl_query_menu);
614 /* Fill in a struct v4l2_querymenu based on the specified array of valid
615 menu items (terminated by V4L2_CTRL_MENU_IDS_END).
616 Use this if there are 'holes' in the list of valid menu items. */
617 int v4l2_ctrl_query_menu_valid_items(struct v4l2_querymenu *qmenu, const u32 *ids)
619 const char **menu_items = v4l2_ctrl_get_menu(qmenu->id);
622 if (menu_items == NULL || ids == NULL)
624 while (*ids != V4L2_CTRL_MENU_IDS_END) {
625 if (*ids++ == qmenu->index) {
626 strlcpy(qmenu->name, menu_items[qmenu->index],
627 sizeof(qmenu->name));
633 EXPORT_SYMBOL(v4l2_ctrl_query_menu_valid_items);
635 /* ctrl_classes points to an array of u32 pointers, the last element is
636 a NULL pointer. Each u32 array is a 0-terminated array of control IDs.
637 Each array must be sorted low to high and belong to the same control
638 class. The array of u32 pointers must also be sorted, from low class IDs
641 This function returns the first ID that follows after the given ID.
642 When no more controls are available 0 is returned. */
643 u32 v4l2_ctrl_next(const u32 * const * ctrl_classes, u32 id)
645 u32 ctrl_class = V4L2_CTRL_ID2CLASS(id);
648 if (ctrl_classes == NULL)
651 /* if no query is desired, then check if the ID is part of ctrl_classes */
652 if ((id & V4L2_CTRL_FLAG_NEXT_CTRL) == 0) {
654 while (*ctrl_classes && V4L2_CTRL_ID2CLASS(**ctrl_classes) != ctrl_class)
656 if (*ctrl_classes == NULL)
658 pctrl = *ctrl_classes;
659 /* find control ID */
660 while (*pctrl && *pctrl != id) pctrl++;
661 return *pctrl ? id : 0;
663 id &= V4L2_CTRL_ID_MASK;
664 id++; /* select next control */
665 /* find first class that matches (or is greater than) the class of
667 while (*ctrl_classes && V4L2_CTRL_ID2CLASS(**ctrl_classes) < ctrl_class)
669 /* no more classes */
670 if (*ctrl_classes == NULL)
672 pctrl = *ctrl_classes;
673 /* find first ctrl within the class that is >= ID */
674 while (*pctrl && *pctrl < id) pctrl++;
677 /* we are at the end of the controls of the current class. */
678 /* continue with next class if available */
680 if (*ctrl_classes == NULL)
682 return **ctrl_classes;
684 EXPORT_SYMBOL(v4l2_ctrl_next);
686 int v4l2_chip_match_host(const struct v4l2_dbg_match *match)
688 switch (match->type) {
689 case V4L2_CHIP_MATCH_HOST:
690 return match->addr == 0;
695 EXPORT_SYMBOL(v4l2_chip_match_host);
697 #if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE))
698 int v4l2_chip_match_i2c_client(struct i2c_client *c, const struct v4l2_dbg_match *match)
702 if (c == NULL || match == NULL)
705 switch (match->type) {
706 case V4L2_CHIP_MATCH_I2C_DRIVER:
707 if (c->driver == NULL || c->driver->driver.name == NULL)
709 len = strlen(c->driver->driver.name);
710 /* legacy drivers have a ' suffix, don't try to match that */
711 if (len && c->driver->driver.name[len - 1] == '\'')
713 return len && !strncmp(c->driver->driver.name, match->name, len);
714 case V4L2_CHIP_MATCH_I2C_ADDR:
715 return c->addr == match->addr;
720 EXPORT_SYMBOL(v4l2_chip_match_i2c_client);
722 int v4l2_chip_ident_i2c_client(struct i2c_client *c, struct v4l2_dbg_chip_ident *chip,
723 u32 ident, u32 revision)
725 if (!v4l2_chip_match_i2c_client(c, &chip->match))
727 if (chip->ident == V4L2_IDENT_NONE) {
729 chip->revision = revision;
732 chip->ident = V4L2_IDENT_AMBIGUOUS;
737 EXPORT_SYMBOL(v4l2_chip_ident_i2c_client);
739 /* ----------------------------------------------------------------- */
741 /* Helper function for I2C legacy drivers */
743 int v4l2_i2c_attach(struct i2c_adapter *adapter, int address, struct i2c_driver *driver,
745 int (*probe)(struct i2c_client *, const struct i2c_device_id *))
747 struct i2c_client *client;
750 client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
754 client->addr = address;
755 client->adapter = adapter;
756 client->driver = driver;
757 strlcpy(client->name, name, sizeof(client->name));
759 err = probe(client, NULL);
761 i2c_attach_client(client);
765 return err != -ENOMEM ? 0 : err;
767 EXPORT_SYMBOL(v4l2_i2c_attach);
769 void v4l2_i2c_subdev_init(struct v4l2_subdev *sd, struct i2c_client *client,
770 const struct v4l2_subdev_ops *ops)
772 v4l2_subdev_init(sd, ops);
773 /* the owner is the same as the i2c_client's driver owner */
774 sd->owner = client->driver->driver.owner;
775 /* i2c_client and v4l2_subdev point to one another */
776 v4l2_set_subdevdata(sd, client);
777 i2c_set_clientdata(client, sd);
778 /* initialize name */
779 snprintf(sd->name, sizeof(sd->name), "%s %d-%04x",
780 client->driver->driver.name, i2c_adapter_id(client->adapter),
783 EXPORT_SYMBOL_GPL(v4l2_i2c_subdev_init);
787 /* Load an i2c sub-device. It assumes that i2c_get_adapdata(adapter)
788 returns the v4l2_device and that i2c_get_clientdata(client)
789 returns the v4l2_subdev. */
790 struct v4l2_subdev *v4l2_i2c_new_subdev(struct i2c_adapter *adapter,
791 const char *module_name, const char *client_type, u8 addr)
793 struct v4l2_device *dev = i2c_get_adapdata(adapter);
794 struct v4l2_subdev *sd = NULL;
795 struct i2c_client *client;
796 struct i2c_board_info info;
801 request_module(module_name);
803 /* Setup the i2c board info with the device type and
804 the device address. */
805 memset(&info, 0, sizeof(info));
806 strlcpy(info.type, client_type, sizeof(info.type));
809 /* Create the i2c client */
810 client = i2c_new_device(adapter, &info);
811 /* Note: it is possible in the future that
812 c->driver is NULL if the driver is still being loaded.
813 We need better support from the kernel so that we
814 can easily wait for the load to finish. */
815 if (client == NULL || client->driver == NULL)
818 /* Lock the module so we can safely get the v4l2_subdev pointer */
819 if (!try_module_get(client->driver->driver.owner))
821 sd = i2c_get_clientdata(client);
823 /* Register with the v4l2_device which increases the module's
824 use count as well. */
825 if (v4l2_device_register_subdev(dev, sd))
827 /* Decrease the module use count to match the first try_module_get. */
828 module_put(client->driver->driver.owner);
832 EXPORT_SYMBOL_GPL(v4l2_i2c_new_subdev);
834 /* Probe and load an i2c sub-device. It assumes that i2c_get_adapdata(adapter)
835 returns the v4l2_device and that i2c_get_clientdata(client)
836 returns the v4l2_subdev. */
837 struct v4l2_subdev *v4l2_i2c_new_probed_subdev(struct i2c_adapter *adapter,
838 const char *module_name, const char *client_type,
839 const unsigned short *addrs)
841 struct v4l2_device *dev = i2c_get_adapdata(adapter);
842 struct v4l2_subdev *sd = NULL;
843 struct i2c_client *client = NULL;
844 struct i2c_board_info info;
849 request_module(module_name);
851 /* Setup the i2c board info with the device type and
852 the device address. */
853 memset(&info, 0, sizeof(info));
854 strlcpy(info.type, client_type, sizeof(info.type));
856 /* Probe and create the i2c client */
857 client = i2c_new_probed_device(adapter, &info, addrs);
858 /* Note: it is possible in the future that
859 c->driver is NULL if the driver is still being loaded.
860 We need better support from the kernel so that we
861 can easily wait for the load to finish. */
862 if (client == NULL || client->driver == NULL)
865 /* Lock the module so we can safely get the v4l2_subdev pointer */
866 if (!try_module_get(client->driver->driver.owner))
868 sd = i2c_get_clientdata(client);
870 /* Register with the v4l2_device which increases the module's
871 use count as well. */
872 if (v4l2_device_register_subdev(dev, sd))
874 /* Decrease the module use count to match the first try_module_get. */
875 module_put(client->driver->driver.owner);
878 EXPORT_SYMBOL_GPL(v4l2_i2c_new_probed_subdev);
880 /* Return i2c client address of v4l2_subdev. */
881 unsigned short v4l2_i2c_subdev_addr(struct v4l2_subdev *sd)
883 struct i2c_client *client = v4l2_get_subdevdata(sd);
885 return client ? client->addr : I2C_CLIENT_END;
887 EXPORT_SYMBOL_GPL(v4l2_i2c_subdev_addr);
889 /* Return a list of I2C tuner addresses to probe. Use only if the tuner
890 addresses are unknown. */
891 const unsigned short *v4l2_i2c_tuner_addrs(enum v4l2_i2c_tuner_type type)
893 static const unsigned short radio_addrs[] = {
894 #if defined(CONFIG_MEDIA_TUNER_TEA5761) || defined(CONFIG_MEDIA_TUNER_TEA5761_MODULE)
900 static const unsigned short demod_addrs[] = {
901 0x42, 0x43, 0x4a, 0x4b,
904 static const unsigned short tv_addrs[] = {
905 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
906 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
907 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
918 case ADDRS_TV_WITH_DEMOD:
923 EXPORT_SYMBOL_GPL(v4l2_i2c_tuner_addrs);