blob: 67944f53a79a428fec1e2bed9f914a082127d3b9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Video for Linux Two
3 *
4 * A generic video device interface for the LINUX operating system
5 * using a set of device structures/vectors for low level operations.
6 *
7 * This file replaces the videodev.c file that comes with the
8 * regular kernel distribution.
9 *
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.
14 *
Mauro Carvalho Chehab43db48d2007-01-09 11:20:59 -030015 * Author: Bill Dirks <bill@thedirks.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * based on code by Alan Cox, <alan@cymru.net>
17 *
18 */
19
20/*
21 * Video capture interface for Linux
22 *
23 * A generic video device interface for the LINUX operating system
24 * using a set of device structures/vectors for low level operations.
25 *
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.
30 *
Alan Coxd9b01442008-10-27 15:13:47 -030031 * Author: Alan Cox, <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 *
33 * Fixes:
34 */
35
36/*
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
Jan Engelhardt96de0e22007-10-19 23:21:04 +020040 * Iñaki García Etxebarria <garetxe@euskalnet.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * 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)
45 */
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/module.h>
48#include <linux/types.h>
49#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/mm.h>
51#include <linux/string.h>
52#include <linux/errno.h>
Hans Verkuilf3d092b2007-02-23 20:55:14 -030053#include <linux/i2c.h>
Dmitri Belimov85e09212010-03-23 11:23:29 -030054#if defined(CONFIG_SPI)
55#include <linux/spi/spi.h>
56#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/uaccess.h>
58#include <asm/system.h>
59#include <asm/pgtable.h>
60#include <asm/io.h>
61#include <asm/div64.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030062#define __OLD_VIDIOC_ /* To allow fixing old calls*/
Michael Krufky5e453dc2006-01-09 15:32:31 -020063#include <media/v4l2-common.h>
Hans Verkuildd991202008-11-23 12:19:45 -030064#include <media/v4l2-device.h>
Hans Verkuil3434eb72007-04-27 12:31:08 -030065#include <media/v4l2-chip-ident.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Hans Verkuil33b687c2008-07-25 05:32:50 -030067#include <linux/videodev2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69MODULE_AUTHOR("Bill Dirks, Justin Schoeman, Gerd Knorr");
70MODULE_DESCRIPTION("misc helper functions for v4l2 device drivers");
71MODULE_LICENSE("GPL");
72
73/*
74 *
75 * V 4 L 2 D R I V E R H E L P E R A P I
76 *
77 */
78
79/*
80 * Video Standard Operations (contributed by Michael Schimek)
81 */
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/* ----------------------------------------------------------------- */
85/* priority handling */
86
87#define V4L2_PRIO_VALID(val) (val == V4L2_PRIORITY_BACKGROUND || \
88 val == V4L2_PRIORITY_INTERACTIVE || \
89 val == V4L2_PRIORITY_RECORD)
90
91int v4l2_prio_init(struct v4l2_prio_state *global)
92{
93 memset(global,0,sizeof(*global));
94 return 0;
95}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -030096EXPORT_SYMBOL(v4l2_prio_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
99 enum v4l2_priority new)
100{
101 if (!V4L2_PRIO_VALID(new))
102 return -EINVAL;
103 if (*local == new)
104 return 0;
105
106 atomic_inc(&global->prios[new]);
107 if (V4L2_PRIO_VALID(*local))
108 atomic_dec(&global->prios[*local]);
109 *local = new;
110 return 0;
111}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -0300112EXPORT_SYMBOL(v4l2_prio_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local)
115{
116 return v4l2_prio_change(global,local,V4L2_PRIORITY_DEFAULT);
117}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -0300118EXPORT_SYMBOL(v4l2_prio_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local)
121{
122 if (V4L2_PRIO_VALID(*local))
123 atomic_dec(&global->prios[*local]);
124 return 0;
125}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -0300126EXPORT_SYMBOL(v4l2_prio_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global)
129{
130 if (atomic_read(&global->prios[V4L2_PRIORITY_RECORD]) > 0)
131 return V4L2_PRIORITY_RECORD;
132 if (atomic_read(&global->prios[V4L2_PRIORITY_INTERACTIVE]) > 0)
133 return V4L2_PRIORITY_INTERACTIVE;
134 if (atomic_read(&global->prios[V4L2_PRIORITY_BACKGROUND]) > 0)
135 return V4L2_PRIORITY_BACKGROUND;
136 return V4L2_PRIORITY_UNSET;
137}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -0300138EXPORT_SYMBOL(v4l2_prio_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local)
141{
142 if (*local < v4l2_prio_max(global))
143 return -EBUSY;
144 return 0;
145}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -0300146EXPORT_SYMBOL(v4l2_prio_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148/* ----------------------------------------------------------------- */
149
Hans Verkuil9cb23182006-06-18 14:11:08 -0300150/* Helper functions for control handling */
151
152/* Check for correctness of the ctrl's value based on the data from
153 struct v4l2_queryctrl and the available menu items. Note that
154 menu_items may be NULL, in that case it is ignored. */
155int v4l2_ctrl_check(struct v4l2_ext_control *ctrl, struct v4l2_queryctrl *qctrl,
156 const char **menu_items)
157{
158 if (qctrl->flags & V4L2_CTRL_FLAG_DISABLED)
159 return -EINVAL;
160 if (qctrl->flags & V4L2_CTRL_FLAG_GRABBED)
161 return -EBUSY;
Hans Verkuil6b5a9492009-08-11 18:47:18 -0300162 if (qctrl->type == V4L2_CTRL_TYPE_STRING)
163 return 0;
Hans Verkuil9cb23182006-06-18 14:11:08 -0300164 if (qctrl->type == V4L2_CTRL_TYPE_BUTTON ||
165 qctrl->type == V4L2_CTRL_TYPE_INTEGER64 ||
166 qctrl->type == V4L2_CTRL_TYPE_CTRL_CLASS)
167 return 0;
168 if (ctrl->value < qctrl->minimum || ctrl->value > qctrl->maximum)
169 return -ERANGE;
170 if (qctrl->type == V4L2_CTRL_TYPE_MENU && menu_items != NULL) {
171 if (menu_items[ctrl->value] == NULL ||
172 menu_items[ctrl->value][0] == '\0')
173 return -EINVAL;
174 }
175 return 0;
176}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -0300177EXPORT_SYMBOL(v4l2_ctrl_check);
Hans Verkuil9cb23182006-06-18 14:11:08 -0300178
179/* Returns NULL or a character pointer array containing the menu for
180 the given control ID. The pointer array ends with a NULL pointer.
181 An empty string signifies a menu entry that is invalid. This allows
182 drivers to disable certain options if it is not supported. */
183const char **v4l2_ctrl_get_menu(u32 id)
184{
185 static const char *mpeg_audio_sampling_freq[] = {
186 "44.1 kHz",
187 "48 kHz",
188 "32 kHz",
189 NULL
190 };
191 static const char *mpeg_audio_encoding[] = {
Hans Verkuile6b5da82008-08-08 07:38:07 -0300192 "MPEG-1/2 Layer I",
193 "MPEG-1/2 Layer II",
194 "MPEG-1/2 Layer III",
195 "MPEG-2/4 AAC",
196 "AC-3",
Hans Verkuil9cb23182006-06-18 14:11:08 -0300197 NULL
198 };
199 static const char *mpeg_audio_l1_bitrate[] = {
200 "32 kbps",
201 "64 kbps",
202 "96 kbps",
203 "128 kbps",
204 "160 kbps",
205 "192 kbps",
206 "224 kbps",
207 "256 kbps",
208 "288 kbps",
209 "320 kbps",
210 "352 kbps",
211 "384 kbps",
212 "416 kbps",
213 "448 kbps",
214 NULL
215 };
216 static const char *mpeg_audio_l2_bitrate[] = {
217 "32 kbps",
218 "48 kbps",
219 "56 kbps",
220 "64 kbps",
221 "80 kbps",
222 "96 kbps",
223 "112 kbps",
224 "128 kbps",
225 "160 kbps",
226 "192 kbps",
227 "224 kbps",
228 "256 kbps",
229 "320 kbps",
230 "384 kbps",
231 NULL
232 };
233 static const char *mpeg_audio_l3_bitrate[] = {
234 "32 kbps",
235 "40 kbps",
236 "48 kbps",
237 "56 kbps",
238 "64 kbps",
239 "80 kbps",
240 "96 kbps",
241 "112 kbps",
242 "128 kbps",
243 "160 kbps",
244 "192 kbps",
245 "224 kbps",
246 "256 kbps",
247 "320 kbps",
248 NULL
249 };
Hans Verkuile6b5da82008-08-08 07:38:07 -0300250 static const char *mpeg_audio_ac3_bitrate[] = {
251 "32 kbps",
252 "40 kbps",
253 "48 kbps",
254 "56 kbps",
255 "64 kbps",
256 "80 kbps",
257 "96 kbps",
258 "112 kbps",
259 "128 kbps",
260 "160 kbps",
261 "192 kbps",
262 "224 kbps",
263 "256 kbps",
264 "320 kbps",
265 "384 kbps",
266 "448 kbps",
267 "512 kbps",
268 "576 kbps",
269 "640 kbps",
270 NULL
271 };
Hans Verkuil9cb23182006-06-18 14:11:08 -0300272 static const char *mpeg_audio_mode[] = {
273 "Stereo",
274 "Joint Stereo",
275 "Dual",
276 "Mono",
277 NULL
278 };
279 static const char *mpeg_audio_mode_extension[] = {
280 "Bound 4",
281 "Bound 8",
282 "Bound 12",
283 "Bound 16",
284 NULL
285 };
286 static const char *mpeg_audio_emphasis[] = {
287 "No Emphasis",
288 "50/15 us",
289 "CCITT J17",
290 NULL
291 };
292 static const char *mpeg_audio_crc[] = {
293 "No CRC",
294 "16-bit CRC",
295 NULL
296 };
297 static const char *mpeg_video_encoding[] = {
298 "MPEG-1",
299 "MPEG-2",
Janne Grunau188919a2008-08-08 07:21:00 -0300300 "MPEG-4 AVC",
Hans Verkuil9cb23182006-06-18 14:11:08 -0300301 NULL
302 };
303 static const char *mpeg_video_aspect[] = {
304 "1x1",
305 "4x3",
306 "16x9",
307 "2.21x1",
308 NULL
309 };
310 static const char *mpeg_video_bitrate_mode[] = {
311 "Variable Bitrate",
312 "Constant Bitrate",
313 NULL
314 };
315 static const char *mpeg_stream_type[] = {
316 "MPEG-2 Program Stream",
317 "MPEG-2 Transport Stream",
318 "MPEG-1 System Stream",
319 "MPEG-2 DVD-compatible Stream",
320 "MPEG-1 VCD-compatible Stream",
321 "MPEG-2 SVCD-compatible Stream",
322 NULL
323 };
Hans Verkuil8cbde942006-06-24 14:36:02 -0300324 static const char *mpeg_stream_vbi_fmt[] = {
325 "No VBI",
Hans Verkuil99523512006-06-25 11:18:54 -0300326 "Private packet, IVTV format",
Hans Verkuil8cbde942006-06-24 14:36:02 -0300327 NULL
328 };
Laurent Pinchart74980152008-12-14 16:24:04 -0300329 static const char *camera_power_line_frequency[] = {
330 "Disabled",
331 "50 Hz",
332 "60 Hz",
333 NULL
334 };
335 static const char *camera_exposure_auto[] = {
336 "Auto Mode",
337 "Manual Mode",
338 "Shutter Priority Mode",
339 "Aperture Priority Mode",
340 NULL
341 };
Hans Verkuil11c469e2009-02-20 05:50:52 -0300342 static const char *colorfx[] = {
343 "None",
344 "Black & White",
345 "Sepia",
346 NULL
347 };
Eduardo Valentinfdf82dc2009-08-11 18:49:12 -0300348 static const char *tune_preemphasis[] = {
349 "No preemphasis",
350 "50 useconds",
351 "75 useconds",
352 NULL,
353 };
Hans Verkuil9cb23182006-06-18 14:11:08 -0300354
355 switch (id) {
356 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
357 return mpeg_audio_sampling_freq;
358 case V4L2_CID_MPEG_AUDIO_ENCODING:
359 return mpeg_audio_encoding;
360 case V4L2_CID_MPEG_AUDIO_L1_BITRATE:
361 return mpeg_audio_l1_bitrate;
362 case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
363 return mpeg_audio_l2_bitrate;
364 case V4L2_CID_MPEG_AUDIO_L3_BITRATE:
365 return mpeg_audio_l3_bitrate;
Hans Verkuile6b5da82008-08-08 07:38:07 -0300366 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
367 return mpeg_audio_ac3_bitrate;
Hans Verkuil9cb23182006-06-18 14:11:08 -0300368 case V4L2_CID_MPEG_AUDIO_MODE:
369 return mpeg_audio_mode;
370 case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION:
371 return mpeg_audio_mode_extension;
372 case V4L2_CID_MPEG_AUDIO_EMPHASIS:
373 return mpeg_audio_emphasis;
374 case V4L2_CID_MPEG_AUDIO_CRC:
375 return mpeg_audio_crc;
376 case V4L2_CID_MPEG_VIDEO_ENCODING:
377 return mpeg_video_encoding;
378 case V4L2_CID_MPEG_VIDEO_ASPECT:
379 return mpeg_video_aspect;
380 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
381 return mpeg_video_bitrate_mode;
382 case V4L2_CID_MPEG_STREAM_TYPE:
383 return mpeg_stream_type;
Hans Verkuil8cbde942006-06-24 14:36:02 -0300384 case V4L2_CID_MPEG_STREAM_VBI_FMT:
385 return mpeg_stream_vbi_fmt;
Laurent Pinchart74980152008-12-14 16:24:04 -0300386 case V4L2_CID_POWER_LINE_FREQUENCY:
387 return camera_power_line_frequency;
388 case V4L2_CID_EXPOSURE_AUTO:
389 return camera_exposure_auto;
Hans Verkuil11c469e2009-02-20 05:50:52 -0300390 case V4L2_CID_COLORFX:
391 return colorfx;
Eduardo Valentinfdf82dc2009-08-11 18:49:12 -0300392 case V4L2_CID_TUNE_PREEMPHASIS:
393 return tune_preemphasis;
Hans Verkuil9cb23182006-06-18 14:11:08 -0300394 default:
395 return NULL;
396 }
397}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -0300398EXPORT_SYMBOL(v4l2_ctrl_get_menu);
Hans Verkuil9cb23182006-06-18 14:11:08 -0300399
Hans Verkuil69028d72008-08-08 07:55:00 -0300400/* Return the control name. */
401const char *v4l2_ctrl_get_name(u32 id)
402{
403 switch (id) {
404 /* USER controls */
Laurent Pinchart74980152008-12-14 16:24:04 -0300405 case V4L2_CID_USER_CLASS: return "User Controls";
Laurent Pinchart74980152008-12-14 16:24:04 -0300406 case V4L2_CID_BRIGHTNESS: return "Brightness";
407 case V4L2_CID_CONTRAST: return "Contrast";
408 case V4L2_CID_SATURATION: return "Saturation";
409 case V4L2_CID_HUE: return "Hue";
Hans Verkuil81dde912009-02-20 06:30:12 -0300410 case V4L2_CID_AUDIO_VOLUME: return "Volume";
411 case V4L2_CID_AUDIO_BALANCE: return "Balance";
412 case V4L2_CID_AUDIO_BASS: return "Bass";
413 case V4L2_CID_AUDIO_TREBLE: return "Treble";
414 case V4L2_CID_AUDIO_MUTE: return "Mute";
415 case V4L2_CID_AUDIO_LOUDNESS: return "Loudness";
Laurent Pinchart74980152008-12-14 16:24:04 -0300416 case V4L2_CID_BLACK_LEVEL: return "Black Level";
417 case V4L2_CID_AUTO_WHITE_BALANCE: return "White Balance, Automatic";
418 case V4L2_CID_DO_WHITE_BALANCE: return "Do White Balance";
419 case V4L2_CID_RED_BALANCE: return "Red Balance";
420 case V4L2_CID_BLUE_BALANCE: return "Blue Balance";
421 case V4L2_CID_GAMMA: return "Gamma";
422 case V4L2_CID_EXPOSURE: return "Exposure";
423 case V4L2_CID_AUTOGAIN: return "Gain, Automatic";
424 case V4L2_CID_GAIN: return "Gain";
425 case V4L2_CID_HFLIP: return "Horizontal Flip";
426 case V4L2_CID_VFLIP: return "Vertical Flip";
427 case V4L2_CID_HCENTER: return "Horizontal Center";
428 case V4L2_CID_VCENTER: return "Vertical Center";
429 case V4L2_CID_POWER_LINE_FREQUENCY: return "Power Line Frequency";
430 case V4L2_CID_HUE_AUTO: return "Hue, Automatic";
431 case V4L2_CID_WHITE_BALANCE_TEMPERATURE: return "White Balance Temperature";
432 case V4L2_CID_SHARPNESS: return "Sharpness";
433 case V4L2_CID_BACKLIGHT_COMPENSATION: return "Backlight Compensation";
434 case V4L2_CID_CHROMA_AGC: return "Chroma AGC";
Devin Heitmuellerf1a4f9e2010-03-11 22:00:13 -0300435 case V4L2_CID_CHROMA_GAIN: return "Chroma Gain";
Laurent Pinchart74980152008-12-14 16:24:04 -0300436 case V4L2_CID_COLOR_KILLER: return "Color Killer";
Hans Verkuil11c469e2009-02-20 05:50:52 -0300437 case V4L2_CID_COLORFX: return "Color Effects";
Frank Schaefera3415c12010-03-14 14:28:54 -0300438 case V4L2_CID_AUTOBRIGHTNESS: return "Brightness, Automatic";
439 case V4L2_CID_BAND_STOP_FILTER: return "Band-Stop Filter";
Vaibhav Hiremath85213632009-11-10 13:32:53 -0300440 case V4L2_CID_ROTATE: return "Rotate";
Frank Schaefera3415c12010-03-14 14:28:54 -0300441 case V4L2_CID_BG_COLOR: return "Background Color";
Hans Verkuil69028d72008-08-08 07:55:00 -0300442
443 /* MPEG controls */
444 case V4L2_CID_MPEG_CLASS: return "MPEG Encoder Controls";
445 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ: return "Audio Sampling Frequency";
446 case V4L2_CID_MPEG_AUDIO_ENCODING: return "Audio Encoding";
447 case V4L2_CID_MPEG_AUDIO_L1_BITRATE: return "Audio Layer I Bitrate";
448 case V4L2_CID_MPEG_AUDIO_L2_BITRATE: return "Audio Layer II Bitrate";
449 case V4L2_CID_MPEG_AUDIO_L3_BITRATE: return "Audio Layer III Bitrate";
Hans Verkuilf723af12008-08-09 10:35:29 -0300450 case V4L2_CID_MPEG_AUDIO_AAC_BITRATE: return "Audio AAC Bitrate";
Hans Verkuil69028d72008-08-08 07:55:00 -0300451 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE: return "Audio AC-3 Bitrate";
452 case V4L2_CID_MPEG_AUDIO_MODE: return "Audio Stereo Mode";
453 case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION: return "Audio Stereo Mode Extension";
454 case V4L2_CID_MPEG_AUDIO_EMPHASIS: return "Audio Emphasis";
455 case V4L2_CID_MPEG_AUDIO_CRC: return "Audio CRC";
456 case V4L2_CID_MPEG_AUDIO_MUTE: return "Audio Mute";
457 case V4L2_CID_MPEG_VIDEO_ENCODING: return "Video Encoding";
458 case V4L2_CID_MPEG_VIDEO_ASPECT: return "Video Aspect";
459 case V4L2_CID_MPEG_VIDEO_B_FRAMES: return "Video B Frames";
460 case V4L2_CID_MPEG_VIDEO_GOP_SIZE: return "Video GOP Size";
461 case V4L2_CID_MPEG_VIDEO_GOP_CLOSURE: return "Video GOP Closure";
462 case V4L2_CID_MPEG_VIDEO_PULLDOWN: return "Video Pulldown";
463 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE: return "Video Bitrate Mode";
464 case V4L2_CID_MPEG_VIDEO_BITRATE: return "Video Bitrate";
465 case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK: return "Video Peak Bitrate";
466 case V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION: return "Video Temporal Decimation";
467 case V4L2_CID_MPEG_VIDEO_MUTE: return "Video Mute";
468 case V4L2_CID_MPEG_VIDEO_MUTE_YUV: return "Video Mute YUV";
469 case V4L2_CID_MPEG_STREAM_TYPE: return "Stream Type";
470 case V4L2_CID_MPEG_STREAM_PID_PMT: return "Stream PMT Program ID";
471 case V4L2_CID_MPEG_STREAM_PID_AUDIO: return "Stream Audio Program ID";
472 case V4L2_CID_MPEG_STREAM_PID_VIDEO: return "Stream Video Program ID";
473 case V4L2_CID_MPEG_STREAM_PID_PCR: return "Stream PCR Program ID";
474 case V4L2_CID_MPEG_STREAM_PES_ID_AUDIO: return "Stream PES Audio ID";
475 case V4L2_CID_MPEG_STREAM_PES_ID_VIDEO: return "Stream PES Video ID";
476 case V4L2_CID_MPEG_STREAM_VBI_FMT: return "Stream VBI Format";
477
Laurent Pinchart74980152008-12-14 16:24:04 -0300478 /* CAMERA controls */
479 case V4L2_CID_CAMERA_CLASS: return "Camera Controls";
480 case V4L2_CID_EXPOSURE_AUTO: return "Auto Exposure";
481 case V4L2_CID_EXPOSURE_ABSOLUTE: return "Exposure Time, Absolute";
482 case V4L2_CID_EXPOSURE_AUTO_PRIORITY: return "Exposure, Dynamic Framerate";
483 case V4L2_CID_PAN_RELATIVE: return "Pan, Relative";
484 case V4L2_CID_TILT_RELATIVE: return "Tilt, Relative";
485 case V4L2_CID_PAN_RESET: return "Pan, Reset";
486 case V4L2_CID_TILT_RESET: return "Tilt, Reset";
487 case V4L2_CID_PAN_ABSOLUTE: return "Pan, Absolute";
488 case V4L2_CID_TILT_ABSOLUTE: return "Tilt, Absolute";
489 case V4L2_CID_FOCUS_ABSOLUTE: return "Focus, Absolute";
490 case V4L2_CID_FOCUS_RELATIVE: return "Focus, Relative";
491 case V4L2_CID_FOCUS_AUTO: return "Focus, Automatic";
Laurent Pinchart48213fe2010-01-20 12:12:57 -0300492 case V4L2_CID_IRIS_ABSOLUTE: return "Iris, Absolute";
493 case V4L2_CID_IRIS_RELATIVE: return "Iris, Relative";
Laurent Pinchart74980152008-12-14 16:24:04 -0300494 case V4L2_CID_ZOOM_ABSOLUTE: return "Zoom, Absolute";
495 case V4L2_CID_ZOOM_RELATIVE: return "Zoom, Relative";
496 case V4L2_CID_ZOOM_CONTINUOUS: return "Zoom, Continuous";
497 case V4L2_CID_PRIVACY: return "Privacy";
498
Eduardo Valentinfdf82dc2009-08-11 18:49:12 -0300499 /* FM Radio Modulator control */
500 case V4L2_CID_FM_TX_CLASS: return "FM Radio Modulator Controls";
501 case V4L2_CID_RDS_TX_DEVIATION: return "RDS Signal Deviation";
502 case V4L2_CID_RDS_TX_PI: return "RDS Program ID";
503 case V4L2_CID_RDS_TX_PTY: return "RDS Program Type";
504 case V4L2_CID_RDS_TX_PS_NAME: return "RDS PS Name";
505 case V4L2_CID_RDS_TX_RADIO_TEXT: return "RDS Radio Text";
506 case V4L2_CID_AUDIO_LIMITER_ENABLED: return "Audio Limiter Feature Enabled";
507 case V4L2_CID_AUDIO_LIMITER_RELEASE_TIME: return "Audio Limiter Release Time";
508 case V4L2_CID_AUDIO_LIMITER_DEVIATION: return "Audio Limiter Deviation";
509 case V4L2_CID_AUDIO_COMPRESSION_ENABLED: return "Audio Compression Feature Enabled";
510 case V4L2_CID_AUDIO_COMPRESSION_GAIN: return "Audio Compression Gain";
511 case V4L2_CID_AUDIO_COMPRESSION_THRESHOLD: return "Audio Compression Threshold";
512 case V4L2_CID_AUDIO_COMPRESSION_ATTACK_TIME: return "Audio Compression Attack Time";
513 case V4L2_CID_AUDIO_COMPRESSION_RELEASE_TIME: return "Audio Compression Release Time";
514 case V4L2_CID_PILOT_TONE_ENABLED: return "Pilot Tone Feature Enabled";
515 case V4L2_CID_PILOT_TONE_DEVIATION: return "Pilot Tone Deviation";
516 case V4L2_CID_PILOT_TONE_FREQUENCY: return "Pilot Tone Frequency";
517 case V4L2_CID_TUNE_PREEMPHASIS: return "Pre-emphasis settings";
518 case V4L2_CID_TUNE_POWER_LEVEL: return "Tune Power Level";
519 case V4L2_CID_TUNE_ANTENNA_CAPACITOR: return "Tune Antenna Capacitor";
520
Hans Verkuil69028d72008-08-08 07:55:00 -0300521 default:
522 return NULL;
523 }
524}
525EXPORT_SYMBOL(v4l2_ctrl_get_name);
526
Hans Verkuil9cb23182006-06-18 14:11:08 -0300527/* Fill in a struct v4l2_queryctrl */
528int v4l2_ctrl_query_fill(struct v4l2_queryctrl *qctrl, s32 min, s32 max, s32 step, s32 def)
529{
Hans Verkuil69028d72008-08-08 07:55:00 -0300530 const char *name = v4l2_ctrl_get_name(qctrl->id);
Hans Verkuil9cb23182006-06-18 14:11:08 -0300531
532 qctrl->flags = 0;
Hans Verkuil69028d72008-08-08 07:55:00 -0300533 if (name == NULL)
Hans Verkuil9cb23182006-06-18 14:11:08 -0300534 return -EINVAL;
Hans Verkuil69028d72008-08-08 07:55:00 -0300535
Hans Verkuil9cb23182006-06-18 14:11:08 -0300536 switch (qctrl->id) {
537 case V4L2_CID_AUDIO_MUTE:
538 case V4L2_CID_AUDIO_LOUDNESS:
Laurent Pinchart74980152008-12-14 16:24:04 -0300539 case V4L2_CID_AUTO_WHITE_BALANCE:
540 case V4L2_CID_AUTOGAIN:
541 case V4L2_CID_HFLIP:
542 case V4L2_CID_VFLIP:
543 case V4L2_CID_HUE_AUTO:
Hans Verkuil81dde912009-02-20 06:30:12 -0300544 case V4L2_CID_CHROMA_AGC:
545 case V4L2_CID_COLOR_KILLER:
Hans Verkuil5eee72e2007-04-27 12:31:00 -0300546 case V4L2_CID_MPEG_AUDIO_MUTE:
Hans Verkuil01f1e442007-08-21 18:32:42 -0300547 case V4L2_CID_MPEG_VIDEO_MUTE:
Hans Verkuil9cb23182006-06-18 14:11:08 -0300548 case V4L2_CID_MPEG_VIDEO_GOP_CLOSURE:
549 case V4L2_CID_MPEG_VIDEO_PULLDOWN:
Laurent Pinchart74980152008-12-14 16:24:04 -0300550 case V4L2_CID_EXPOSURE_AUTO_PRIORITY:
Hans Verkuil81dde912009-02-20 06:30:12 -0300551 case V4L2_CID_FOCUS_AUTO:
Laurent Pinchart74980152008-12-14 16:24:04 -0300552 case V4L2_CID_PRIVACY:
Eduardo Valentinfdf82dc2009-08-11 18:49:12 -0300553 case V4L2_CID_AUDIO_LIMITER_ENABLED:
554 case V4L2_CID_AUDIO_COMPRESSION_ENABLED:
555 case V4L2_CID_PILOT_TONE_ENABLED:
Hans Verkuil9cb23182006-06-18 14:11:08 -0300556 qctrl->type = V4L2_CTRL_TYPE_BOOLEAN;
557 min = 0;
558 max = step = 1;
559 break;
Hans Verkuil81dde912009-02-20 06:30:12 -0300560 case V4L2_CID_PAN_RESET:
561 case V4L2_CID_TILT_RESET:
562 qctrl->type = V4L2_CTRL_TYPE_BUTTON;
563 qctrl->flags |= V4L2_CTRL_FLAG_WRITE_ONLY;
564 min = max = step = def = 0;
565 break;
Laurent Pinchart74980152008-12-14 16:24:04 -0300566 case V4L2_CID_POWER_LINE_FREQUENCY:
Hans Verkuil9cb23182006-06-18 14:11:08 -0300567 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
568 case V4L2_CID_MPEG_AUDIO_ENCODING:
569 case V4L2_CID_MPEG_AUDIO_L1_BITRATE:
570 case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
571 case V4L2_CID_MPEG_AUDIO_L3_BITRATE:
Hans Verkuile6b5da82008-08-08 07:38:07 -0300572 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
Hans Verkuil9cb23182006-06-18 14:11:08 -0300573 case V4L2_CID_MPEG_AUDIO_MODE:
574 case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION:
575 case V4L2_CID_MPEG_AUDIO_EMPHASIS:
576 case V4L2_CID_MPEG_AUDIO_CRC:
577 case V4L2_CID_MPEG_VIDEO_ENCODING:
578 case V4L2_CID_MPEG_VIDEO_ASPECT:
579 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
580 case V4L2_CID_MPEG_STREAM_TYPE:
Hans Verkuil8cbde942006-06-24 14:36:02 -0300581 case V4L2_CID_MPEG_STREAM_VBI_FMT:
Laurent Pinchart74980152008-12-14 16:24:04 -0300582 case V4L2_CID_EXPOSURE_AUTO:
Hans Verkuil11c469e2009-02-20 05:50:52 -0300583 case V4L2_CID_COLORFX:
Eduardo Valentinfdf82dc2009-08-11 18:49:12 -0300584 case V4L2_CID_TUNE_PREEMPHASIS:
Hans Verkuil9cb23182006-06-18 14:11:08 -0300585 qctrl->type = V4L2_CTRL_TYPE_MENU;
586 step = 1;
587 break;
Eduardo Valentinfdf82dc2009-08-11 18:49:12 -0300588 case V4L2_CID_RDS_TX_PS_NAME:
589 case V4L2_CID_RDS_TX_RADIO_TEXT:
590 qctrl->type = V4L2_CTRL_TYPE_STRING;
591 break;
Hans Verkuil9cb23182006-06-18 14:11:08 -0300592 case V4L2_CID_USER_CLASS:
Laurent Pinchart74980152008-12-14 16:24:04 -0300593 case V4L2_CID_CAMERA_CLASS:
Hans Verkuil9cb23182006-06-18 14:11:08 -0300594 case V4L2_CID_MPEG_CLASS:
Eduardo Valentinfdf82dc2009-08-11 18:49:12 -0300595 case V4L2_CID_FM_TX_CLASS:
Hans Verkuil9cb23182006-06-18 14:11:08 -0300596 qctrl->type = V4L2_CTRL_TYPE_CTRL_CLASS;
597 qctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY;
598 min = max = step = def = 0;
599 break;
Vaibhav Hiremath85213632009-11-10 13:32:53 -0300600 case V4L2_CID_BG_COLOR:
601 qctrl->type = V4L2_CTRL_TYPE_INTEGER;
602 step = 1;
603 min = 0;
604 /* Max is calculated as RGB888 that is 2^24 */
605 max = 0xFFFFFF;
606 break;
Hans Verkuil9cb23182006-06-18 14:11:08 -0300607 default:
608 qctrl->type = V4L2_CTRL_TYPE_INTEGER;
609 break;
610 }
611 switch (qctrl->id) {
612 case V4L2_CID_MPEG_AUDIO_ENCODING:
613 case V4L2_CID_MPEG_AUDIO_MODE:
614 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
615 case V4L2_CID_MPEG_VIDEO_B_FRAMES:
616 case V4L2_CID_MPEG_STREAM_TYPE:
617 qctrl->flags |= V4L2_CTRL_FLAG_UPDATE;
618 break;
619 case V4L2_CID_AUDIO_VOLUME:
620 case V4L2_CID_AUDIO_BALANCE:
621 case V4L2_CID_AUDIO_BASS:
622 case V4L2_CID_AUDIO_TREBLE:
623 case V4L2_CID_BRIGHTNESS:
624 case V4L2_CID_CONTRAST:
625 case V4L2_CID_SATURATION:
626 case V4L2_CID_HUE:
Hans Verkuil81dde912009-02-20 06:30:12 -0300627 case V4L2_CID_RED_BALANCE:
628 case V4L2_CID_BLUE_BALANCE:
629 case V4L2_CID_GAMMA:
Janne Grunau8c84cfd2009-03-18 17:00:39 -0300630 case V4L2_CID_SHARPNESS:
Devin Heitmuellerf1a4f9e2010-03-11 22:00:13 -0300631 case V4L2_CID_CHROMA_GAIN:
Eduardo Valentinfdf82dc2009-08-11 18:49:12 -0300632 case V4L2_CID_RDS_TX_DEVIATION:
633 case V4L2_CID_AUDIO_LIMITER_RELEASE_TIME:
634 case V4L2_CID_AUDIO_LIMITER_DEVIATION:
635 case V4L2_CID_AUDIO_COMPRESSION_GAIN:
636 case V4L2_CID_AUDIO_COMPRESSION_THRESHOLD:
637 case V4L2_CID_AUDIO_COMPRESSION_ATTACK_TIME:
638 case V4L2_CID_AUDIO_COMPRESSION_RELEASE_TIME:
639 case V4L2_CID_PILOT_TONE_DEVIATION:
640 case V4L2_CID_PILOT_TONE_FREQUENCY:
641 case V4L2_CID_TUNE_POWER_LEVEL:
642 case V4L2_CID_TUNE_ANTENNA_CAPACITOR:
Hans Verkuil9cb23182006-06-18 14:11:08 -0300643 qctrl->flags |= V4L2_CTRL_FLAG_SLIDER;
644 break;
Hans Verkuil81dde912009-02-20 06:30:12 -0300645 case V4L2_CID_PAN_RELATIVE:
646 case V4L2_CID_TILT_RELATIVE:
647 case V4L2_CID_FOCUS_RELATIVE:
Laurent Pinchart48213fe2010-01-20 12:12:57 -0300648 case V4L2_CID_IRIS_RELATIVE:
Hans Verkuil81dde912009-02-20 06:30:12 -0300649 case V4L2_CID_ZOOM_RELATIVE:
650 qctrl->flags |= V4L2_CTRL_FLAG_WRITE_ONLY;
651 break;
Hans Verkuil9cb23182006-06-18 14:11:08 -0300652 }
653 qctrl->minimum = min;
654 qctrl->maximum = max;
655 qctrl->step = step;
656 qctrl->default_value = def;
657 qctrl->reserved[0] = qctrl->reserved[1] = 0;
Hans Verkuilb634a932009-01-17 11:26:59 -0300658 strlcpy(qctrl->name, name, sizeof(qctrl->name));
Hans Verkuil9cb23182006-06-18 14:11:08 -0300659 return 0;
660}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -0300661EXPORT_SYMBOL(v4l2_ctrl_query_fill);
Hans Verkuil9cb23182006-06-18 14:11:08 -0300662
Hans Verkuil9cb23182006-06-18 14:11:08 -0300663/* Fill in a struct v4l2_querymenu based on the struct v4l2_queryctrl and
Hans Verkuile281db582008-08-08 12:43:59 -0300664 the menu. The qctrl pointer may be NULL, in which case it is ignored.
665 If menu_items is NULL, then the menu items are retrieved using
666 v4l2_ctrl_get_menu. */
Hans Verkuil9cb23182006-06-18 14:11:08 -0300667int v4l2_ctrl_query_menu(struct v4l2_querymenu *qmenu, struct v4l2_queryctrl *qctrl,
668 const char **menu_items)
669{
670 int i;
671
Hans Verkuil1e551262008-08-08 08:34:19 -0300672 qmenu->reserved = 0;
Hans Verkuile281db582008-08-08 12:43:59 -0300673 if (menu_items == NULL)
674 menu_items = v4l2_ctrl_get_menu(qmenu->id);
Hans Verkuil9cb23182006-06-18 14:11:08 -0300675 if (menu_items == NULL ||
676 (qctrl && (qmenu->index < qctrl->minimum || qmenu->index > qctrl->maximum)))
677 return -EINVAL;
678 for (i = 0; i < qmenu->index && menu_items[i]; i++) ;
679 if (menu_items[i] == NULL || menu_items[i][0] == '\0')
680 return -EINVAL;
Hans Verkuilb634a932009-01-17 11:26:59 -0300681 strlcpy(qmenu->name, menu_items[qmenu->index], sizeof(qmenu->name));
Hans Verkuil9cb23182006-06-18 14:11:08 -0300682 return 0;
683}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -0300684EXPORT_SYMBOL(v4l2_ctrl_query_menu);
Hans Verkuil9cb23182006-06-18 14:11:08 -0300685
Hans Verkuil1e551262008-08-08 08:34:19 -0300686/* Fill in a struct v4l2_querymenu based on the specified array of valid
687 menu items (terminated by V4L2_CTRL_MENU_IDS_END).
688 Use this if there are 'holes' in the list of valid menu items. */
689int v4l2_ctrl_query_menu_valid_items(struct v4l2_querymenu *qmenu, const u32 *ids)
690{
691 const char **menu_items = v4l2_ctrl_get_menu(qmenu->id);
692
693 qmenu->reserved = 0;
694 if (menu_items == NULL || ids == NULL)
695 return -EINVAL;
696 while (*ids != V4L2_CTRL_MENU_IDS_END) {
697 if (*ids++ == qmenu->index) {
Hans Verkuilb634a932009-01-17 11:26:59 -0300698 strlcpy(qmenu->name, menu_items[qmenu->index],
699 sizeof(qmenu->name));
Hans Verkuil1e551262008-08-08 08:34:19 -0300700 return 0;
701 }
702 }
703 return -EINVAL;
704}
705EXPORT_SYMBOL(v4l2_ctrl_query_menu_valid_items);
706
Hans Verkuil9cb23182006-06-18 14:11:08 -0300707/* ctrl_classes points to an array of u32 pointers, the last element is
708 a NULL pointer. Each u32 array is a 0-terminated array of control IDs.
709 Each array must be sorted low to high and belong to the same control
Hans Verkuil2ba58892009-02-13 10:57:48 -0300710 class. The array of u32 pointers must also be sorted, from low class IDs
Hans Verkuil9cb23182006-06-18 14:11:08 -0300711 to high class IDs.
712
713 This function returns the first ID that follows after the given ID.
714 When no more controls are available 0 is returned. */
715u32 v4l2_ctrl_next(const u32 * const * ctrl_classes, u32 id)
716{
Hans Verkuila46c5fb2007-07-19 04:53:36 -0300717 u32 ctrl_class = V4L2_CTRL_ID2CLASS(id);
Hans Verkuil9cb23182006-06-18 14:11:08 -0300718 const u32 *pctrl;
719
Hans Verkuil9cb23182006-06-18 14:11:08 -0300720 if (ctrl_classes == NULL)
721 return 0;
Hans Verkuila46c5fb2007-07-19 04:53:36 -0300722
723 /* if no query is desired, then check if the ID is part of ctrl_classes */
724 if ((id & V4L2_CTRL_FLAG_NEXT_CTRL) == 0) {
725 /* find class */
726 while (*ctrl_classes && V4L2_CTRL_ID2CLASS(**ctrl_classes) != ctrl_class)
727 ctrl_classes++;
728 if (*ctrl_classes == NULL)
729 return 0;
730 pctrl = *ctrl_classes;
731 /* find control ID */
732 while (*pctrl && *pctrl != id) pctrl++;
733 return *pctrl ? id : 0;
734 }
Hans Verkuil9cb23182006-06-18 14:11:08 -0300735 id &= V4L2_CTRL_ID_MASK;
Hans Verkuil9cb23182006-06-18 14:11:08 -0300736 id++; /* select next control */
737 /* find first class that matches (or is greater than) the class of
738 the ID */
739 while (*ctrl_classes && V4L2_CTRL_ID2CLASS(**ctrl_classes) < ctrl_class)
740 ctrl_classes++;
741 /* no more classes */
742 if (*ctrl_classes == NULL)
743 return 0;
744 pctrl = *ctrl_classes;
745 /* find first ctrl within the class that is >= ID */
746 while (*pctrl && *pctrl < id) pctrl++;
747 if (*pctrl)
748 return *pctrl;
749 /* we are at the end of the controls of the current class. */
750 /* continue with next class if available */
751 ctrl_classes++;
752 if (*ctrl_classes == NULL)
753 return 0;
754 return **ctrl_classes;
755}
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -0300756EXPORT_SYMBOL(v4l2_ctrl_next);
Hans Verkuil9cb23182006-06-18 14:11:08 -0300757
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300758int v4l2_chip_match_host(const struct v4l2_dbg_match *match)
Mauro Carvalho Chehaba9254472008-01-29 18:32:35 -0300759{
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300760 switch (match->type) {
Mauro Carvalho Chehaba9254472008-01-29 18:32:35 -0300761 case V4L2_CHIP_MATCH_HOST:
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300762 return match->addr == 0;
Mauro Carvalho Chehaba9254472008-01-29 18:32:35 -0300763 default:
764 return 0;
765 }
766}
767EXPORT_SYMBOL(v4l2_chip_match_host);
768
769#if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE))
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300770int v4l2_chip_match_i2c_client(struct i2c_client *c, const struct v4l2_dbg_match *match)
Hans Verkuilf3d092b2007-02-23 20:55:14 -0300771{
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300772 int len;
773
774 if (c == NULL || match == NULL)
775 return 0;
776
777 switch (match->type) {
Hans Verkuilf3d092b2007-02-23 20:55:14 -0300778 case V4L2_CHIP_MATCH_I2C_DRIVER:
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300779 if (c->driver == NULL || c->driver->driver.name == NULL)
780 return 0;
781 len = strlen(c->driver->driver.name);
782 /* legacy drivers have a ' suffix, don't try to match that */
783 if (len && c->driver->driver.name[len - 1] == '\'')
784 len--;
785 return len && !strncmp(c->driver->driver.name, match->name, len);
Hans Verkuilf3d092b2007-02-23 20:55:14 -0300786 case V4L2_CHIP_MATCH_I2C_ADDR:
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300787 return c->addr == match->addr;
Hans Verkuilf3d092b2007-02-23 20:55:14 -0300788 default:
789 return 0;
790 }
791}
Mauro Carvalho Chehaba9254472008-01-29 18:32:35 -0300792EXPORT_SYMBOL(v4l2_chip_match_i2c_client);
Hans Verkuilf3d092b2007-02-23 20:55:14 -0300793
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300794int v4l2_chip_ident_i2c_client(struct i2c_client *c, struct v4l2_dbg_chip_ident *chip,
Hans Verkuil3434eb72007-04-27 12:31:08 -0300795 u32 ident, u32 revision)
796{
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300797 if (!v4l2_chip_match_i2c_client(c, &chip->match))
Hans Verkuil3434eb72007-04-27 12:31:08 -0300798 return 0;
799 if (chip->ident == V4L2_IDENT_NONE) {
800 chip->ident = ident;
801 chip->revision = revision;
802 }
803 else {
804 chip->ident = V4L2_IDENT_AMBIGUOUS;
805 chip->revision = 0;
806 }
807 return 0;
808}
Mauro Carvalho Chehaba9254472008-01-29 18:32:35 -0300809EXPORT_SYMBOL(v4l2_chip_ident_i2c_client);
Hans Verkuilf3d092b2007-02-23 20:55:14 -0300810
Hans Verkuil9cb23182006-06-18 14:11:08 -0300811/* ----------------------------------------------------------------- */
812
Hans Verkuil78a3b4d2009-04-01 03:41:09 -0300813/* I2C Helper functions */
Hans Verkuil8ffbc652007-09-12 08:32:50 -0300814
Hans Verkuildd991202008-11-23 12:19:45 -0300815
816void v4l2_i2c_subdev_init(struct v4l2_subdev *sd, struct i2c_client *client,
817 const struct v4l2_subdev_ops *ops)
818{
819 v4l2_subdev_init(sd, ops);
Hans Verkuilb5b2b7e2009-05-02 10:58:51 -0300820 sd->flags |= V4L2_SUBDEV_FL_IS_I2C;
Hans Verkuildd991202008-11-23 12:19:45 -0300821 /* the owner is the same as the i2c_client's driver owner */
822 sd->owner = client->driver->driver.owner;
823 /* i2c_client and v4l2_subdev point to one another */
824 v4l2_set_subdevdata(sd, client);
825 i2c_set_clientdata(client, sd);
826 /* initialize name */
827 snprintf(sd->name, sizeof(sd->name), "%s %d-%04x",
828 client->driver->driver.name, i2c_adapter_id(client->adapter),
829 client->addr);
830}
831EXPORT_SYMBOL_GPL(v4l2_i2c_subdev_init);
832
833
834
Hans Verkuile6574f22009-04-01 03:57:53 -0300835/* Load an i2c sub-device. */
Hans Verkuilf0222c72009-06-09 17:12:33 -0300836struct v4l2_subdev *v4l2_i2c_new_subdev_board(struct v4l2_device *v4l2_dev,
837 struct i2c_adapter *adapter, const char *module_name,
838 struct i2c_board_info *info, const unsigned short *probe_addrs)
839{
840 struct v4l2_subdev *sd = NULL;
841 struct i2c_client *client;
842
843 BUG_ON(!v4l2_dev);
844
845 if (module_name)
846 request_module(module_name);
847
848 /* Create the i2c client */
849 if (info->addr == 0 && probe_addrs)
850 client = i2c_new_probed_device(adapter, info, probe_addrs);
851 else
852 client = i2c_new_device(adapter, info);
853
854 /* Note: by loading the module first we are certain that c->driver
855 will be set if the driver was found. If the module was not loaded
856 first, then the i2c core tries to delay-load the module for us,
857 and then c->driver is still NULL until the module is finally
858 loaded. This delay-load mechanism doesn't work if other drivers
859 want to use the i2c device, so explicitly loading the module
860 is the best alternative. */
861 if (client == NULL || client->driver == NULL)
862 goto error;
863
864 /* Lock the module so we can safely get the v4l2_subdev pointer */
865 if (!try_module_get(client->driver->driver.owner))
866 goto error;
867 sd = i2c_get_clientdata(client);
868
869 /* Register with the v4l2_device which increases the module's
870 use count as well. */
871 if (v4l2_device_register_subdev(v4l2_dev, sd))
872 sd = NULL;
873 /* Decrease the module use count to match the first try_module_get. */
874 module_put(client->driver->driver.owner);
875
876 if (sd) {
877 /* We return errors from v4l2_subdev_call only if we have the
878 callback as the .s_config is not mandatory */
879 int err = v4l2_subdev_call(sd, core, s_config,
880 info->irq, info->platform_data);
881
882 if (err && err != -ENOIOCTLCMD) {
883 v4l2_device_unregister_subdev(sd);
884 sd = NULL;
885 }
886 }
887
888error:
889 /* If we have a client but no subdev, then something went wrong and
890 we must unregister the client. */
891 if (client && sd == NULL)
892 i2c_unregister_device(client);
893 return sd;
894}
895EXPORT_SYMBOL_GPL(v4l2_i2c_new_subdev_board);
896
897struct v4l2_subdev *v4l2_i2c_new_subdev_cfg(struct v4l2_device *v4l2_dev,
898 struct i2c_adapter *adapter,
899 const char *module_name, const char *client_type,
900 int irq, void *platform_data,
901 u8 addr, const unsigned short *probe_addrs)
902{
903 struct i2c_board_info info;
904
905 /* Setup the i2c board info with the device type and
906 the device address. */
907 memset(&info, 0, sizeof(info));
908 strlcpy(info.type, client_type, sizeof(info.type));
909 info.addr = addr;
910 info.irq = irq;
911 info.platform_data = platform_data;
912
913 return v4l2_i2c_new_subdev_board(v4l2_dev, adapter, module_name,
914 &info, probe_addrs);
915}
916EXPORT_SYMBOL_GPL(v4l2_i2c_new_subdev_cfg);
917
Hans Verkuilab3731902009-02-21 18:08:41 -0300918/* Return i2c client address of v4l2_subdev. */
919unsigned short v4l2_i2c_subdev_addr(struct v4l2_subdev *sd)
920{
921 struct i2c_client *client = v4l2_get_subdevdata(sd);
922
923 return client ? client->addr : I2C_CLIENT_END;
924}
925EXPORT_SYMBOL_GPL(v4l2_i2c_subdev_addr);
926
Hans Verkuilc7d29e22009-01-18 19:37:59 -0300927/* Return a list of I2C tuner addresses to probe. Use only if the tuner
928 addresses are unknown. */
929const unsigned short *v4l2_i2c_tuner_addrs(enum v4l2_i2c_tuner_type type)
930{
931 static const unsigned short radio_addrs[] = {
932#if defined(CONFIG_MEDIA_TUNER_TEA5761) || defined(CONFIG_MEDIA_TUNER_TEA5761_MODULE)
933 0x10,
934#endif
935 0x60,
936 I2C_CLIENT_END
937 };
938 static const unsigned short demod_addrs[] = {
939 0x42, 0x43, 0x4a, 0x4b,
940 I2C_CLIENT_END
941 };
942 static const unsigned short tv_addrs[] = {
943 0x42, 0x43, 0x4a, 0x4b, /* tda8290 */
Hans Verkuil416a7aa2009-05-02 09:42:57 -0300944 0x60, 0x61, 0x62, 0x63, 0x64,
Hans Verkuilc7d29e22009-01-18 19:37:59 -0300945 I2C_CLIENT_END
946 };
947
948 switch (type) {
949 case ADDRS_RADIO:
950 return radio_addrs;
951 case ADDRS_DEMOD:
952 return demod_addrs;
953 case ADDRS_TV:
954 return tv_addrs;
955 case ADDRS_TV_WITH_DEMOD:
956 return tv_addrs + 4;
957 }
958 return NULL;
959}
960EXPORT_SYMBOL_GPL(v4l2_i2c_tuner_addrs);
961
Trent Piephod8b29962009-06-12 16:31:29 -0300962#endif /* defined(CONFIG_I2C) */
963
Dmitri Belimov85e09212010-03-23 11:23:29 -0300964#if defined(CONFIG_SPI)
965
966/* Load a spi sub-device. */
967
968void v4l2_spi_subdev_init(struct v4l2_subdev *sd, struct spi_device *spi,
969 const struct v4l2_subdev_ops *ops)
970{
971 v4l2_subdev_init(sd, ops);
972 sd->flags |= V4L2_SUBDEV_FL_IS_SPI;
973 /* the owner is the same as the spi_device's driver owner */
974 sd->owner = spi->dev.driver->owner;
975 /* spi_device and v4l2_subdev point to one another */
976 v4l2_set_subdevdata(sd, spi);
977 spi_set_drvdata(spi, sd);
978 /* initialize name */
979 strlcpy(sd->name, spi->dev.driver->name, sizeof(sd->name));
980}
981EXPORT_SYMBOL_GPL(v4l2_spi_subdev_init);
982
983struct v4l2_subdev *v4l2_spi_new_subdev(struct v4l2_device *v4l2_dev,
984 struct spi_master *master, struct spi_board_info *info)
985{
986 struct v4l2_subdev *sd = NULL;
987 struct spi_device *spi = NULL;
988
989 BUG_ON(!v4l2_dev);
990
991 if (info->modalias)
992 request_module(info->modalias);
993
994 spi = spi_new_device(master, info);
995
996 if (spi == NULL || spi->dev.driver == NULL)
997 goto error;
998
999 if (!try_module_get(spi->dev.driver->owner))
1000 goto error;
1001
1002 sd = spi_get_drvdata(spi);
1003
1004 /* Register with the v4l2_device which increases the module's
1005 use count as well. */
1006 if (v4l2_device_register_subdev(v4l2_dev, sd))
1007 sd = NULL;
1008
1009 /* Decrease the module use count to match the first try_module_get. */
1010 module_put(spi->dev.driver->owner);
1011
1012error:
1013 /* If we have a client but no subdev, then something went wrong and
1014 we must unregister the client. */
1015 if (spi && sd == NULL)
1016 spi_unregister_device(spi);
1017
1018 return sd;
1019}
1020EXPORT_SYMBOL_GPL(v4l2_spi_new_subdev);
1021
1022#endif /* defined(CONFIG_SPI) */
1023
Trent Piephob0d31592009-05-30 21:45:46 -03001024/* Clamp x to be between min and max, aligned to a multiple of 2^align. min
1025 * and max don't have to be aligned, but there must be at least one valid
1026 * value. E.g., min=17,max=31,align=4 is not allowed as there are no multiples
1027 * of 16 between 17 and 31. */
1028static unsigned int clamp_align(unsigned int x, unsigned int min,
1029 unsigned int max, unsigned int align)
1030{
1031 /* Bits that must be zero to be aligned */
1032 unsigned int mask = ~((1 << align) - 1);
1033
1034 /* Round to nearest aligned value */
1035 if (align)
1036 x = (x + (1 << (align - 1))) & mask;
1037
1038 /* Clamp to aligned value of min and max */
1039 if (x < min)
1040 x = (min + ~mask) & mask;
1041 else if (x > max)
1042 x = max & mask;
1043
1044 return x;
1045}
1046
1047/* Bound an image to have a width between wmin and wmax, and height between
1048 * hmin and hmax, inclusive. Additionally, the width will be a multiple of
1049 * 2^walign, the height will be a multiple of 2^halign, and the overall size
1050 * (width*height) will be a multiple of 2^salign. The image may be shrunk
1051 * or enlarged to fit the alignment constraints.
1052 *
1053 * The width or height maximum must not be smaller than the corresponding
1054 * minimum. The alignments must not be so high there are no possible image
1055 * sizes within the allowed bounds. wmin and hmin must be at least 1
1056 * (don't use 0). If you don't care about a certain alignment, specify 0,
1057 * as 2^0 is 1 and one byte alignment is equivalent to no alignment. If
1058 * you only want to adjust downward, specify a maximum that's the same as
1059 * the initial value.
1060 */
1061void v4l_bound_align_image(u32 *w, unsigned int wmin, unsigned int wmax,
1062 unsigned int walign,
1063 u32 *h, unsigned int hmin, unsigned int hmax,
1064 unsigned int halign, unsigned int salign)
1065{
1066 *w = clamp_align(*w, wmin, wmax, walign);
1067 *h = clamp_align(*h, hmin, hmax, halign);
1068
1069 /* Usually we don't need to align the size and are done now. */
1070 if (!salign)
1071 return;
1072
1073 /* How much alignment do we have? */
1074 walign = __ffs(*w);
1075 halign = __ffs(*h);
1076 /* Enough to satisfy the image alignment? */
1077 if (walign + halign < salign) {
1078 /* Max walign where there is still a valid width */
1079 unsigned int wmaxa = __fls(wmax ^ (wmin - 1));
1080 /* Max halign where there is still a valid height */
1081 unsigned int hmaxa = __fls(hmax ^ (hmin - 1));
1082
1083 /* up the smaller alignment until we have enough */
1084 do {
1085 if (halign >= hmaxa ||
1086 (walign <= halign && walign < wmaxa)) {
1087 *w = clamp_align(*w, wmin, wmax, walign + 1);
1088 walign = __ffs(*w);
1089 } else {
1090 *h = clamp_align(*h, hmin, hmax, halign + 1);
1091 halign = __ffs(*h);
1092 }
1093 } while (halign + walign < salign);
1094 }
1095}
1096EXPORT_SYMBOL_GPL(v4l_bound_align_image);
Muralidharan Karicheri2e535ed2009-12-10 04:39:47 -03001097
1098/**
1099 * v4l_fill_dv_preset_info - fill description of a digital video preset
1100 * @preset - preset value
1101 * @info - pointer to struct v4l2_dv_enum_preset
1102 *
1103 * drivers can use this helper function to fill description of dv preset
1104 * in info.
1105 */
1106int v4l_fill_dv_preset_info(u32 preset, struct v4l2_dv_enum_preset *info)
1107{
1108 static const struct v4l2_dv_preset_info {
1109 u16 width;
1110 u16 height;
1111 const char *name;
1112 } dv_presets[] = {
1113 { 0, 0, "Invalid" }, /* V4L2_DV_INVALID */
1114 { 720, 480, "480p@59.94" }, /* V4L2_DV_480P59_94 */
1115 { 720, 576, "576p@50" }, /* V4L2_DV_576P50 */
1116 { 1280, 720, "720p@24" }, /* V4L2_DV_720P24 */
1117 { 1280, 720, "720p@25" }, /* V4L2_DV_720P25 */
1118 { 1280, 720, "720p@30" }, /* V4L2_DV_720P30 */
1119 { 1280, 720, "720p@50" }, /* V4L2_DV_720P50 */
1120 { 1280, 720, "720p@59.94" }, /* V4L2_DV_720P59_94 */
1121 { 1280, 720, "720p@60" }, /* V4L2_DV_720P60 */
1122 { 1920, 1080, "1080i@29.97" }, /* V4L2_DV_1080I29_97 */
1123 { 1920, 1080, "1080i@30" }, /* V4L2_DV_1080I30 */
1124 { 1920, 1080, "1080i@25" }, /* V4L2_DV_1080I25 */
1125 { 1920, 1080, "1080i@50" }, /* V4L2_DV_1080I50 */
1126 { 1920, 1080, "1080i@60" }, /* V4L2_DV_1080I60 */
1127 { 1920, 1080, "1080p@24" }, /* V4L2_DV_1080P24 */
1128 { 1920, 1080, "1080p@25" }, /* V4L2_DV_1080P25 */
1129 { 1920, 1080, "1080p@30" }, /* V4L2_DV_1080P30 */
1130 { 1920, 1080, "1080p@50" }, /* V4L2_DV_1080P50 */
1131 { 1920, 1080, "1080p@60" }, /* V4L2_DV_1080P60 */
1132 };
1133
1134 if (info == NULL || preset >= ARRAY_SIZE(dv_presets))
1135 return -EINVAL;
1136
1137 info->preset = preset;
1138 info->width = dv_presets[preset].width;
1139 info->height = dv_presets[preset].height;
1140 strlcpy(info->name, dv_presets[preset].name, sizeof(info->name));
1141 return 0;
1142}
1143EXPORT_SYMBOL_GPL(v4l_fill_dv_preset_info);