cafe_ccic.rst 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .. SPDX-License-Identifier: GPL-2.0
  2. The cafe_ccic driver
  3. ====================
  4. Author: Jonathan Corbet <corbet@lwn.net>
  5. Introduction
  6. ------------
  7. "cafe_ccic" is a driver for the Marvell 88ALP01 "cafe" CMOS camera
  8. controller. This is the controller found in first-generation OLPC systems,
  9. and this driver was written with support from the OLPC project.
  10. Current status: the core driver works. It can generate data in YUV422,
  11. RGB565, and RGB444 formats. (Anybody looking at the code will see RGB32 as
  12. well, but that is a debugging aid which will be removed shortly). VGA and
  13. QVGA modes work; CIF is there but the colors remain funky. Only the OV7670
  14. sensor is known to work with this controller at this time.
  15. To try it out: either of these commands will work:
  16. .. code-block:: none
  17. $ mplayer tv:// -tv driver=v4l2:width=640:height=480 -nosound
  18. $ mplayer tv:// -tv driver=v4l2:width=640:height=480:outfmt=bgr16 -nosound
  19. The "xawtv" utility also works; gqcam does not, for unknown reasons.
  20. Load time options
  21. -----------------
  22. There are a few load-time options, most of which can be changed after
  23. loading via sysfs as well:
  24. - alloc_bufs_at_load: Normally, the driver will not allocate any DMA
  25. buffers until the time comes to transfer data. If this option is set,
  26. then worst-case-sized buffers will be allocated at module load time.
  27. This option nails down the memory for the life of the module, but
  28. perhaps decreases the chances of an allocation failure later on.
  29. - dma_buf_size: The size of DMA buffers to allocate. Note that this
  30. option is only consulted for load-time allocation; when buffers are
  31. allocated at run time, they will be sized appropriately for the current
  32. camera settings.
  33. - n_dma_bufs: The controller can cycle through either two or three DMA
  34. buffers. Normally, the driver tries to use three buffers; on faster
  35. systems, however, it will work well with only two.
  36. - min_buffers: The minimum number of streaming I/O buffers that the driver
  37. will consent to work with. Default is one, but, on slower systems,
  38. better behavior with mplayer can be achieved by setting to a higher
  39. value (like six).
  40. - max_buffers: The maximum number of streaming I/O buffers; default is
  41. ten. That number was carefully picked out of a hat and should not be
  42. assumed to actually mean much of anything.
  43. - flip: If this boolean parameter is set, the sensor will be instructed to
  44. invert the video image. Whether it makes sense is determined by how
  45. your particular camera is mounted.