cpia2_overview.txt 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Programmer's View of Cpia2
  2. Cpia2 is the second generation video coprocessor from VLSI Vision Ltd (now a
  3. division of ST Microelectronics). There are two versions. The first is the
  4. STV0672, which is capable of up to 30 frames per second (fps) in frame sizes
  5. up to CIF, and 15 fps for VGA frames. The STV0676 is an improved version,
  6. which can handle up to 30 fps VGA. Both coprocessors can be attached to two
  7. CMOS sensors - the vvl6410 CIF sensor and the vvl6500 VGA sensor. These will
  8. be referred to as the 410 and the 500 sensors, or the CIF and VGA sensors.
  9. The two chipsets operate almost identically. The core is an 8051 processor,
  10. running two different versions of firmware. The 672 runs the VP4 video
  11. processor code, the 676 runs VP5. There are a few differences in register
  12. mappings for the two chips. In these cases, the symbols defined in the
  13. header files are marked with VP4 or VP5 as part of the symbol name.
  14. The cameras appear externally as three sets of registers. Setting register
  15. values is the only way to control the camera. Some settings are
  16. interdependant, such as the sequence required to power up the camera. I will
  17. try to make note of all of these cases.
  18. The register sets are called blocks. Block 0 is the system block. This
  19. section is always powered on when the camera is plugged in. It contains
  20. registers that control housekeeping functions such as powering up the video
  21. processor. The video processor is the VP block. These registers control
  22. how the video from the sensor is processed. Examples are timing registers,
  23. user mode (vga, qvga), scaling, cropping, framerates, and so on. The last
  24. block is the video compressor (VC). The video stream sent from the camera is
  25. compressed as Motion JPEG (JPEGA). The VC controls all of the compression
  26. parameters. Looking at the file cpia2_registers.h, you can get a full view
  27. of these registers and the possible values for most of them.
  28. One or more registers can be set or read by sending a usb control message to
  29. the camera. There are three modes for this. Block mode requests a number
  30. of contiguous registers. Random mode reads or writes random registers with
  31. a tuple structure containing address/value pairs. The repeat mode is only
  32. used by VP4 to load a firmware patch. It contains a starting address and
  33. a sequence of bytes to be written into a gpio port.