camera-sensor.rst 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .. SPDX-License-Identifier: GPL-2.0
  2. .. _media_using_camera_sensor_drivers:
  3. Using camera sensor drivers
  4. ===========================
  5. This section describes common practices for how the V4L2 sub-device interface is
  6. used to control the camera sensor drivers.
  7. You may also find :ref:`media_writing_camera_sensor_drivers` useful.
  8. Frame size
  9. ----------
  10. There are two distinct ways to configure the frame size produced by camera
  11. sensors.
  12. Freely configurable camera sensor drivers
  13. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  14. Freely configurable camera sensor drivers expose the device's internal
  15. processing pipeline as one or more sub-devices with different cropping and
  16. scaling configurations. The output size of the device is the result of a series
  17. of cropping and scaling operations from the device's pixel array's size.
  18. An example of such a driver is the CCS driver.
  19. Register list based drivers
  20. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  21. Register list based drivers generally, instead of able to configure the device
  22. they control based on user requests, are limited to a number of preset
  23. configurations that combine a number of different parameters that on hardware
  24. level are independent. How a driver picks such configuration is based on the
  25. format set on a source pad at the end of the device's internal pipeline.
  26. Most sensor drivers are implemented this way.
  27. Frame interval configuration
  28. ----------------------------
  29. There are two different methods for obtaining possibilities for different frame
  30. intervals as well as configuring the frame interval. Which one to implement
  31. depends on the type of the device.
  32. Raw camera sensors
  33. ~~~~~~~~~~~~~~~~~~
  34. Instead of a high level parameter such as frame interval, the frame interval is
  35. a result of the configuration of a number of camera sensor implementation
  36. specific parameters. Luckily, these parameters tend to be the same for more or
  37. less all modern raw camera sensors.
  38. The frame interval is calculated using the following equation::
  39. frame interval = (analogue crop width + horizontal blanking) *
  40. (analogue crop height + vertical blanking) / pixel rate
  41. The formula is bus independent and is applicable for raw timing parameters on
  42. large variety of devices beyond camera sensors. Devices that have no analogue
  43. crop, use the full source image size, i.e. pixel array size.
  44. Horizontal and vertical blanking are specified by ``V4L2_CID_HBLANK`` and
  45. ``V4L2_CID_VBLANK``, respectively. The unit of the ``V4L2_CID_HBLANK`` control
  46. is pixels and the unit of the ``V4L2_CID_VBLANK`` is lines. The pixel rate in
  47. the sensor's **pixel array** is specified by ``V4L2_CID_PIXEL_RATE`` in the same
  48. sub-device. The unit of that control is pixels per second.
  49. Register list based drivers need to implement read-only sub-device nodes for the
  50. purpose. Devices that are not register list based need these to configure the
  51. device's internal processing pipeline.
  52. The first entity in the linear pipeline is the pixel array. The pixel array may
  53. be followed by other entities that are there to allow configuring binning,
  54. skipping, scaling or digital crop, see :ref:`VIDIOC_SUBDEV_G_SELECTION
  55. <VIDIOC_SUBDEV_G_SELECTION>`.
  56. USB cameras etc. devices
  57. ~~~~~~~~~~~~~~~~~~~~~~~~
  58. USB video class hardware, as well as many cameras offering a similar higher
  59. level interface natively, generally use the concept of frame interval (or frame
  60. rate) on device level in firmware or hardware. This means lower level controls
  61. implemented by raw cameras may not be used on uAPI (or even kAPI) to control the
  62. frame interval on these devices.
  63. Rotation, orientation and flipping
  64. ----------------------------------
  65. Some systems have the camera sensor mounted upside down compared to its natural
  66. mounting rotation. In such cases, drivers shall expose the information to
  67. userspace with the :ref:`V4L2_CID_CAMERA_SENSOR_ROTATION
  68. <v4l2-camera-sensor-rotation>` control.
  69. Sensor drivers shall also report the sensor's mounting orientation with the
  70. :ref:`V4L2_CID_CAMERA_SENSOR_ORIENTATION <v4l2-camera-sensor-orientation>`.
  71. Sensor drivers that have any vertical or horizontal flips embedded in the
  72. register programming sequences shall initialize the :ref:`V4L2_CID_HFLIP
  73. <v4l2-cid-hflip>` and :ref:`V4L2_CID_VFLIP <v4l2-cid-vflip>` controls with the
  74. values programmed by the register sequences. The default values of these
  75. controls shall be 0 (disabled). Especially these controls shall not be inverted,
  76. independently of the sensor's mounting rotation.