v4l2-controls.txt 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  1. Introduction
  2. ============
  3. The V4L2 control API seems simple enough, but quickly becomes very hard to
  4. implement correctly in drivers. But much of the code needed to handle controls
  5. is actually not driver specific and can be moved to the V4L core framework.
  6. After all, the only part that a driver developer is interested in is:
  7. 1) How do I add a control?
  8. 2) How do I set the control's value? (i.e. s_ctrl)
  9. And occasionally:
  10. 3) How do I get the control's value? (i.e. g_volatile_ctrl)
  11. 4) How do I validate the user's proposed control value? (i.e. try_ctrl)
  12. All the rest is something that can be done centrally.
  13. The control framework was created in order to implement all the rules of the
  14. V4L2 specification with respect to controls in a central place. And to make
  15. life as easy as possible for the driver developer.
  16. Note that the control framework relies on the presence of a struct v4l2_device
  17. for V4L2 drivers and struct v4l2_subdev for sub-device drivers.
  18. Objects in the framework
  19. ========================
  20. There are two main objects:
  21. The v4l2_ctrl object describes the control properties and keeps track of the
  22. control's value (both the current value and the proposed new value).
  23. v4l2_ctrl_handler is the object that keeps track of controls. It maintains a
  24. list of v4l2_ctrl objects that it owns and another list of references to
  25. controls, possibly to controls owned by other handlers.
  26. Basic usage for V4L2 and sub-device drivers
  27. ===========================================
  28. 1) Prepare the driver:
  29. 1.1) Add the handler to your driver's top-level struct:
  30. struct foo_dev {
  31. ...
  32. struct v4l2_ctrl_handler ctrl_handler;
  33. ...
  34. };
  35. struct foo_dev *foo;
  36. 1.2) Initialize the handler:
  37. v4l2_ctrl_handler_init(&foo->ctrl_handler, nr_of_controls);
  38. The second argument is a hint telling the function how many controls this
  39. handler is expected to handle. It will allocate a hashtable based on this
  40. information. It is a hint only.
  41. 1.3) Hook the control handler into the driver:
  42. 1.3.1) For V4L2 drivers do this:
  43. struct foo_dev {
  44. ...
  45. struct v4l2_device v4l2_dev;
  46. ...
  47. struct v4l2_ctrl_handler ctrl_handler;
  48. ...
  49. };
  50. foo->v4l2_dev.ctrl_handler = &foo->ctrl_handler;
  51. Where foo->v4l2_dev is of type struct v4l2_device.
  52. Finally, remove all control functions from your v4l2_ioctl_ops:
  53. vidioc_queryctrl, vidioc_querymenu, vidioc_g_ctrl, vidioc_s_ctrl,
  54. vidioc_g_ext_ctrls, vidioc_try_ext_ctrls and vidioc_s_ext_ctrls.
  55. Those are now no longer needed.
  56. 1.3.2) For sub-device drivers do this:
  57. struct foo_dev {
  58. ...
  59. struct v4l2_subdev sd;
  60. ...
  61. struct v4l2_ctrl_handler ctrl_handler;
  62. ...
  63. };
  64. foo->sd.ctrl_handler = &foo->ctrl_handler;
  65. Where foo->sd is of type struct v4l2_subdev.
  66. And set all core control ops in your struct v4l2_subdev_core_ops to these
  67. helpers:
  68. .queryctrl = v4l2_subdev_queryctrl,
  69. .querymenu = v4l2_subdev_querymenu,
  70. .g_ctrl = v4l2_subdev_g_ctrl,
  71. .s_ctrl = v4l2_subdev_s_ctrl,
  72. .g_ext_ctrls = v4l2_subdev_g_ext_ctrls,
  73. .try_ext_ctrls = v4l2_subdev_try_ext_ctrls,
  74. .s_ext_ctrls = v4l2_subdev_s_ext_ctrls,
  75. Note: this is a temporary solution only. Once all V4L2 drivers that depend
  76. on subdev drivers are converted to the control framework these helpers will
  77. no longer be needed.
  78. 1.4) Clean up the handler at the end:
  79. v4l2_ctrl_handler_free(&foo->ctrl_handler);
  80. 2) Add controls:
  81. You add non-menu controls by calling v4l2_ctrl_new_std:
  82. struct v4l2_ctrl *v4l2_ctrl_new_std(struct v4l2_ctrl_handler *hdl,
  83. const struct v4l2_ctrl_ops *ops,
  84. u32 id, s32 min, s32 max, u32 step, s32 def);
  85. Menu and integer menu controls are added by calling v4l2_ctrl_new_std_menu:
  86. struct v4l2_ctrl *v4l2_ctrl_new_std_menu(struct v4l2_ctrl_handler *hdl,
  87. const struct v4l2_ctrl_ops *ops,
  88. u32 id, s32 max, s32 skip_mask, s32 def);
  89. Menu controls with a driver specific menu are added by calling
  90. v4l2_ctrl_new_std_menu_items:
  91. struct v4l2_ctrl *v4l2_ctrl_new_std_menu_items(
  92. struct v4l2_ctrl_handler *hdl,
  93. const struct v4l2_ctrl_ops *ops, u32 id, s32 max,
  94. s32 skip_mask, s32 def, const char * const *qmenu);
  95. Integer menu controls with a driver specific menu can be added by calling
  96. v4l2_ctrl_new_int_menu:
  97. struct v4l2_ctrl *v4l2_ctrl_new_int_menu(struct v4l2_ctrl_handler *hdl,
  98. const struct v4l2_ctrl_ops *ops,
  99. u32 id, s32 max, s32 def, const s64 *qmenu_int);
  100. These functions are typically called right after the v4l2_ctrl_handler_init:
  101. static const s64 exp_bias_qmenu[] = {
  102. -2, -1, 0, 1, 2
  103. };
  104. static const char * const test_pattern[] = {
  105. "Disabled",
  106. "Vertical Bars",
  107. "Solid Black",
  108. "Solid White",
  109. };
  110. v4l2_ctrl_handler_init(&foo->ctrl_handler, nr_of_controls);
  111. v4l2_ctrl_new_std(&foo->ctrl_handler, &foo_ctrl_ops,
  112. V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
  113. v4l2_ctrl_new_std(&foo->ctrl_handler, &foo_ctrl_ops,
  114. V4L2_CID_CONTRAST, 0, 255, 1, 128);
  115. v4l2_ctrl_new_std_menu(&foo->ctrl_handler, &foo_ctrl_ops,
  116. V4L2_CID_POWER_LINE_FREQUENCY,
  117. V4L2_CID_POWER_LINE_FREQUENCY_60HZ, 0,
  118. V4L2_CID_POWER_LINE_FREQUENCY_DISABLED);
  119. v4l2_ctrl_new_int_menu(&foo->ctrl_handler, &foo_ctrl_ops,
  120. V4L2_CID_EXPOSURE_BIAS,
  121. ARRAY_SIZE(exp_bias_qmenu) - 1,
  122. ARRAY_SIZE(exp_bias_qmenu) / 2 - 1,
  123. exp_bias_qmenu);
  124. v4l2_ctrl_new_std_menu_items(&foo->ctrl_handler, &foo_ctrl_ops,
  125. V4L2_CID_TEST_PATTERN, ARRAY_SIZE(test_pattern) - 1, 0,
  126. 0, test_pattern);
  127. ...
  128. if (foo->ctrl_handler.error) {
  129. int err = foo->ctrl_handler.error;
  130. v4l2_ctrl_handler_free(&foo->ctrl_handler);
  131. return err;
  132. }
  133. The v4l2_ctrl_new_std function returns the v4l2_ctrl pointer to the new
  134. control, but if you do not need to access the pointer outside the control ops,
  135. then there is no need to store it.
  136. The v4l2_ctrl_new_std function will fill in most fields based on the control
  137. ID except for the min, max, step and default values. These are passed in the
  138. last four arguments. These values are driver specific while control attributes
  139. like type, name, flags are all global. The control's current value will be set
  140. to the default value.
  141. The v4l2_ctrl_new_std_menu function is very similar but it is used for menu
  142. controls. There is no min argument since that is always 0 for menu controls,
  143. and instead of a step there is a skip_mask argument: if bit X is 1, then menu
  144. item X is skipped.
  145. The v4l2_ctrl_new_int_menu function creates a new standard integer menu
  146. control with driver-specific items in the menu. It differs from
  147. v4l2_ctrl_new_std_menu in that it doesn't have the mask argument and takes
  148. as the last argument an array of signed 64-bit integers that form an exact
  149. menu item list.
  150. The v4l2_ctrl_new_std_menu_items function is very similar to
  151. v4l2_ctrl_new_std_menu but takes an extra parameter qmenu, which is the driver
  152. specific menu for an otherwise standard menu control. A good example for this
  153. control is the test pattern control for capture/display/sensors devices that
  154. have the capability to generate test patterns. These test patterns are hardware
  155. specific, so the contents of the menu will vary from device to device.
  156. Note that if something fails, the function will return NULL or an error and
  157. set ctrl_handler->error to the error code. If ctrl_handler->error was already
  158. set, then it will just return and do nothing. This is also true for
  159. v4l2_ctrl_handler_init if it cannot allocate the internal data structure.
  160. This makes it easy to init the handler and just add all controls and only check
  161. the error code at the end. Saves a lot of repetitive error checking.
  162. It is recommended to add controls in ascending control ID order: it will be
  163. a bit faster that way.
  164. 3) Optionally force initial control setup:
  165. v4l2_ctrl_handler_setup(&foo->ctrl_handler);
  166. This will call s_ctrl for all controls unconditionally. Effectively this
  167. initializes the hardware to the default control values. It is recommended
  168. that you do this as this ensures that both the internal data structures and
  169. the hardware are in sync.
  170. 4) Finally: implement the v4l2_ctrl_ops
  171. static const struct v4l2_ctrl_ops foo_ctrl_ops = {
  172. .s_ctrl = foo_s_ctrl,
  173. };
  174. Usually all you need is s_ctrl:
  175. static int foo_s_ctrl(struct v4l2_ctrl *ctrl)
  176. {
  177. struct foo *state = container_of(ctrl->handler, struct foo, ctrl_handler);
  178. switch (ctrl->id) {
  179. case V4L2_CID_BRIGHTNESS:
  180. write_reg(0x123, ctrl->val);
  181. break;
  182. case V4L2_CID_CONTRAST:
  183. write_reg(0x456, ctrl->val);
  184. break;
  185. }
  186. return 0;
  187. }
  188. The control ops are called with the v4l2_ctrl pointer as argument.
  189. The new control value has already been validated, so all you need to do is
  190. to actually update the hardware registers.
  191. You're done! And this is sufficient for most of the drivers we have. No need
  192. to do any validation of control values, or implement QUERYCTRL/QUERYMENU. And
  193. G/S_CTRL as well as G/TRY/S_EXT_CTRLS are automatically supported.
  194. ==============================================================================
  195. The remainder of this document deals with more advanced topics and scenarios.
  196. In practice the basic usage as described above is sufficient for most drivers.
  197. ===============================================================================
  198. Inheriting Controls
  199. ===================
  200. When a sub-device is registered with a V4L2 driver by calling
  201. v4l2_device_register_subdev() and the ctrl_handler fields of both v4l2_subdev
  202. and v4l2_device are set, then the controls of the subdev will become
  203. automatically available in the V4L2 driver as well. If the subdev driver
  204. contains controls that already exist in the V4L2 driver, then those will be
  205. skipped (so a V4L2 driver can always override a subdev control).
  206. What happens here is that v4l2_device_register_subdev() calls
  207. v4l2_ctrl_add_handler() adding the controls of the subdev to the controls
  208. of v4l2_device.
  209. Accessing Control Values
  210. ========================
  211. The v4l2_ctrl struct contains these two unions:
  212. /* The current control value. */
  213. union {
  214. s32 val;
  215. s64 val64;
  216. char *string;
  217. } cur;
  218. /* The new control value. */
  219. union {
  220. s32 val;
  221. s64 val64;
  222. char *string;
  223. };
  224. Within the control ops you can freely use these. The val and val64 speak for
  225. themselves. The string pointers point to character buffers of length
  226. ctrl->maximum + 1, and are always 0-terminated.
  227. In most cases 'cur' contains the current cached control value. When you create
  228. a new control this value is made identical to the default value. After calling
  229. v4l2_ctrl_handler_setup() this value is passed to the hardware. It is generally
  230. a good idea to call this function.
  231. Whenever a new value is set that new value is automatically cached. This means
  232. that most drivers do not need to implement the g_volatile_ctrl() op. The
  233. exception is for controls that return a volatile register such as a signal
  234. strength read-out that changes continuously. In that case you will need to
  235. implement g_volatile_ctrl like this:
  236. static int foo_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
  237. {
  238. switch (ctrl->id) {
  239. case V4L2_CID_BRIGHTNESS:
  240. ctrl->val = read_reg(0x123);
  241. break;
  242. }
  243. }
  244. Note that you use the 'new value' union as well in g_volatile_ctrl. In general
  245. controls that need to implement g_volatile_ctrl are read-only controls.
  246. To mark a control as volatile you have to set V4L2_CTRL_FLAG_VOLATILE:
  247. ctrl = v4l2_ctrl_new_std(&sd->ctrl_handler, ...);
  248. if (ctrl)
  249. ctrl->flags |= V4L2_CTRL_FLAG_VOLATILE;
  250. For try/s_ctrl the new values (i.e. as passed by the user) are filled in and
  251. you can modify them in try_ctrl or set them in s_ctrl. The 'cur' union
  252. contains the current value, which you can use (but not change!) as well.
  253. If s_ctrl returns 0 (OK), then the control framework will copy the new final
  254. values to the 'cur' union.
  255. While in g_volatile/s/try_ctrl you can access the value of all controls owned
  256. by the same handler since the handler's lock is held. If you need to access
  257. the value of controls owned by other handlers, then you have to be very careful
  258. not to introduce deadlocks.
  259. Outside of the control ops you have to go through to helper functions to get
  260. or set a single control value safely in your driver:
  261. s32 v4l2_ctrl_g_ctrl(struct v4l2_ctrl *ctrl);
  262. int v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val);
  263. These functions go through the control framework just as VIDIOC_G/S_CTRL ioctls
  264. do. Don't use these inside the control ops g_volatile/s/try_ctrl, though, that
  265. will result in a deadlock since these helpers lock the handler as well.
  266. You can also take the handler lock yourself:
  267. mutex_lock(&state->ctrl_handler.lock);
  268. printk(KERN_INFO "String value is '%s'\n", ctrl1->cur.string);
  269. printk(KERN_INFO "Integer value is '%s'\n", ctrl2->cur.val);
  270. mutex_unlock(&state->ctrl_handler.lock);
  271. Menu Controls
  272. =============
  273. The v4l2_ctrl struct contains this union:
  274. union {
  275. u32 step;
  276. u32 menu_skip_mask;
  277. };
  278. For menu controls menu_skip_mask is used. What it does is that it allows you
  279. to easily exclude certain menu items. This is used in the VIDIOC_QUERYMENU
  280. implementation where you can return -EINVAL if a certain menu item is not
  281. present. Note that VIDIOC_QUERYCTRL always returns a step value of 1 for
  282. menu controls.
  283. A good example is the MPEG Audio Layer II Bitrate menu control where the
  284. menu is a list of standardized possible bitrates. But in practice hardware
  285. implementations will only support a subset of those. By setting the skip
  286. mask you can tell the framework which menu items should be skipped. Setting
  287. it to 0 means that all menu items are supported.
  288. You set this mask either through the v4l2_ctrl_config struct for a custom
  289. control, or by calling v4l2_ctrl_new_std_menu().
  290. Custom Controls
  291. ===============
  292. Driver specific controls can be created using v4l2_ctrl_new_custom():
  293. static const struct v4l2_ctrl_config ctrl_filter = {
  294. .ops = &ctrl_custom_ops,
  295. .id = V4L2_CID_MPEG_CX2341X_VIDEO_SPATIAL_FILTER,
  296. .name = "Spatial Filter",
  297. .type = V4L2_CTRL_TYPE_INTEGER,
  298. .flags = V4L2_CTRL_FLAG_SLIDER,
  299. .max = 15,
  300. .step = 1,
  301. };
  302. ctrl = v4l2_ctrl_new_custom(&foo->ctrl_handler, &ctrl_filter, NULL);
  303. The last argument is the priv pointer which can be set to driver-specific
  304. private data.
  305. The v4l2_ctrl_config struct also has a field to set the is_private flag.
  306. If the name field is not set, then the framework will assume this is a standard
  307. control and will fill in the name, type and flags fields accordingly.
  308. Active and Grabbed Controls
  309. ===========================
  310. If you get more complex relationships between controls, then you may have to
  311. activate and deactivate controls. For example, if the Chroma AGC control is
  312. on, then the Chroma Gain control is inactive. That is, you may set it, but
  313. the value will not be used by the hardware as long as the automatic gain
  314. control is on. Typically user interfaces can disable such input fields.
  315. You can set the 'active' status using v4l2_ctrl_activate(). By default all
  316. controls are active. Note that the framework does not check for this flag.
  317. It is meant purely for GUIs. The function is typically called from within
  318. s_ctrl.
  319. The other flag is the 'grabbed' flag. A grabbed control means that you cannot
  320. change it because it is in use by some resource. Typical examples are MPEG
  321. bitrate controls that cannot be changed while capturing is in progress.
  322. If a control is set to 'grabbed' using v4l2_ctrl_grab(), then the framework
  323. will return -EBUSY if an attempt is made to set this control. The
  324. v4l2_ctrl_grab() function is typically called from the driver when it
  325. starts or stops streaming.
  326. Control Clusters
  327. ================
  328. By default all controls are independent from the others. But in more
  329. complex scenarios you can get dependencies from one control to another.
  330. In that case you need to 'cluster' them:
  331. struct foo {
  332. struct v4l2_ctrl_handler ctrl_handler;
  333. #define AUDIO_CL_VOLUME (0)
  334. #define AUDIO_CL_MUTE (1)
  335. struct v4l2_ctrl *audio_cluster[2];
  336. ...
  337. };
  338. state->audio_cluster[AUDIO_CL_VOLUME] =
  339. v4l2_ctrl_new_std(&state->ctrl_handler, ...);
  340. state->audio_cluster[AUDIO_CL_MUTE] =
  341. v4l2_ctrl_new_std(&state->ctrl_handler, ...);
  342. v4l2_ctrl_cluster(ARRAY_SIZE(state->audio_cluster), state->audio_cluster);
  343. From now on whenever one or more of the controls belonging to the same
  344. cluster is set (or 'gotten', or 'tried'), only the control ops of the first
  345. control ('volume' in this example) is called. You effectively create a new
  346. composite control. Similar to how a 'struct' works in C.
  347. So when s_ctrl is called with V4L2_CID_AUDIO_VOLUME as argument, you should set
  348. all two controls belonging to the audio_cluster:
  349. static int foo_s_ctrl(struct v4l2_ctrl *ctrl)
  350. {
  351. struct foo *state = container_of(ctrl->handler, struct foo, ctrl_handler);
  352. switch (ctrl->id) {
  353. case V4L2_CID_AUDIO_VOLUME: {
  354. struct v4l2_ctrl *mute = ctrl->cluster[AUDIO_CL_MUTE];
  355. write_reg(0x123, mute->val ? 0 : ctrl->val);
  356. break;
  357. }
  358. case V4L2_CID_CONTRAST:
  359. write_reg(0x456, ctrl->val);
  360. break;
  361. }
  362. return 0;
  363. }
  364. In the example above the following are equivalent for the VOLUME case:
  365. ctrl == ctrl->cluster[AUDIO_CL_VOLUME] == state->audio_cluster[AUDIO_CL_VOLUME]
  366. ctrl->cluster[AUDIO_CL_MUTE] == state->audio_cluster[AUDIO_CL_MUTE]
  367. In practice using cluster arrays like this becomes very tiresome. So instead
  368. the following equivalent method is used:
  369. struct {
  370. /* audio cluster */
  371. struct v4l2_ctrl *volume;
  372. struct v4l2_ctrl *mute;
  373. };
  374. The anonymous struct is used to clearly 'cluster' these two control pointers,
  375. but it serves no other purpose. The effect is the same as creating an
  376. array with two control pointers. So you can just do:
  377. state->volume = v4l2_ctrl_new_std(&state->ctrl_handler, ...);
  378. state->mute = v4l2_ctrl_new_std(&state->ctrl_handler, ...);
  379. v4l2_ctrl_cluster(2, &state->volume);
  380. And in foo_s_ctrl you can use these pointers directly: state->mute->val.
  381. Note that controls in a cluster may be NULL. For example, if for some
  382. reason mute was never added (because the hardware doesn't support that
  383. particular feature), then mute will be NULL. So in that case we have a
  384. cluster of 2 controls, of which only 1 is actually instantiated. The
  385. only restriction is that the first control of the cluster must always be
  386. present, since that is the 'master' control of the cluster. The master
  387. control is the one that identifies the cluster and that provides the
  388. pointer to the v4l2_ctrl_ops struct that is used for that cluster.
  389. Obviously, all controls in the cluster array must be initialized to either
  390. a valid control or to NULL.
  391. In rare cases you might want to know which controls of a cluster actually
  392. were set explicitly by the user. For this you can check the 'is_new' flag of
  393. each control. For example, in the case of a volume/mute cluster the 'is_new'
  394. flag of the mute control would be set if the user called VIDIOC_S_CTRL for
  395. mute only. If the user would call VIDIOC_S_EXT_CTRLS for both mute and volume
  396. controls, then the 'is_new' flag would be 1 for both controls.
  397. The 'is_new' flag is always 1 when called from v4l2_ctrl_handler_setup().
  398. Handling autogain/gain-type Controls with Auto Clusters
  399. =======================================================
  400. A common type of control cluster is one that handles 'auto-foo/foo'-type
  401. controls. Typical examples are autogain/gain, autoexposure/exposure,
  402. autowhitebalance/red balance/blue balance. In all cases you have one control
  403. that determines whether another control is handled automatically by the hardware,
  404. or whether it is under manual control from the user.
  405. If the cluster is in automatic mode, then the manual controls should be
  406. marked inactive and volatile. When the volatile controls are read the
  407. g_volatile_ctrl operation should return the value that the hardware's automatic
  408. mode set up automatically.
  409. If the cluster is put in manual mode, then the manual controls should become
  410. active again and the volatile flag is cleared (so g_volatile_ctrl is no longer
  411. called while in manual mode). In addition just before switching to manual mode
  412. the current values as determined by the auto mode are copied as the new manual
  413. values.
  414. Finally the V4L2_CTRL_FLAG_UPDATE should be set for the auto control since
  415. changing that control affects the control flags of the manual controls.
  416. In order to simplify this a special variation of v4l2_ctrl_cluster was
  417. introduced:
  418. void v4l2_ctrl_auto_cluster(unsigned ncontrols, struct v4l2_ctrl **controls,
  419. u8 manual_val, bool set_volatile);
  420. The first two arguments are identical to v4l2_ctrl_cluster. The third argument
  421. tells the framework which value switches the cluster into manual mode. The
  422. last argument will optionally set V4L2_CTRL_FLAG_VOLATILE for the non-auto controls.
  423. If it is false, then the manual controls are never volatile. You would typically
  424. use that if the hardware does not give you the option to read back to values as
  425. determined by the auto mode (e.g. if autogain is on, the hardware doesn't allow
  426. you to obtain the current gain value).
  427. The first control of the cluster is assumed to be the 'auto' control.
  428. Using this function will ensure that you don't need to handle all the complex
  429. flag and volatile handling.
  430. VIDIOC_LOG_STATUS Support
  431. =========================
  432. This ioctl allow you to dump the current status of a driver to the kernel log.
  433. The v4l2_ctrl_handler_log_status(ctrl_handler, prefix) can be used to dump the
  434. value of the controls owned by the given handler to the log. You can supply a
  435. prefix as well. If the prefix didn't end with a space, then ': ' will be added
  436. for you.
  437. Different Handlers for Different Video Nodes
  438. ============================================
  439. Usually the V4L2 driver has just one control handler that is global for
  440. all video nodes. But you can also specify different control handlers for
  441. different video nodes. You can do that by manually setting the ctrl_handler
  442. field of struct video_device.
  443. That is no problem if there are no subdevs involved but if there are, then
  444. you need to block the automatic merging of subdev controls to the global
  445. control handler. You do that by simply setting the ctrl_handler field in
  446. struct v4l2_device to NULL. Now v4l2_device_register_subdev() will no longer
  447. merge subdev controls.
  448. After each subdev was added, you will then have to call v4l2_ctrl_add_handler
  449. manually to add the subdev's control handler (sd->ctrl_handler) to the desired
  450. control handler. This control handler may be specific to the video_device or
  451. for a subset of video_device's. For example: the radio device nodes only have
  452. audio controls, while the video and vbi device nodes share the same control
  453. handler for the audio and video controls.
  454. If you want to have one handler (e.g. for a radio device node) have a subset
  455. of another handler (e.g. for a video device node), then you should first add
  456. the controls to the first handler, add the other controls to the second
  457. handler and finally add the first handler to the second. For example:
  458. v4l2_ctrl_new_std(&radio_ctrl_handler, &radio_ops, V4L2_CID_AUDIO_VOLUME, ...);
  459. v4l2_ctrl_new_std(&radio_ctrl_handler, &radio_ops, V4L2_CID_AUDIO_MUTE, ...);
  460. v4l2_ctrl_new_std(&video_ctrl_handler, &video_ops, V4L2_CID_BRIGHTNESS, ...);
  461. v4l2_ctrl_new_std(&video_ctrl_handler, &video_ops, V4L2_CID_CONTRAST, ...);
  462. v4l2_ctrl_add_handler(&video_ctrl_handler, &radio_ctrl_handler, NULL);
  463. The last argument to v4l2_ctrl_add_handler() is a filter function that allows
  464. you to filter which controls will be added. Set it to NULL if you want to add
  465. all controls.
  466. Or you can add specific controls to a handler:
  467. volume = v4l2_ctrl_new_std(&video_ctrl_handler, &ops, V4L2_CID_AUDIO_VOLUME, ...);
  468. v4l2_ctrl_new_std(&video_ctrl_handler, &ops, V4L2_CID_BRIGHTNESS, ...);
  469. v4l2_ctrl_new_std(&video_ctrl_handler, &ops, V4L2_CID_CONTRAST, ...);
  470. v4l2_ctrl_add_ctrl(&radio_ctrl_handler, volume);
  471. What you should not do is make two identical controls for two handlers.
  472. For example:
  473. v4l2_ctrl_new_std(&radio_ctrl_handler, &radio_ops, V4L2_CID_AUDIO_MUTE, ...);
  474. v4l2_ctrl_new_std(&video_ctrl_handler, &video_ops, V4L2_CID_AUDIO_MUTE, ...);
  475. This would be bad since muting the radio would not change the video mute
  476. control. The rule is to have one control for each hardware 'knob' that you
  477. can twiddle.
  478. Finding Controls
  479. ================
  480. Normally you have created the controls yourself and you can store the struct
  481. v4l2_ctrl pointer into your own struct.
  482. But sometimes you need to find a control from another handler that you do
  483. not own. For example, if you have to find a volume control from a subdev.
  484. You can do that by calling v4l2_ctrl_find:
  485. struct v4l2_ctrl *volume;
  486. volume = v4l2_ctrl_find(sd->ctrl_handler, V4L2_CID_AUDIO_VOLUME);
  487. Since v4l2_ctrl_find will lock the handler you have to be careful where you
  488. use it. For example, this is not a good idea:
  489. struct v4l2_ctrl_handler ctrl_handler;
  490. v4l2_ctrl_new_std(&ctrl_handler, &video_ops, V4L2_CID_BRIGHTNESS, ...);
  491. v4l2_ctrl_new_std(&ctrl_handler, &video_ops, V4L2_CID_CONTRAST, ...);
  492. ...and in video_ops.s_ctrl:
  493. case V4L2_CID_BRIGHTNESS:
  494. contrast = v4l2_find_ctrl(&ctrl_handler, V4L2_CID_CONTRAST);
  495. ...
  496. When s_ctrl is called by the framework the ctrl_handler.lock is already taken, so
  497. attempting to find another control from the same handler will deadlock.
  498. It is recommended not to use this function from inside the control ops.
  499. Inheriting Controls
  500. ===================
  501. When one control handler is added to another using v4l2_ctrl_add_handler, then
  502. by default all controls from one are merged to the other. But a subdev might
  503. have low-level controls that make sense for some advanced embedded system, but
  504. not when it is used in consumer-level hardware. In that case you want to keep
  505. those low-level controls local to the subdev. You can do this by simply
  506. setting the 'is_private' flag of the control to 1:
  507. static const struct v4l2_ctrl_config ctrl_private = {
  508. .ops = &ctrl_custom_ops,
  509. .id = V4L2_CID_...,
  510. .name = "Some Private Control",
  511. .type = V4L2_CTRL_TYPE_INTEGER,
  512. .max = 15,
  513. .step = 1,
  514. .is_private = 1,
  515. };
  516. ctrl = v4l2_ctrl_new_custom(&foo->ctrl_handler, &ctrl_private, NULL);
  517. These controls will now be skipped when v4l2_ctrl_add_handler is called.
  518. V4L2_CTRL_TYPE_CTRL_CLASS Controls
  519. ==================================
  520. Controls of this type can be used by GUIs to get the name of the control class.
  521. A fully featured GUI can make a dialog with multiple tabs with each tab
  522. containing the controls belonging to a particular control class. The name of
  523. each tab can be found by querying a special control with ID <control class | 1>.
  524. Drivers do not have to care about this. The framework will automatically add
  525. a control of this type whenever the first control belonging to a new control
  526. class is added.
  527. Adding Notify Callbacks
  528. =======================
  529. Sometimes the platform or bridge driver needs to be notified when a control
  530. from a sub-device driver changes. You can set a notify callback by calling
  531. this function:
  532. void v4l2_ctrl_notify(struct v4l2_ctrl *ctrl,
  533. void (*notify)(struct v4l2_ctrl *ctrl, void *priv), void *priv);
  534. Whenever the give control changes value the notify callback will be called
  535. with a pointer to the control and the priv pointer that was passed with
  536. v4l2_ctrl_notify. Note that the control's handler lock is held when the
  537. notify function is called.
  538. There can be only one notify function per control handler. Any attempt
  539. to set another notify function will cause a WARN_ON.