videobook.tmpl
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:61k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V3.1//EN"[]>
  2. <book id="V4LGuide">
  3.  <bookinfo>
  4.   <title>Video4Linux Programming</title>
  5.   
  6.   <authorgroup>
  7.    <author>
  8.     <firstname>Alan</firstname>
  9.     <surname>Cox</surname>
  10.     <affiliation>
  11.      <address>
  12.       <email>alan@redhat.com</email>
  13.      </address>
  14.     </affiliation>
  15.    </author>
  16.   </authorgroup>
  17.   <copyright>
  18.    <year>2000</year>
  19.    <holder>Alan Cox</holder>
  20.   </copyright>
  21.   <legalnotice>
  22.    <para>
  23.      This documentation is free software; you can redistribute
  24.      it and/or modify it under the terms of the GNU General Public
  25.      License as published by the Free Software Foundation; either
  26.      version 2 of the License, or (at your option) any later
  27.      version.
  28.    </para>
  29.       
  30.    <para>
  31.      This program is distributed in the hope that it will be
  32.      useful, but WITHOUT ANY WARRANTY; without even the implied
  33.      warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  34.      See the GNU General Public License for more details.
  35.    </para>
  36.       
  37.    <para>
  38.      You should have received a copy of the GNU General Public
  39.      License along with this program; if not, write to the Free
  40.      Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  41.      MA 02111-1307 USA
  42.    </para>
  43.       
  44.    <para>
  45.      For more details see the file COPYING in the source
  46.      distribution of Linux.
  47.    </para>
  48.   </legalnotice>
  49.  </bookinfo>
  50. <toc></toc>
  51.   <chapter id="intro">
  52.       <title>Introduction</title>
  53.   <para>
  54.         Parts of this document first appeared in Linux Magazine under a
  55.         ninety day exclusivity.
  56.   </para>
  57.   <para>
  58.         Video4Linux is intended to provide a common programming interface
  59.         for the many TV and capture cards now on the market, as well as
  60.         parallel port and USB video cameras. Radio, teletext decoders and
  61.         vertical blanking data interfaces are also provided.
  62.   </para>
  63.   </chapter>
  64.   <chapter id="radio">
  65.         <title>Radio Devices</title>
  66.   <para>
  67.         There are a wide variety of radio interfaces available for PC's, and these
  68.         are generally very simple to program. The biggest problem with supporting
  69.         such devices is normally extracting documentation from the vendor.
  70.   </para>
  71.   <para>
  72.         The radio interface supports a simple set of control ioctls standardised
  73.         across all radio and tv interfaces. It does not support read or write, which
  74.         are used for video streams. The reason radio cards do not allow you to read
  75.         the audio stream into an application is that without exception they provide
  76.         a connection on to a soundcard. Soundcards can be used to read the radio
  77.         data just fine. 
  78.   </para>
  79.   <sect1 id="registerradio">
  80.   <title>Registering Radio Devices</title>
  81.   <para>
  82.         The Video4linux core provides an interface for registering devices. The
  83.         first step in writing our radio card driver is to register it.
  84.   </para>
  85.   <programlisting>
  86. static struct video_device my_radio
  87. {
  88.         "My radio",
  89.         VID_TYPE_TUNER,
  90.         VID_HARDWARE_MYRADIO,
  91.         radio_open.
  92.         radio_close,
  93.         NULL,                /* no read */
  94.         NULL,                 /* no write */
  95.         NULL,                /* no poll */
  96.         radio_ioctl,
  97.         NULL,                /* no special init function */
  98.         NULL                /* no private data */
  99. };
  100.   </programlisting>
  101.   <para>
  102.         This declares our video4linux device driver interface. The VID_TYPE_ value
  103.         defines what kind of an interface we are, and defines basic capabilities.
  104.   </para>
  105.   <para>
  106.         The only defined value relevant for a radio card is VID_TYPE_TUNER which
  107.         indicates that the device can be tuned. Clearly our radio is going to have some
  108.         way to change channel so it is tuneable.
  109.   </para>
  110.   <para>
  111.         The VID_HARDWARE_ types are unique to each device. Numbers are assigned by
  112.         <email>alan@redhat.com</email> when device drivers are going to be released. Until then you
  113.         can pull a suitably large number out of your hat and use it. 10000 should be
  114.         safe for a very long time even allowing for the huge number of vendors
  115.         making new and different radio cards at the moment.
  116.   </para>
  117.   <para>
  118.         We declare an open and close routine, but we do not need read or write,
  119.         which are used to read and write video data to or from the card itself. As
  120.         we have no read or write there is no poll function.
  121.   </para>
  122.   <para>
  123.         The private initialise function is run when the device is registered. In
  124.         this driver we've already done all the work needed. The final pointer is a
  125.         private data pointer that can be used by the device driver to attach and
  126.         retrieve private data structures. We set this field "priv" to NULL for
  127.         the moment.
  128.   </para>
  129.   <para>
  130.         Having the structure defined is all very well but we now need to register it
  131.         with the kernel. 
  132.   </para>
  133.   <programlisting>
  134. static int io = 0x320;
  135. int __init myradio_init(struct video_init *v)
  136. {
  137.         if(check_region(io, MY_IO_SIZE))
  138.         {
  139.                 printk(KERN_ERR 
  140.                     "myradio: port 0x%03X is in use.n", io);
  141.                 return -EBUSY;
  142.         }
  143.         if(video_device_register(&amp;my_radio, VFL_TYPE_RADIO)==-1)
  144.                 return -EINVAL;
  145.         request_region(io, MY_IO_SIZE, "myradio");
  146.         return 0;
  147. }
  148.   </programlisting>
  149.   <para>
  150.         The first stage of the initialisation, as is normally the case, is to check 
  151.         that the I/O space we are about to fiddle with doesn't belong to some other 
  152.         driver. If it is we leave well alone. If the user gives the address of the 
  153.         wrong device then we will spot this. These policies will generally avoid 
  154.         crashing the machine.
  155.   </para>
  156.   <para>
  157.         Now we ask the Video4Linux layer to register the device for us. We hand it
  158.         our carefully designed video_device structure and also tell it which group
  159.         of devices we want it registered with. In this case VFL_TYPE_RADIO.
  160.   </para>
  161.   <para>
  162.         The types available are
  163.   </para>
  164.    <table frame=all><title>Device Types</title>
  165.    <tgroup cols=3 align=left>
  166.    <tbody>
  167.    <row>
  168.         <entry>VFL_TYPE_RADIO</><entry>/dev/radio{n}</><entry>
  169.         Radio devices are assigned in this block. As with all of these
  170.         selections the actual number assignment is done by the video layer
  171.         accordijng to what is free.</entry>
  172. </row><row>
  173.         <entry>VFL_TYPE_GRABBER</><entry>/dev/video{n}</><entry>
  174.         Video capture devices and also -- counter-intuitively for the name --
  175.         hardware video playback devices such as MPEG2 cards.</entry>
  176. </row><row>
  177.         <entry>VFL_TYPE_VBI</><entry>/dev/vbi{n}</><entry>
  178.         The VBI devices capture the hidden lines on a television picture
  179.         that carry further information like closed caption data, teletext
  180.         (primarily in Europe) and now Intercast and the ATVEC internet
  181.         television encodings.</entry>
  182. </row><row>
  183.         <entry>VFL_TYPE_VTX</><entry>/dev/vtx[n}</><entry>
  184.         VTX is 'Videotext' also known as 'Teletext'. This is a system for
  185.         sending numbered, 40x25, mostly textual page images over the hidden
  186.         lines. Unlike the /dev/vbi interfaces, this is for 'smart' decoder 
  187.         chips. (The use of the word smart here has to be taken in context,
  188.         the smartest teletext chips are fairly dumb pieces of technology).
  189. </entry>
  190.     </row>
  191.     </tbody>
  192.     </tgroup>
  193.     </table>
  194.   <para>
  195.         We are most definitely a radio.
  196.   </para>
  197.   <para>
  198.         Finally we allocate our I/O space so that nobody treads on us and return 0
  199.         to signify general happiness with the state of the universe.
  200.   </para>
  201.   </sect1>
  202.   <sect1 id="openradio">
  203.   <title>Opening And Closing The Radio</title>
  204.   <para>
  205.         The functions we declared in our video_device are mostly very simple.
  206.         Firstly we can drop in what is basically standard code for open and close. 
  207.   </para>
  208.   <programlisting>
  209. static int users = 0;
  210. static int radio_open(stuct video_device *dev, int flags)
  211. {
  212.         if(users)
  213.                 return -EBUSY;
  214.         users++;
  215.         MOD_INC_USE_COUNT;
  216.         return 0;
  217. }
  218.   </programlisting>
  219.   <para>
  220.         At open time we need to do nothing but check if someone else is also using
  221.         the radio card. If nobody is using it we make a note that we are using it,
  222.         then we ensure that nobody unloads our driver on us.
  223.   </para>
  224.   <programlisting>
  225. static int radio_close(struct video_device *dev)
  226. {
  227.         users--;
  228.         MOD_DEC_USE_COUNT;
  229. }
  230.   </programlisting>
  231.   <para>
  232.         At close time we simply need to reduce the user count and allow the module
  233.         to become unloadable.
  234.   </para>
  235.   <para>
  236.         If you are sharp you will have noticed neither the open nor the close
  237.         routines attempt to reset or change the radio settings. This is intentional.
  238.         It allows an application to set up the radio and exit. It avoids a user
  239.         having to leave an application running all the time just to listen to the
  240.         radio. 
  241.   </para>
  242.   </sect1>
  243.   <sect1 id="ioctlradio">
  244.   <title>The Ioctl Interface</title>
  245.   <para>
  246.         This leaves the ioctl routine, without which the driver will not be
  247.         terribly useful to anyone.
  248.   </para>
  249.   <programlisting>
  250. static int radio_ioctl(struct video_device *dev, unsigned int cmd, void *arg)
  251. {
  252.         switch(cmd)
  253.         {
  254.                 case VIDIOCGCAP:
  255.                 {
  256.                         struct video_capability v;
  257.                         v.type = VID_TYPE_TUNER;
  258.                         v.channels = 1;
  259.                         v.audios = 1;
  260.                         v.maxwidth = 0;
  261.                         v.minwidth = 0;
  262.                         v.maxheight = 0;
  263.                         v.minheight = 0;
  264.                         strcpy(v.name, "My Radio");
  265.                         if(copy_to_user(arg, &amp;v, sizeof(v)))
  266.                                 return -EFAULT;
  267.                         return 0;
  268.                 }
  269.   </programlisting>
  270.   <para>
  271.         VIDIOCGCAP is the first ioctl all video4linux devices must support. It
  272.         allows the applications to find out what sort of a card they have found and
  273.         to figure out what they want to do about it. The fields in the structure are
  274.   </para>
  275.    <table frame=all><title>struct video_capability fields</title>
  276.    <tgroup cols=2 align=left>
  277.    <tbody>
  278.    <row>
  279.         <entry>name</><entry>The device text name. This is intended for the user.</>
  280. </row><row>
  281.         <entry>channels</><entry>The number of different channels you can tune on
  282.                         this card. It could even by zero for a card that has
  283.                         no tuning capability. For our simple FM radio it is 1. 
  284.                         An AM/FM radio would report 2.</entry>
  285. </row><row>
  286.         <entry>audios</><entry>The number of audio inputs on this device. For our
  287.                         radio there is only one audio input.</entry>
  288. </row><row>
  289.         <entry>minwidth,minheight</><entry>The smallest size the card is capable of capturing
  290.         images in. We set these to zero. Radios do not
  291.                         capture pictures</entry>
  292. </row><row>
  293.         <entry>maxwidth,maxheight</><entry>The largest image size the card is capable of
  294.                                       capturing. For our radio we report 0.
  295. </entry>
  296. </row><row>
  297.         <entry>type</><entry>This reports the capabilities of the device, and
  298.                         matches the field we filled in in the struct
  299.                         video_device when registering.</entry>
  300.     </row>
  301.     </tbody>
  302.     </tgroup>
  303.     </table>
  304.   <para>
  305.         Having filled in the fields, we use copy_to_user to copy the structure into
  306.         the users buffer. If the copy fails we return an EFAULT to the application
  307.         so that it knows it tried to feed us garbage.
  308.   </para>
  309.   <para>
  310.         The next pair of ioctl operations select which tuner is to be used and let
  311.         the application find the tuner properties. We have only a single FM band
  312.         tuner in our example device.
  313.   </para>
  314.   <programlisting>
  315.                 case VIDIOCGTUNER:
  316.                 {
  317.                         struct video_tuner v;
  318.                         if(copy_from_user(&amp;v, arg, sizeof(v))!=0)
  319.                                 return -EFAULT;
  320.                         if(v.tuner)
  321.                                 return -EINVAL;
  322.                         v.rangelow=(87*16000);
  323.                         v.rangehigh=(108*16000);
  324.                         v.flags = VIDEO_TUNER_LOW;
  325.                         v.mode = VIDEO_MODE_AUTO;
  326.                         v.signal = 0xFFFF;
  327.                         strcpy(v.name, "FM");
  328.                         if(copy_to_user(&amp;v, arg, sizeof(v))!=0)
  329.                                 return -EFAULT;
  330.                         return 0;
  331.                 }
  332.   </programlisting>
  333.   <para>
  334.         The VIDIOCGTUNER ioctl allows applications to query a tuner. The application
  335.         sets the tuner field to the tuner number it wishes to query. The query does
  336.         not change the tuner that is being used, it merely enquires about the tuner
  337.         in question.
  338.   </para>
  339.   <para>
  340.         We have exactly one tuner so after copying the user buffer to our temporary
  341.         structure we complain if they asked for a tuner other than tuner 0. 
  342.   </para>
  343.   <para>
  344.         The video_tuner structure has the following fields
  345.   </para>
  346.    <table frame=all><title>struct video_tuner fields</title>
  347.    <tgroup cols=2 align=left>
  348.    <tbody>
  349.    <row>
  350.         <entry>int tuner</><entry>The number of the tuner in question</entry>
  351.    </row><row>
  352.         <entry>char name[32]</><entry>A text description of this tuner. "FM" will do fine.
  353.                         This is intended for the application.</entry>
  354.    </row><row>
  355.         <entry>u32 flags</>
  356.         <entry>Tuner capability flags</entry>
  357.    </row>
  358.    <row>
  359.         <entry>u16 mode</><entry>The current reception mode</entry>
  360.    </row><row>
  361.         <entry>u16 signal</><entry>The signal strength scaled between 0 and 65535. If
  362.                         a device cannot tell the signal strength it should
  363.                         report 65535. Many simple cards contain only a 
  364.                         signal/no signal bit. Such cards will report either
  365.                         0 or 65535.</entry>
  366.    </row><row>
  367.         <entry>u32 rangelow, rangehigh</><entry>
  368.                         The range of frequencies supported by the radio
  369.                         or TV. It is scaled according to the VIDEO_TUNER_LOW
  370.                         flag.</entry>
  371.     </row>
  372.     </tbody>
  373.     </tgroup>
  374.     </table>
  375.    <table frame=all><title>struct video_tuner flags</title>
  376.    <tgroup cols=2 align=left>
  377.    <tbody>
  378.    <row>
  379. <entry>VIDEO_TUNER_PAL</><entry>A PAL TV tuner</entry>
  380. </row><row>
  381.         <entry>VIDEO_TUNER_NTSC</><entry>An NTSC (US) TV tuner</entry>
  382. </row><row>
  383.         <entry>VIDEO_TUNER_SECAM</><entry>A SECAM (French) TV tuner</entry>
  384. </row><row>
  385.         <entry>VIDEO_TUNER_LOW</><entry>
  386.              The tuner frequency is scaled in 1/16th of a KHz
  387.              steps. If not it is in 1/16th of a MHz steps
  388. </entry>
  389. </row><row>
  390.         <entry>VIDEO_TUNER_NORM</><entry>The tuner can set its format</entry>
  391. </row><row>
  392.         <entry>VIDEO_TUNER_STEREO_ON</><entry>The tuner is currently receiving a stereo signal</entry>
  393.         </row>
  394.     </tbody>
  395.     </tgroup>
  396.     </table>
  397.    <table frame=all><title>struct video_tuner modes</title>
  398.    <tgroup cols=2 align=left>
  399.    <tbody>
  400.    <row>
  401.                 <entry>VIDEO_MODE_PAL</><entry>PAL Format</entry>
  402.    </row><row>
  403.                 <entry>VIDEO_MODE_NTSC</><entry>NTSC Format (USA)</entry>
  404.    </row><row>
  405.                 <entry>VIDEO_MODE_SECAM</><entry>French Format</entry>
  406.    </row><row>
  407.                 <entry>VIDEO_MODE_AUTO</><entry>A device that does not need to do
  408.                                         TV format switching</entry>
  409.    </row>
  410.     </tbody>
  411.     </tgroup>
  412.     </table>
  413.   <para>
  414.         The settings for the radio card are thus fairly simple. We report that we
  415.         are a tuner called "FM" for FM radio. In order to get the best tuning
  416.         resolution we report VIDEO_TUNER_LOW and select tuning to 1/16th of KHz. Its
  417.         unlikely our card can do that resolution but it is a fair bet the card can
  418.         do better than 1/16th of a MHz. VIDEO_TUNER_LOW is appropriate to almost all
  419.         radio usage.
  420.   </para>
  421.   <para>
  422.         We report that the tuner automatically handles deciding what format it is
  423.         receiving - true enough as it only handles FM radio. Our example card is
  424.         also incapable of detecting stereo or signal strengths so it reports a
  425.         strength of 0xFFFF (maximum) and no stereo detected.
  426.   </para>
  427.   <para>
  428.         To finish off we set the range that can be tuned to be 87-108Mhz, the normal
  429.         FM broadcast radio range. It is important to find out what the card is
  430.         actually capable of tuning. It is easy enough to simply use the FM broadcast
  431.         range. Unfortunately if you do this you will discover the FM broadcast
  432.         ranges in the USA, Europe and Japan are all subtly different and some users
  433.         cannot receive all the stations they wish.
  434.   </para>
  435.   <para>
  436.         The application also needs to be able to set the tuner it wishes to use. In
  437.         our case, with a single tuner this is rather simple to arrange.
  438.   </para>
  439.   <programlisting>
  440.                 case VIDIOCSTUNER:
  441.                 {
  442.                         struct video_tuner v;
  443.                         if(copy_from_user(&amp;v, arg, sizeof(v)))
  444.                                 return -EFAULT;
  445.                         if(v.tuner != 0)
  446.                                 return -EINVAL;
  447.                         return 0;
  448.                 }
  449.   </programlisting>
  450.   <para>
  451.         We copy the user supplied structure into kernel memory so we can examine it. 
  452.         If the user has selected a tuner other than zero we reject the request. If 
  453.         they wanted tuner 0 then, surprisingly enough, that is the current tuner already.
  454.   </para>
  455.   <para>
  456.         The next two ioctls we need to provide are to get and set the frequency of
  457.         the radio. These both use an unsigned long argument which is the frequency.
  458.         The scale of the frequency depends on the VIDEO_TUNER_LOW flag as I
  459.         mentioned earlier on. Since we have VIDEO_TUNER_LOW set this will be in
  460.         1/16ths of a KHz.
  461.   </para>
  462.   <programlisting>
  463. static unsigned long current_freq;
  464.                 case VIDIOCGFREQ:
  465.                         if(copy_to_user(arg, &amp;current_freq, 
  466.                                 sizeof(unsigned long))
  467.                                 return -EFAULT;
  468.                         return 0;
  469.   </programlisting>
  470.   <para>
  471.         Querying the frequency in our case is relatively simple. Our radio card is
  472.         too dumb to let us query the signal strength so we remember our setting if 
  473.         we know it. All we have to do is copy it to the user.
  474.   </para>
  475.   <programlisting>
  476.                 case VIDIOCSFREQ:
  477.                 {
  478.                         u32 freq;
  479.                         if(copy_from_user(arg, &amp;freq, 
  480.                                 sizeof(unsigned long))!=0)
  481.                                 return -EFAULT;
  482.                         if(hardware_set_freq(freq)<0)
  483.                                 return -EINVAL;
  484.                         current_freq = freq;
  485.                         return 0;
  486.                 }
  487.   </programlisting>
  488.   <para>
  489.         Setting the frequency is a little more complex. We begin by copying the
  490.         desired frequency into kernel space. Next we call a hardware specific routine
  491.         to set the radio up. This might be as simple as some scaling and a few
  492.         writes to an I/O port. For most radio cards it turns out a good deal more
  493.         complicated and may involve programming things like a phase locked loop on
  494.         the card. This is what documentation is for. 
  495.   </para>
  496.   <para>
  497.         The final set of operations we need to provide for our radio are the 
  498.         volume controls. Not all radio cards can even do volume control. After all
  499.         there is a perfectly good volume control on the sound card. We will assume
  500.         our radio card has a simple 4 step volume control.
  501.   </para>
  502.   <para>
  503.         There are two ioctls with audio we need to support
  504.   </para>
  505.   <programlisting>
  506. static int current_volume=0;
  507.                 case VIDIOCGAUDIO:
  508.                 {
  509.                         struct video_audio v;
  510.                         if(copy_from_user(&amp;v, arg, sizeof(v)))
  511.                                 return -EFAULT;
  512.                         if(v.audio != 0)
  513.                                 return -EINVAL;
  514.                         v.volume = 16384*current_volume;
  515.                         v.step = 16384;
  516.                         strcpy(v.name, "Radio");
  517.                         v.mode = VIDEO_SOUND_MONO;
  518.                         v.balance = 0;
  519.                         v.base = 0;
  520.                         v.treble = 0;
  521.                         
  522.                         if(copy_to_user(arg. &amp;v, sizeof(v)))
  523.                                 return -EFAULT;
  524.                         return 0;
  525.                 }
  526.   </programlisting>
  527.   <para>
  528.         Much like the tuner we start by copying the user structure into kernel
  529.         space. Again we check if the user has asked for a valid audio input. We have
  530.         only input 0 and we punt if they ask for another input.
  531.   </para>
  532.   <para>
  533.         Then we fill in the video_audio structure. This has the following format
  534.   </para>
  535.    <table frame=all><title>struct video_audio fields</title>
  536.    <tgroup cols=2 align=left>
  537.    <tbody>
  538.    <row>
  539.    <entry>audio</><entry>The input the user wishes to query</>
  540.    </row><row>
  541.    <entry>volume</><entry>The volume setting on a scale of 0-65535</>
  542.    </row><row>
  543.    <entry>base</><entry>The base level on a scale of 0-65535</>
  544.    </row><row>
  545.    <entry>treble</><entry>The treble level on a scale of 0-65535</>
  546.    </row><row>
  547.    <entry>flags</><entry>The features this audio device supports
  548.    </entry>
  549.    </row><row>
  550.    <entry>name</><entry>A text name to display to the user. We picked 
  551.                         "Radio" as it explains things quite nicely.</>
  552.    </row><row>
  553.    <entry>mode</><entry>The current reception mode for the audio
  554.                 We report MONO because our card is too stupid to know if it is in
  555.                 mono or stereo. 
  556.    </entry>
  557.    </row><row>
  558.    <entry>balance</><entry>The stereo balance on a scale of 0-65535, 32768 is
  559.                         middle.</>
  560.    </row><row>
  561.    <entry>step</><entry>The step by which the volume control jumps. This is
  562.                         used to help make it easy for applications to set 
  563.                         slider behaviour.</>   
  564.    </row>
  565.    </tbody>
  566.    </tgroup>
  567.    </table>
  568.    <table frame=all><title>struct video_audio flags</title>
  569.    <tgroup cols=2 align=left>
  570.    <tbody>
  571.    <row>
  572.                 <entry>VIDEO_AUDIO_MUTE</><entry>The audio is currently muted. We
  573.                                         could fake this in our driver but we
  574.                                         choose not to bother.</entry>
  575.    </row><row>
  576.                 <entry>VIDEO_AUDIO_MUTABLE</><entry>The input has a mute option</entry>
  577.    </row><row>
  578.                 <entry>VIDEO_AUDIO_TREBLE</><entry>The  input has a treble control</entry>
  579.    </row><row>
  580.                 <entry>VIDEO_AUDIO_BASS</><entry>The input has a base control</entry>
  581.    </row>
  582.    </tbody>
  583.    </tgroup>
  584.    </table>
  585.    <table frame=all><title>struct video_audio modes</title>
  586.    <tgroup cols=2 align=left>
  587.    <tbody>
  588.    <row>
  589.                 <entry>VIDEO_SOUND_MONO</><entry>Mono sound</entry>
  590.    </row><row>
  591.                 <entry>VIDEO_SOUND_STEREO</><entry>Stereo sound</entry>
  592.    </row><row>
  593.                 <entry>VIDEO_SOUND_LANG1</><entry>Alternative language 1 (TV specific)</entry>
  594.    </row><row>
  595.                 <entry>VIDEO_SOUND_LANG2</><entry>Alternative language 2 (TV specific)</entry>
  596.    </row>
  597.    </tbody>
  598.    </tgroup>
  599.    </table>
  600.   <para>
  601.         Having filled in the structure we copy it back to user space.
  602.   </para>
  603.   <para>
  604.         The VIDIOCSAUDIO ioctl allows the user to set the audio parameters in the
  605.         video_audio structure. The driver does its best to honour the request.
  606.   </para>
  607.   <programlisting>
  608.                 case VIDIOCSAUDIO:
  609.                 {
  610.                         struct video_audio v;
  611.                         if(copy_from_user(&amp;v, arg, sizeof(v)))
  612.                                 return -EFAULT;
  613.                         if(v.audio)
  614.                                 return -EINVAL;
  615.                         current_volume = v/16384;
  616.                         hardware_set_volume(current_volume);
  617.                         return 0;
  618.                 }
  619.   </programlisting>
  620.   <para>
  621.         In our case there is very little that the user can set. The volume is
  622.         basically the limit. Note that we could pretend to have a mute feature
  623.         by rewriting this to 
  624.   </para>
  625.   <programlisting>
  626.                 case VIDIOCSAUDIO:
  627.                 {
  628.                         struct video_audio v;
  629.                         if(copy_from_user(&amp;v, arg, sizeof(v)))
  630.                                 return -EFAULT;
  631.                         if(v.audio)
  632.                                 return -EINVAL;
  633.                         current_volume = v/16384;
  634.                         if(v.flags&amp;VIDEO_AUDIO_MUTE)
  635.                                 hardware_set_volume(0);
  636.                         else
  637.                                 hardware_set_volume(current_volume);
  638.                         current_muted = v.flags &amp; 
  639.                                               VIDEO_AUDIO_MUTE;
  640.                         return 0;
  641.                 }
  642.   </programlisting>
  643.   <para>
  644.         This with the corresponding changes to the VIDIOCGAUDIO code to report the
  645.         state of the mute flag we save and to report the card has a mute function,
  646.         will allow applications to use a mute facility with this card. It is
  647.         questionable whether this is a good idea however. User applications can already
  648.         fake this themselves and kernel space is precious.
  649.   </para>
  650.   <para>
  651.         We now have a working radio ioctl handler. So we just wrap up the function
  652.   </para>
  653.   <programlisting>
  654.         }
  655.         return -ENOIOCTLCMD;
  656. }
  657.   </programlisting>
  658.   <para>
  659.         and pass the Video4Linux layer back an error so that it knows we did not
  660.         understand the request we got passed.
  661.   </para>
  662.   </sect1>
  663.   <sect1 id="modradio">
  664.   <title>Module Wrapper</title>
  665.   <para>
  666.         Finally we add in the usual module wrapping and the driver is done.
  667.   </para>
  668.   <programlisting>
  669. #ifndef MODULE
  670. static int io = 0x300;
  671. #else
  672. static int io = -1;
  673. MODULE_AUTHOR("Alan Cox");
  674. MODULE_DESCRIPTION("A driver for an imaginary radio card.");
  675. MODULE_PARM(io, "i");
  676. MODULE_PARM_DESC(io, "I/O address of the card.");
  677. EXPORT_NO_SYMBOLS;
  678. int init_module(void)
  679. {
  680.         if(io==-1)
  681.         {
  682.                 printk(KERN_ERR 
  683.          "You must set an I/O address with io=0x???n");
  684.                 return -EINVAL;
  685.         }
  686.         return myradio_init(NULL);
  687. }
  688. void cleanup_module(void)
  689. {
  690.         video_unregister_device(&amp;my_radio);
  691.         release_region(io, MY_IO_SIZE);
  692. }
  693. #endif
  694.   </programlisting>
  695.   <para>
  696.         In this example we set the IO base by default if the driver is compiled into
  697.         the kernel where you cannot pass a parameter. For the module we require the
  698.         user sets the parameter. We set io to a nonsense port (-1) so that we can
  699.         tell if the user supplied an io parameter or not.
  700.   </para>
  701.   <para>
  702.         We use MODULE_ defines to give an author for the card driver and a
  703.         description. We also use them to declare that io is an integer and it is the
  704.         address of the card.
  705.   </para>
  706.   <para>
  707.         The clean-up routine unregisters the video_device we registered, and frees
  708.         up the I/O space. Note that the unregister takes the actual video_device
  709.         structure as its argument. Unlike the file operations structure which can be
  710.         shared by all instances of a device a video_device structure as an actual
  711.         instance of the device. If you are registering multiple radio devices you
  712.         need to fill in one structure per device (most likely by setting up a
  713.         template and copying it to each of the actual device structures).
  714.   </para>
  715.   </sect1>
  716.   </chapter>
  717.   <chapter>
  718.         <title>Video Capture Devices</title>
  719.   <sect1 id="introvid">
  720.   <title>Video Capture Device Types</title>
  721.   <para>
  722.         The video capture devices share the same interfaces as radio devices. In
  723.         order to explain the video capture interface I will use the example of a
  724.         camera that has no tuners or audio input. This keeps the example relatively
  725.         clean. To get both combine the two driver examples.
  726.   </para>
  727.   <para>
  728.         Video capture devices divide into four categories. A little technology
  729.         backgrounder. Full motion video even at television resolution (which is
  730.         actually fairly low) is pretty resource-intensive. You are continually
  731.         passing megabytes of data every second from the capture card to the display. 
  732.         several alternative approaches have emerged because copying this through the 
  733.         processor and the user program is a particularly bad idea .
  734.   </para>
  735.   <para>
  736.         The first is to add the television image onto the video output directly.
  737.         This is also how some 3D cards work. These basic cards can generally drop the
  738.         video into any chosen rectangle of the display. Cards like this, which
  739.         include most mpeg1 cards that used the feature connector,  aren't very
  740.         friendly in a windowing environment. They don't understand windows or
  741.         clipping. The video window is always on the top of the display.
  742.   </para>
  743.   <para>
  744.         Chroma keying is a technique used by cards to get around this. It is an old
  745.         television mixing trick where you mark all the areas you wish to replace
  746.         with a single clear colour that isn't used in the image - TV people use an
  747.         incredibly bright blue while computing people often use a particularly
  748.         virulent purple. Bright blue occurs on the desktop. Anyone with virulent
  749.         purple windows has another problem besides their TV overlay.
  750.   </para>
  751.   <para>
  752.         The third approach is to copy the data from the capture card to the video
  753.         card, but to do it directly across the PCI bus. This relieves the processor
  754.         from doing the work but does require some smartness on the part of the video
  755.         capture chip, as well as a suitable video card. Programming this kind of
  756.         card and more so debugging it can be extremely tricky. There are some quite
  757.         complicated interactions with the display and you may also have to cope with
  758.         various chipset bugs that show up when PCI cards start talking to each
  759.         other. 
  760.   </para>
  761.   <para>
  762.         To keep our example fairly simple we will assume a card that supports
  763.         overlaying a flat rectangular image onto the frame buffer output, and which
  764.         can also capture stuff into processor memory.
  765.   </para>
  766.   </sect1>
  767.   <sect1 id="regvid">
  768.   <title>Registering Video Capture Devices</title>
  769.   <para>
  770.         This time we need to add more functions for our camera device.
  771.   </para>
  772.   <programlisting>
  773. static struct video_device my_camera
  774. {
  775.         "My Camera",
  776.         VID_TYPE_OVERLAY|VID_TYPE_SCALES|
  777.         VID_TYPE_CAPTURE|VID_TYPE_CHROMAKEY,
  778.         VID_HARDWARE_MYCAMERA,
  779.         camera_open.
  780.         camera_close,
  781.         camera_read,      /* no read */
  782.         NULL,             /* no write */
  783.         camera_poll,      /* no poll */
  784.         camera_ioctl,
  785.         NULL,             /* no special init function */
  786.         NULL              /* no private data */
  787. };
  788.   </programlisting>
  789.   <para>
  790.         We need a read() function which is used for capturing data from
  791.         the card, and we need a poll function so that a driver can wait for the next
  792.         frame to be captured.
  793.   </para>
  794.   <para>
  795.         We use the extra video capability flags that did not apply to the
  796.         radio interface. The video related flags are
  797.   </para>
  798.    <table frame=all><title>Capture Capabilities</title>
  799.    <tgroup cols=2 align=left>
  800.    <tbody>
  801.    <row>
  802. <entry>VID_TYPE_CAPTURE</><entry>We support image capture</>
  803. </row><row>
  804. <entry>VID_TYPE_TELETEXT</><entry>A teletext capture device (vbi{n])</>
  805. </row><row>
  806. <entry>VID_TYPE_OVERLAY</><entry>The image can be directly overlaid onto the
  807.                                 frame buffer</>
  808. </row><row>
  809. <entry>VID_TYPE_CHROMAKEY</><entry>Chromakey can be used to select which parts
  810.                                 of the image to display</>
  811. </row><row>
  812. <entry>VID_TYPE_CLIPPING</><entry>It is possible to give the board a list of
  813.                                 rectangles to draw around. </>
  814. </row><row>
  815. <entry>VID_TYPE_FRAMERAM</><entry>The video capture goes into the video memory
  816.                                 and actually changes it. Applications need
  817.                                 to know this so they can clean up after the
  818.                                 card</>
  819. </row><row>
  820. <entry>VID_TYPE_SCALES</><entry>The image can be scaled to various sizes,
  821.                                 rather than being a single fixed size.</>
  822. </row><row>
  823. <entry>VID_TYPE_MONOCHROME</><entry>The capture will be monochrome. This isn't a 
  824.                                 complete answer to the question since a mono
  825.                                 camera on a colour capture card will still
  826.                                 produce mono output.</>
  827. </row><row>
  828. <entry>VID_TYPE_SUBCAPTURE</><entry>The card allows only part of its field of
  829.                                 view to be captured. This enables
  830.                                 applications to avoid copying all of a large
  831.                                 image into memory when only some section is
  832.                                 relevant.</>
  833.     </row>
  834.     </tbody>
  835.     </tgroup>
  836.     </table>
  837.   <para>
  838.         We set VID_TYPE_CAPTURE so that we are seen as a capture card,
  839.         VID_TYPE_CHROMAKEY so the application knows it is time to draw in virulent
  840.         purple, and VID_TYPE_SCALES because we can be resized.
  841.   </para>
  842.   <para>
  843.         Our setup is fairly similar. This time we also want an interrupt line
  844.         for the 'frame captured' signal. Not all cards have this so some of them
  845.         cannot handle poll().
  846.   </para>
  847.   <programlisting>
  848. static int io = 0x320;
  849. static int irq = 11;
  850. int __init mycamera_init(struct video_init *v)
  851. {
  852.         if(check_region(io, MY_IO_SIZE))
  853.         {
  854.                 printk(KERN_ERR 
  855.                       "mycamera: port 0x%03X is in use.n", io);
  856.                 return -EBUSY;
  857.         }
  858.         if(video_device_register(&amp;my_camera, 
  859.             VFL_TYPE_GRABBER)==-1)
  860.                 return -EINVAL;
  861.         request_region(io, MY_IO_SIZE, "mycamera");
  862.         return 0;
  863. }
  864.   </programlisting>
  865.   <para>
  866.         This is little changed from the needs of the radio card. We specify
  867.         VFL_TYPE_GRABBER this time as we want to be allocated a /dev/video name.
  868.   </para>
  869.   </sect1>
  870.   <sect1 id="opvid">
  871.   <title>Opening And Closing The Capture Device</title>
  872.   <programlisting>
  873. static int users = 0;
  874. static int camera_open(stuct video_device *dev, int flags)
  875. {
  876.         if(users)
  877.                 return -EBUSY;
  878.         if(request_irq(irq, camera_irq, 0, "camera", dev)&lt;0)
  879.                 return -EBUSY;
  880.         users++;
  881.         MOD_INC_USE_COUNT;
  882.         return 0;
  883. }
  884. static int camera_close(struct video_device *dev)
  885. {
  886.         users--;
  887.         free_irq(irq, dev);
  888.         MOD_DEC_USE_COUNT;
  889. }
  890.   </programlisting>
  891.   <para>
  892.         The open and close routines are also quite similar. The only real change is
  893.         that we now request an interrupt for the camera device interrupt line. If we
  894.         cannot get the interrupt we report EBUSY to the application and give up.
  895.   </para>
  896.   </sect1>
  897.   <sect1 id="irqvid">
  898.   <title>Interrupt Handling</title>
  899.   <para>
  900.         Our example handler is for an ISA bus device. If it was PCI you would be
  901.         able to share the interrupt and would have set SA_SHIRQ to indicate a 
  902.         shared IRQ. We pass the device pointer as the interrupt routine argument. We
  903.         don't need to since we only support one card but doing this will make it
  904.         easier to upgrade the driver for multiple devices in the future.
  905.   </para>
  906.   <para>
  907.         Our interrupt routine needs to do little if we assume the card can simply
  908.         queue one frame to be read after it captures it. 
  909.   </para>
  910.   <programlisting>
  911. static struct wait_queue *capture_wait;
  912. static int capture_ready = 0;
  913. static void camera_irq(int irq, void *dev_id, 
  914.                           struct pt_regs *regs)
  915. {
  916.         capture_ready=1;
  917.         wake_up_interruptible(&amp;capture_wait);
  918. }
  919.   </programlisting>
  920.   <para>
  921.         The interrupt handler is nice and simple for this card as we are assuming
  922.         the card is buffering the frame for us. This means we have little to do but
  923.         wake up        anybody interested. We also set a capture_ready flag, as we may
  924.         capture a frame before an application needs it. In this case we need to know
  925.         that a frame is ready. If we had to collect the frame on the interrupt life
  926.         would be more complex.
  927.   </para>
  928.   <para>
  929.         The two new routines we need to supply are camera_read which returns a
  930.         frame, and camera_poll which waits for a frame to become ready.
  931.   </para>
  932.   <programlisting>
  933. static int camera_poll(struct video_device *dev, 
  934. struct file *file, struct poll_table *wait)
  935. {
  936.         poll_wait(file, &amp;capture_wait, wait);
  937.         if(capture_read)
  938.                 return POLLIN|POLLRDNORM;
  939.         return 0;
  940. }
  941.   </programlisting>
  942.   <para>
  943.         Our wait queue for polling is the capture_wait queue. This will cause the
  944.         task to be woken up by our camera_irq routine. We check capture_read to see
  945.         if there is an image present and if so report that it is readable.
  946.   </para>
  947.   </sect1>
  948.   <sect1 id="rdvid">
  949.   <title>Reading The Video Image</title>
  950.   <programlisting>
  951. static long camera_read(struct video_device *dev, char *buf,
  952.                                 unsigned long count)
  953. {
  954.         struct wait_queue wait = { current, NULL };
  955.         u8 *ptr;
  956.         int len;
  957.         int i;
  958.         add_wait_queue(&amp;capture_wait, &amp;wait);
  959.         while(!capture_ready)
  960.         {
  961.                 if(file->flags&amp;O_NDELAY)
  962.                 {
  963.                         remove_wait_queue(&amp;capture_wait, &amp;wait);
  964.                         current->state = TASK_RUNNING;
  965.                         return -EWOULDBLOCK;
  966.                 }
  967.                 if(signal_pending(current))
  968.                 {
  969.                         remove_wait_queue(&amp;capture_wait, &amp;wait);
  970.                         current->state = TASK_RUNNING;
  971.                         return -ERESTARTSYS;
  972.                 }
  973.                 schedule();
  974.                 current->state = TASK_INTERRUPTIBLE;
  975.         }
  976.         remove_wait_queue(&amp;capture_wait, &amp;wait);
  977.         current->state = TASK_RUNNING;
  978.   </programlisting>
  979.   <para>
  980.         The first thing we have to do is to ensure that the application waits until
  981.         the next frame is ready. The code here is almost identical to the mouse code
  982.         we used earlier in this chapter. It is one of the common building blocks of
  983.         Linux device driver code and probably one which you will find occurs in any
  984.         drivers you write.
  985.   </para>
  986.   <para>
  987.         We wait for a frame to be ready, or for a signal to interrupt our waiting. If a
  988.         signal occurs we need to return from the system call so that the signal can
  989.         be sent to the application itself. We also check to see if the user actually
  990.         wanted to avoid waiting - ie  if they are using non-blocking I/O and have other things 
  991.         to get on with.
  992.   </para>
  993.   <para>
  994.         Next we copy the data from the card to the user application. This is rarely
  995.         as easy as our example makes out. We will add capture_w, and capture_h here
  996.         to hold the width and height of the captured image. We assume the card only
  997.         supports 24bit RGB for now.
  998.   </para>
  999.   <programlisting>
  1000.         capture_ready = 0;
  1001.         ptr=(u8 *)buf;
  1002.         len = capture_w * 3 * capture_h; /* 24bit RGB */
  1003.         if(len>count)
  1004.                 len=count;  /* Doesn't all fit */
  1005.         for(i=0; i&lt;len; i++)
  1006.         {
  1007.                 put_user(inb(io+IMAGE_DATA), ptr);
  1008.                 ptr++;
  1009.         }
  1010.         hardware_restart_capture();
  1011.                 
  1012.         return i;
  1013. }
  1014.   </programlisting>
  1015.   <para>
  1016.         For a real hardware device you would try to avoid the loop with put_user().
  1017.         Each call to put_user() has a time overhead checking whether the accesses to user
  1018.         space are allowed. It would be better to read a line into a temporary buffer
  1019.         then copy this to user space in one go.
  1020.   </para>
  1021.   <para>
  1022.         Having captured the image and put it into user space we can kick the card to
  1023.         get the next frame acquired.
  1024.   </para>
  1025.   </sect1>
  1026.   <sect1 id="iocvid">
  1027.   <title>Video Ioctl Handling</title>
  1028.   <para>
  1029.         As with the radio driver the major control interface is via the ioctl()
  1030.         function. Video capture devices support the same tuner calls as a radio
  1031.         device and also support additional calls to control how the video functions
  1032.         are handled. In this simple example the card has no tuners to avoid making
  1033.         the code complex. 
  1034.   </para>
  1035.   <programlisting>
  1036. static int camera_ioctl(struct video_device *dev, unsigned int cmd, void *arg)
  1037. {
  1038.         switch(cmd)
  1039.         {
  1040.                 case VIDIOCGCAP:
  1041.                 {
  1042.                         struct video_capability v;
  1043.                         v.type = VID_TYPE_CAPTURE|
  1044.                                  VID_TYPE_CHROMAKEY|
  1045.                                  VID_TYPE_SCALES|
  1046.                                  VID_TYPE_OVERLAY;
  1047.                         v.channels = 1;
  1048.                         v.audios = 0;
  1049.                         v.maxwidth = 640;
  1050.                         v.minwidth = 16;
  1051.                         v.maxheight = 480;
  1052.                         v.minheight = 16;
  1053.                         strcpy(v.name, "My Camera");
  1054.                         if(copy_to_user(arg, &amp;v, sizeof(v)))
  1055.                                 return -EFAULT;
  1056.                         return 0;
  1057.                 }
  1058.   </programlisting>
  1059.   <para>
  1060.         The first ioctl we must support and which all video capture and radio
  1061.         devices are required to support is VIDIOCGCAP. This behaves exactly the same
  1062.         as with a radio device. This time, however, we report the extra capabilities
  1063.         we outlined earlier on when defining our video_dev structure.
  1064.   </para>
  1065.   <para>
  1066.         We now set the video flags saying that we support overlay, capture,
  1067.         scaling and chromakey. We also report size limits - our smallest image is
  1068.         16x16 pixels, our largest is 640x480. 
  1069.   </para>
  1070.   <para>
  1071.         To keep things simple we report no audio and no tuning capabilities at all.
  1072.   </para>
  1073.   <programlisting>        
  1074.                 case VIDIOCGCHAN:
  1075.                 {
  1076.                         struct video_channel v;
  1077.                         if(copy_from_user(&amp;v, arg, sizeof(v)))
  1078.                                 return -EFAULT;
  1079.                         if(v.channel != 0)
  1080.                                 return -EINVAL;
  1081.                         v.flags = 0;
  1082.                         v.tuners = 0;
  1083.                         v.type = VIDEO_TYPE_CAMERA;
  1084.                         v.norm = VIDEO_MODE_AUTO;
  1085.                         strcpy(v.name, "Camera Input");break;
  1086.                         if(copy_to_user(&amp;v, arg, sizeof(v)))
  1087.                                 return -EFAULT;
  1088.                         return 0;
  1089.                 }
  1090.   </programlisting>
  1091.   <para>
  1092.         This follows what is very much the standard way an ioctl handler looks
  1093.         in Linux. We copy the data into a kernel space variable and we check that the
  1094.         request is valid (in this case that the input is 0). Finally we copy the
  1095.         camera info back to the user.
  1096.   </para>
  1097.   <para>
  1098.         The VIDIOCGCHAN ioctl allows a user to ask about video channels (that is
  1099.         inputs to the video card). Our example card has a single camera input. The
  1100.         fields in the structure are
  1101.   </para>
  1102.    <table frame=all><title>struct video_channel fields</title>
  1103.    <tgroup cols=2 align=left>
  1104.    <tbody>
  1105.    <row>
  1106.    <entry>channel</><entry>The channel number we are selecting</entry>
  1107.    </row><row>
  1108.    <entry>name</><entry>The name for this channel. This is intended
  1109.                    to describe the port to the user.
  1110.                    Appropriate names are therefore things like
  1111.                    "Camera" "SCART input"</entry>
  1112.    </row><row>
  1113.    <entry>flags</><entry>Channel properties</entry>
  1114.    </row><row>
  1115.    <entry>type</><entry>Input type</entry>
  1116.    </row><row>
  1117.    <entry>norm</><entry>The current television encoding being used
  1118.                    if relevant for this channel.
  1119.     </entry>
  1120.     </row>
  1121.     </tbody>
  1122.     </tgroup>
  1123.     </table>
  1124.     <table frame=all><title>struct video_channel flags</title>
  1125.     <tgroup cols=2 align=left>
  1126.     <tbody>
  1127.     <row>
  1128.         <entry>VIDEO_VC_TUNER</><entry>Channel has a tuner.</entry>
  1129.    </row><row>
  1130.         <entry>VIDEO_VC_AUDIO</><entry>Channel has audio.</entry>
  1131.     </row>
  1132.     </tbody>
  1133.     </tgroup>
  1134.     </table>
  1135.     <table frame=all><title>struct video_channel types</title>
  1136.     <tgroup cols=2 align=left>
  1137.     <tbody>
  1138.     <row>
  1139.         <entry>VIDEO_TYPE_TV</><entry>Television input.</entry>
  1140.    </row><row>
  1141.         <entry>VIDEO_TYPE_CAMERA</><entry>Fixed camera input.</entry>
  1142.    </row><row>
  1143. <entry>0</><entry>Type is unknown.</entry>
  1144.     </row>
  1145.     </tbody>
  1146.     </tgroup>
  1147.     </table>
  1148.     <table frame=all><title>struct video_channel norms</title>
  1149.     <tgroup cols=2 align=left>
  1150.     <tbody>
  1151.     <row>
  1152.         <entry>VIDEO_MODE_PAL</><entry>PAL encoded Television</entry>
  1153.    </row><row>
  1154.         <entry>VIDEO_MODE_NTSC</><entry>NTSC (US) encoded Television</entry>
  1155.    </row><row>
  1156.         <entry>VIDEO_MODE_SECAM</><entry>SECAM (French) Television </entry>
  1157.    </row><row>
  1158.         <entry>VIDEO_MODE_AUTO</><entry>Automatic switching, or format does not
  1159.                                 matter</entry>
  1160.     </row>
  1161.     </tbody>
  1162.     </tgroup>
  1163.     </table>
  1164.     <para>
  1165.         The corresponding VIDIOCSCHAN ioctl allows a user to change channel and to
  1166.         request the norm is changed - for example to switch between a PAL or an NTSC
  1167.         format camera.
  1168.   </para>
  1169.   <programlisting>
  1170.                 case VIDIOCSCHAN:
  1171.                 {
  1172.                         struct video_channel v;
  1173.                         if(copy_from_user(&amp;v, arg, sizeof(v)))
  1174.                                 return -EFAULT;
  1175.                         if(v.channel != 0)
  1176.                                 return -EINVAL;
  1177.                         if(v.norm != VIDEO_MODE_AUTO)
  1178.                                 return -EINVAL;
  1179.                         return 0;
  1180.                 }
  1181.   </programlisting>
  1182.   <para>
  1183.         The implementation of this call in our driver is remarkably easy. Because we
  1184.         are assuming fixed format hardware we need only check that the user has not
  1185.         tried to change anything. 
  1186.   </para>
  1187.   <para>
  1188.         The user also needs to be able to configure and adjust the picture they are
  1189.         seeing. This is much like adjusting a television set. A user application
  1190.         also needs to know the palette being used so that it knows how to display
  1191.         the image that has been captured. The VIDIOCGPICT and VIDIOCSPICT ioctl
  1192.         calls provide this information.
  1193.   </para>
  1194.   <programlisting>
  1195.                 case VIDIOCGPICT
  1196.                 {
  1197.                         struct video_picture v;
  1198.                         v.brightness = hardware_brightness();
  1199.                         v.hue = hardware_hue();
  1200.                         v.colour = hardware_saturation();
  1201.                         v.contrast = hardware_brightness();
  1202.                         /* Not settable */
  1203.                         v.whiteness = 32768;
  1204.                         v.depth = 24;           /* 24bit */
  1205.                         v.palette = VIDEO_PALETTE_RGB24;
  1206.                         if(copy_to_user(&amp;v, arg, 
  1207.                              sizeof(v)))
  1208.                                 return -EFAULT;
  1209.                         return 0;
  1210.                 }
  1211.   </programlisting>
  1212.   <para>
  1213.         The brightness, hue, color, and contrast provide the picture controls that
  1214.         are akin to a conventional television. Whiteness provides additional
  1215.         control for greyscale images. All of these values are scaled between 0-65535
  1216.         and have 32768 as the mid point setting. The scaling means that applications
  1217.         do not have to worry about the capability range of the hardware but can let
  1218.         it make a best effort attempt.
  1219.   </para>
  1220.   <para>
  1221.         Our depth is 24, as this is in bits. We will be returning RGB24 format. This
  1222.         has one byte of red, then one of green, then one of blue. This then repeats
  1223.         for every other pixel in the image. The other common formats the interface 
  1224.         defines are
  1225.   </para>
  1226.    <table frame=all><title>Framebuffer Encodings</title>
  1227.    <tgroup cols=2 align=left>
  1228.    <tbody>
  1229.    <row>
  1230.    <entry>GREY</><entry>Linear greyscale. This is for simple cameras and the
  1231.                         like</>
  1232.    </row><row>
  1233.    <entry>RGB565</><entry>The top 5 bits hold 32 red levels, the next six bits 
  1234.                         hold green and the low 5 bits hold blue. </>
  1235.    </row><row>
  1236.    <entry>RGB555</><entry>The top bit is clear. The red green and blue levels
  1237.                         each occupy five bits.</>
  1238.     </row>
  1239.     </tbody>
  1240.     </tgroup>
  1241.     </table>
  1242.   <para>
  1243.         Additional modes are support for YUV capture formats. These are common for
  1244.         TV and video conferencing applications.
  1245.   </para>
  1246.   <para>
  1247.         The VIDIOCSPICT ioctl allows a user to set some of the picture parameters.
  1248.         Exactly which ones are supported depends heavily on the card itself. It is
  1249.         possible to support many modes and effects in software. In general doing
  1250.         this in the kernel is a bad idea. Video capture is a performance-sensitive
  1251.         application and the programs can often do better if they aren't being
  1252.         'helped' by an overkeen driver writer. Thus for our device we will report
  1253.         RGB24 only and refuse to allow a change.
  1254.   </para>
  1255.   <programlisting>
  1256.                 case VIDIOCSPICT:
  1257.                 {
  1258.                         struct video_picture v;
  1259.                         if(copy_from_user(&amp;v, arg, sizeof(v)))
  1260.                                 return -EFAULT;
  1261.                         if(v.depth!=24 || 
  1262.                            v.palette != VIDEO_PALETTE_RGB24)
  1263.                                 return -EINVAL;
  1264.                         set_hardware_brightness(v.brightness);
  1265.                         set_hardware_hue(v.hue);
  1266.                         set_hardware_saturation(v.colour);
  1267.                         set_hardware_brightness(v.contrast);
  1268.                         return 0;
  1269.                 }
  1270.   </programlisting>
  1271.   <para>
  1272.         We check the user has not tried to change the palette or the depth. We do
  1273.         not want to carry out some of the changes and then return an error. This may
  1274.         confuse the application which will be assuming no change occurred.
  1275.   </para>
  1276.   <para>
  1277.         In much the same way as you need to be able to set the picture controls to
  1278.         get the right capture images, many cards need to know what they are
  1279.         displaying onto when generating overlay output. In some cases getting this
  1280.         wrong even makes a nasty mess or may crash the computer. For that reason
  1281.         the VIDIOCSBUF ioctl used to set up the frame buffer information may well
  1282.         only be usable by root.
  1283.   </para>
  1284.   <para>
  1285.         We will assume our card is one of the old ISA devices with feature connector
  1286.         and only supports a couple of standard video modes. Very common for older
  1287.         cards although the PCI devices are way smarter than this.
  1288.   </para>
  1289.   <programlisting>
  1290. static struct video_buffer capture_fb;
  1291.                 case VIDIOCGFBUF:
  1292.                 {
  1293.                         if(copy_to_user(arg, &amp;capture_fb, 
  1294.                              sizeof(capture_fb)))
  1295.                                 return -EFAULT;
  1296.                         return 0;
  1297.                         
  1298.                 }
  1299.   </programlisting>
  1300.   <para>
  1301.         We keep the frame buffer information in the format the ioctl uses. This
  1302.         makes it nice and easy to work with in the ioctl calls.
  1303.   </para>
  1304.   <programlisting>
  1305.                 case VIDIOCSFBUF:
  1306.                 {
  1307.                         struct video_buffer v;
  1308.                         if(!capable(CAP_SYS_ADMIN))
  1309.                                 return -EPERM;
  1310.                         if(copy_from_user(&amp;v, arg, sizeof(v)))
  1311.                                 return -EFAULT;
  1312.                         if(v.width!=320 &amp;&amp; v.width!=640)
  1313.                                 return -EINVAL;
  1314.                         if(v.height!=200 &amp;&amp; v.height!=240 
  1315.                                 &amp;&amp; v.height!=400
  1316.                                 &amp;&amp; v.height !=480)
  1317.                                 return -EINVAL;
  1318.                         memcpy(&amp;capture_fb, &amp;v, sizeof(v));
  1319.                         hardware_set_fb(&amp;v);
  1320.                         return 0;
  1321.                 }
  1322.   </programlisting>
  1323.   <para>
  1324.         The capable() function checks a user has the required capability. The Linux
  1325.         operating system has a set of about 30 capabilities indicating privileged
  1326.         access to services. The default set up gives the superuser (uid 0) all of
  1327.         them and nobody else has any.
  1328.   </para>
  1329.   <para>
  1330.         We check that the user has the SYS_ADMIN capability, that is they are
  1331.         allowed to operate as the machine administrator. We don't want anyone but
  1332.         the administrator making a mess of the display.
  1333.   </para>
  1334.   <para>
  1335.         Next we check for standard PC video modes (320 or 640 wide with either
  1336.         EGA or VGA depths). If the mode is not a standard video mode we reject it as
  1337.         not supported by our card. If the mode is acceptable we save it so that
  1338.         VIDIOCFBUF will give the right answer next time it is called.  The
  1339.         hardware_set_fb() function is some undescribed card specific function to
  1340.         program the card for the desired mode.
  1341.   </para>
  1342.   <para>
  1343.         Before the driver can display an overlay window it needs to know where the
  1344.         window should be placed, and also how large it should be. If the card
  1345.         supports clipping it needs to know which rectangles to omit from the
  1346.         display. The video_window structure is used to describe the way the image 
  1347.         should be displayed. 
  1348.    </para>
  1349.    <table frame=all><title>struct video_window fields</title>
  1350.    <tgroup cols=2 align=left>
  1351.    <tbody>
  1352.    <row>
  1353.         <entry>width</><entry>The width in pixels of the desired image. The card
  1354.                         may use a smaller size if this size is not available</>
  1355. </row><row>
  1356.         <entry>height</><entry>The height of the image. The card may use a smaller
  1357.                         size if this size is not available.</>
  1358. </row><row>
  1359.         <entry>x</><entry>   The X position of the top left of the window. This
  1360.                         is in pixels relative to the left hand edge of the
  1361.                         picture. Not all cards can display images aligned on
  1362.                         any pixel boundary. If the position is unsuitable
  1363.                         the card adjusts the image right and reduces the
  1364.                         width.</>
  1365. </row><row>
  1366.         <entry>y</><entry>   The Y position of the top left of the window. This
  1367.                         is counted in pixels relative to the top edge of the
  1368.                         picture. As with the width if the card cannot
  1369.                         display  starting on this line it will adjust the
  1370.                         values.</>
  1371. </row><row>
  1372.         <entry>chromakey</><entry>The colour (expressed in RGB32 format) for the
  1373.                         chromakey colour if chroma keying is being used. </>
  1374. </row><row>
  1375.         <entry>clips</><entry>An array of rectangles that must not be drawn
  1376. over.</>
  1377. </row><row>
  1378.         <entry>clipcount</><entry>The number of clips in this array.</>
  1379.     </row>
  1380.     </tbody>
  1381.     </tgroup>
  1382.     </table>
  1383.     <para>
  1384.         Each clip is a struct video_clip which has the following fields
  1385.    </para>
  1386.    <table frame=all><title>video_clip fields</title>
  1387.    <tgroup cols=2 align=left>
  1388.    <tbody>
  1389.    <row>
  1390.         <entry>x, y</><entry>Co-ordinates relative to the display</>
  1391. </row><row>
  1392.         <entry>width, height</><entry>Width and height in pixels</>
  1393. </row><row>
  1394.         <entry>next</><entry>A spare field for the application to use</>
  1395.     </row>
  1396.     </tbody>
  1397.     </tgroup>
  1398.     </table>
  1399.     <para>
  1400.         The driver is required to ensure it always draws in the area requested or a        smaller area, and that it never draws in any of the areas that are clipped.
  1401.         This may well mean it has to leave alone. small areas the application wished to be
  1402.         drawn.
  1403.   </para>
  1404.   <para>
  1405.         Our example card uses chromakey so does not have to address most of the
  1406.         clipping.  We will add a video_window structure to our global variables to
  1407.         remember our parameters, as we did with the frame buffer.
  1408.   </para>
  1409.   <programlisting>
  1410.                 case VIDIOCGWIN:
  1411.                 {
  1412.                         if(copy_to_user(arg, &amp;capture_win, 
  1413.                             sizeof(capture_win)))
  1414.                                 return -EFAULT;
  1415.                         return 0;
  1416.                 }
  1417.                 case VIDIOCSWIN:
  1418.                 {
  1419.                         struct video_window v;
  1420.                         if(copy_from_user(&amp;v, arg, sizeof(v)))
  1421.                                 return -EFAULT;
  1422.                         if(v.width > 640 || v.height > 480)
  1423.                                 return -EINVAL;
  1424.                         if(v.width < 16 || v.height < 16)
  1425.                                 return -EINVAL;
  1426.                         hardware_set_key(v.chromakey);
  1427.                         hardware_set_window(v);
  1428.                         memcpy(&amp;capture_win, &amp;v, sizeof(v));
  1429.                         capture_w = v.width;
  1430.                         capture_h = v.height;
  1431.                         return 0;
  1432.                 }
  1433.   </programlisting>
  1434.   <para>
  1435.         Because we are using Chromakey our setup is fairly simple. Mostly we have to
  1436.         check the values are sane and load them into the capture card.
  1437.   </para>
  1438.   <para>
  1439.         With all the setup done we can now turn on the actual capture/overlay. This
  1440.         is done with the VIDIOCCAPTURE ioctl. This takes a single integer argument
  1441.         where 0 is on and 1 is off.
  1442.   </para>
  1443.   <programlisting>
  1444.                 case VIDIOCCAPTURE:
  1445.                 {
  1446.                         int v;
  1447.                         if(get_user(v, (int *)arg))
  1448.                                 return -EFAULT;
  1449.                         if(v==0)
  1450.                                 hardware_capture_off();
  1451.                         else
  1452.                         {
  1453.                                 if(capture_fb.width == 0 
  1454.                                     || capture_w == 0)
  1455.                                         return -EINVAL;
  1456.                                 hardware_capture_on();
  1457.                         }
  1458.                         return 0;
  1459.                 }
  1460.   </programlisting>
  1461.   <para>
  1462.         We grab the flag from user space and either enable or disable according to
  1463.         its value. There is one small corner case we have to consider here. Suppose
  1464.         that the capture was requested before the video window or the frame buffer
  1465.         had been set up. In those cases there will be unconfigured fields in our
  1466.         card data, as well as unconfigured hardware settings. We check for this case and
  1467.         return an error if the frame buffer or the capture window width is zero.
  1468.   </para>
  1469.   <programlisting>
  1470.                 default:
  1471.                         return -ENOIOCTLCMD;
  1472.         }
  1473. }
  1474.   </programlisting>
  1475.   <para>
  1476.         We don't need to support any other ioctls, so if we get this far, it is time
  1477.         to tell the video layer that we don't now what the user is talking about.
  1478.   </para>
  1479.   </sect1>
  1480.   <sect1 id="endvid">
  1481.   <title>Other Functionality</title>
  1482.   <para>
  1483.         The Video4Linux layer supports additional features, including a high
  1484.         performance mmap() based capture mode and capturing part of the image. 
  1485.         These features are out of the scope of the book.  You should however have enough 
  1486.         example code to implement most simple video4linux devices for radio and TV
  1487.         cards.
  1488.   </para>
  1489.   </sect1>
  1490.   </chapter>
  1491.   <chapter id="bugs">
  1492.      <title>Known Bugs And Assumptions</title>
  1493.   <para>
  1494.   <variablelist>
  1495.     <varlistentry><term>Multiple Opens</term>
  1496.     <listitem>
  1497.     <para>
  1498.         The driver assumes multiple opens should not be allowed. A driver
  1499.         can work around this but not cleanly.
  1500.     </para>
  1501.     </listitem></varlistentry>
  1502.     <varlistentry><term>API Deficiencies</term>
  1503.     <listitem>
  1504.     <para>
  1505.         The existing API poorly reflects compression capable devices. There
  1506.         are plans afoot to merge V4L, V4L2 and some other ideas into a
  1507.         better interface.
  1508.     </para>
  1509.     </listitem></varlistentry>
  1510.   </variablelist>
  1511.   </para>
  1512.   </chapter>
  1513.   <chapter id="pubfunctions">
  1514.      <title>Public Functions Provided</title>
  1515. !Edrivers/media/video/videodev.c
  1516.   </chapter>
  1517. </book>