Merge tag 'lkdtm-v4.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees...
[deliverable/linux.git] / Documentation / media / v4l-drivers / cpia2.rst
CommitLineData
ba9f270e
MCC
1The cpia2 driver
2================
ab33d507 3
ba9f270e
MCC
4Authors: Peter Pregler <Peter_Pregler@email.com>,
5Scott J. Bertin <scottbertin@yahoo.com>, and
6Jarl Totland <Jarl.Totland@bdc.no> for the original cpia driver, which
7this one was modelled from.
ab33d507 8
ba9f270e
MCC
9Introduction
10------------
11
12This is a driver for STMicroelectronics's CPiA2 (second generation
ab33d507
AC
13Colour Processor Interface ASIC) based cameras. This camera outputs an MJPEG
14stream at up to vga size. It implements the Video4Linux interface as much as
15possible. Since the V4L interface does not support compressed formats, only
16an mjpeg enabled application can be used with the camera. We have modified the
17gqcam application to view this stream.
18
ba9f270e 19The driver is implemented as two kernel modules. The cpia2 module
ab33d507
AC
20contains the camera functions and the V4L interface. The cpia2_usb module
21contains usb specific functions. The main reason for this was the size of the
5edfe7d8 22module was getting out of hand, so I separated them. It is not likely that
ab33d507
AC
23there will be a parallel port version.
24
ba9f270e
MCC
25Features
26--------
27
28- Supports cameras with the Vision stv6410 (CIF) and stv6500 (VGA) cmos
29 sensors. I only have the vga sensor, so can't test the other.
30- Image formats: VGA, QVGA, CIF, QCIF, and a number of sizes in between.
31 VGA and QVGA are the native image sizes for the VGA camera. CIF is done
32 in the coprocessor by scaling QVGA. All other sizes are done by clipping.
33- Palette: YCrCb, compressed with MJPEG.
34- Some compression parameters are settable.
35- Sensor framerate is adjustable (up to 30 fps CIF, 15 fps VGA).
36- Adjust brightness, color, contrast while streaming.
37- Flicker control settable for 50 or 60 Hz mains frequency.
38
39Making and installing the stv672 driver modules
40-----------------------------------------------
41
42Requirements
43~~~~~~~~~~~~
44
45Video4Linux must be either compiled into the kernel or
ab33d507
AC
46available as a module. Video4Linux2 is automatically detected and made
47available at compile time.
48
ba9f270e
MCC
49Setup
50~~~~~
ab33d507 51
ba9f270e 52Use 'modprobe cpia2' to load and 'modprobe -r cpia2' to unload. This
ab33d507
AC
53may be done automatically by your distribution.
54
ba9f270e
MCC
55Driver options
56~~~~~~~~~~~~~~
57
58============== ========================================================
59Option Description
60============== ========================================================
61video_nr video device to register (0=/dev/video0, etc)
62 range -1 to 64. default is -1 (first available)
63 If you have more than 1 camera, this MUST be -1.
64buffer_size Size for each frame buffer in bytes (default 68k)
65num_buffers Number of frame buffers (1-32, default 3)
66alternate USB Alternate (2-7, default 7)
67flicker_freq Frequency for flicker reduction(50 or 60, default 60)
68flicker_mode 0 to disable, or 1 to enable flicker reduction.
69 (default 0). This is only effective if the camera
70 uses a stv0672 coprocessor.
71============== ========================================================
72
73Setting the options
74~~~~~~~~~~~~~~~~~~~
75
76If you are using modules, edit /etc/modules.conf and add an options
ab33d507 77line like this:
ba9f270e
MCC
78
79.. code-block:: none
80
ab33d507
AC
81 options cpia2 num_buffers=3 buffer_size=65535
82
ba9f270e 83If the driver is compiled into the kernel, at boot time specify them
ab33d507 84like this:
ba9f270e
MCC
85
86.. code-block:: none
87
8cbe84f3 88 cpia2.num_buffers=3 cpia2.buffer_size=65535
ab33d507 89
ba9f270e
MCC
90What buffer size should I use?
91~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
92
93The maximum image size depends on the alternate you choose, and the
ab33d507
AC
94frame rate achieved by the camera. If the compression engine is able to
95keep up with the frame rate, the maximum image size is given by the table
96below.
ba9f270e
MCC
97
98The compression engine starts out at maximum compression, and will
ab33d507
AC
99increase image quality until it is close to the size in the table. As long
100as the compression engine can keep up with the frame rate, after a short time
101the images will all be about the size in the table, regardless of resolution.
ba9f270e
MCC
102
103At low alternate settings, the compression engine may not be able to
ab33d507
AC
104compress the image enough and will reduce the frame rate by producing larger
105images.
ba9f270e
MCC
106
107The default of 68k should be good for most users. This will handle
ab33d507
AC
108any alternate at frame rates down to 15fps. For lower frame rates, it may
109be necessary to increase the buffer size to avoid having frames dropped due
110to insufficient space.
111
ba9f270e
MCC
112========== ========== ======== =====
113Alternate bytes/ms 15fps 30fps
114========== ========== ======== =====
115 2 128 8533 4267
116 3 384 25600 12800
117 4 640 42667 21333
118 5 768 51200 25600
119 6 896 59733 29867
120 7 1023 68200 34100
121========== ========== ======== =====
122
123Table: Image size(bytes)
124
125
126How many buffers should I use?
127~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
128
129For normal streaming, 3 should give the best results. With only 2,
ab33d507
AC
130it is possible for the camera to finish sending one image just after a
131program has started reading the other. If this happens, the driver must drop
132a frame. The exception to this is if you have a heavily loaded machine. In
133this case use 2 buffers. You are probably not reading at the full frame rate.
134If the camera can send multiple images before a read finishes, it could
135overwrite the third buffer before the read finishes, leading to a corrupt
136image. Single and double buffering have extra checks to avoid overwriting.
137
ba9f270e
MCC
138Using the camera
139~~~~~~~~~~~~~~~~
ab33d507 140
ba9f270e 141We are providing a modified gqcam application to view the output. In
ab33d507
AC
142order to avoid confusion, here it is called mview. There is also the qx5view
143program which can also control the lights on the qx5 microscope. MJPEG Tools
144(http://mjpeg.sourceforge.net) can also be used to record from the camera.
145
ba9f270e
MCC
146Notes to developers
147~~~~~~~~~~~~~~~~~~~
ab33d507
AC
148
149 - This is a driver version stripped of the 2.4 back compatibility
150 and old MJPEG ioctl API. See cpia2.sf.net for 2.4 support.
151
ba9f270e
MCC
152Programmer's overview of cpia2 driver
153~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
154
155Cpia2 is the second generation video coprocessor from VLSI Vision Ltd (now a
156division of ST Microelectronics). There are two versions. The first is the
157STV0672, which is capable of up to 30 frames per second (fps) in frame sizes
158up to CIF, and 15 fps for VGA frames. The STV0676 is an improved version,
159which can handle up to 30 fps VGA. Both coprocessors can be attached to two
160CMOS sensors - the vvl6410 CIF sensor and the vvl6500 VGA sensor. These will
161be referred to as the 410 and the 500 sensors, or the CIF and VGA sensors.
162
163The two chipsets operate almost identically. The core is an 8051 processor,
164running two different versions of firmware. The 672 runs the VP4 video
165processor code, the 676 runs VP5. There are a few differences in register
166mappings for the two chips. In these cases, the symbols defined in the
167header files are marked with VP4 or VP5 as part of the symbol name.
168
169The cameras appear externally as three sets of registers. Setting register
170values is the only way to control the camera. Some settings are
171interdependant, such as the sequence required to power up the camera. I will
172try to make note of all of these cases.
173
174The register sets are called blocks. Block 0 is the system block. This
175section is always powered on when the camera is plugged in. It contains
176registers that control housekeeping functions such as powering up the video
177processor. The video processor is the VP block. These registers control
178how the video from the sensor is processed. Examples are timing registers,
179user mode (vga, qvga), scaling, cropping, framerates, and so on. The last
180block is the video compressor (VC). The video stream sent from the camera is
181compressed as Motion JPEG (JPEGA). The VC controls all of the compression
182parameters. Looking at the file cpia2_registers.h, you can get a full view
183of these registers and the possible values for most of them.
184
185One or more registers can be set or read by sending a usb control message to
186the camera. There are three modes for this. Block mode requests a number
187of contiguous registers. Random mode reads or writes random registers with
188a tuple structure containing address/value pairs. The repeat mode is only
189used by VP4 to load a firmware patch. It contains a starting address and
190a sequence of bytes to be written into a gpio port.
This page took 0.659618 seconds and 5 git commands to generate.