ioctls.c
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:49k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /*
  2.   **********************************************************************
  3.   *
  4.   *     Copyright 1999, 2000 Creative Labs, Inc.
  5.   *
  6.   **********************************************************************
  7.   *
  8.   *     Date                 Author               Summary of changes
  9.   *     ----                 ------               ------------------
  10.   *     October 20, 1999     Andrew de Quincey    Rewrote and extended
  11.   *                          Lucien Murray-Pitts  original incomplete 
  12.   *                                               driver.
  13.   *
  14.   *     April 18, 1999       Andrew Veliath       Original Driver
  15.   *                                               implementation
  16.   *
  17.   **********************************************************************
  18.   *
  19.   *     This program is free software; you can redistribute it and/or
  20.   *     modify it under the terms of the GNU General Public License as
  21.   *     published by the Free Software Foundation; either version 2 of
  22.   *     the License, or (at your option) any later version.
  23.   *
  24.   *     This program is distributed in the hope that it will be useful,
  25.   *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.   *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.   *     GNU General Public License for more details.
  28.   *
  29.   *     You should have received a copy of the GNU General Public
  30.   *     License along with this program; if not, write to the Free
  31.   *     Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
  32.   *     USA.
  33.   *
  34.   **********************************************************************
  35.   */
  36. /**
  37.  *
  38.  * Overall driver for the Creative DXR2 card
  39.  * Ioctl code
  40.  *
  41.  */
  42. #include <linux/errno.h>
  43. #include <linux/sched.h>
  44. #include <linux/malloc.h>
  45. #include <linux/delay.h>
  46. #include <asm/uaccess.h>
  47. #include <asm/io.h>
  48. #include <dxr2.h>
  49. #include <bt865.h>
  50. #include <zivaDS.h>
  51. static int maxStreamTable[] = {
  52.   
  53.   // stream type 0 (MPEG_VOB)
  54.   1,
  55.   32,
  56.   8,
  57.   8,
  58.   8,
  59.   0,
  60.   // stream type (CDROM_VCD)
  61.   1,
  62.   0,
  63.   0,
  64.   1,
  65.   0,
  66.   3,
  67.   // stream type 2 (MPEG_VCD)
  68.   1,
  69.   0,
  70.   0,
  71.   1,
  72.   0,
  73.   3,
  74.   // stream type 3 (CDDA)
  75.   1,
  76.   0,
  77.   0,
  78.   0,
  79.   0,
  80.   3,
  81.   
  82.   // stream type 4 (TYPE_4)
  83.   1,
  84.   0,
  85.   0,
  86.   0,
  87.   0,
  88.   3,
  89. };
  90. /**
  91.  *
  92.  * Table of clock values for LPCM streams
  93.  *
  94.  */
  95. static int clockTable[] = {
  96.   
  97.   1,
  98.   1,
  99.   2,
  100.   1,
  101.   2,
  102.   2,
  103.   1,
  104.   1,
  105.   1,
  106.   1,
  107.   1,
  108.   1,
  109.   1,
  110.   1,
  111.   1 };
  112. /**
  113.  *
  114.  * Get the region code for the card. Places it in supplied buffer
  115.  *
  116.  * @param instance DXR2 instance to use
  117.  * @param buffer Instance of dxr2_oneArg_t. arg will be set to the region code
  118.  *
  119.  * @return 0 on success, <0 on failure
  120.  *
  121.  */
  122. extern int dxr2_ioc_get_region_code(dxr2_t* instance, char* buffer) 
  123. {
  124.   int tmp;
  125.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  126.   
  127.   // read rom check
  128.   tmp = dxr2_eeprom_read_byte(instance, 4) << 8;
  129.   tmp |= dxr2_eeprom_read_byte(instance, 5);
  130.   if (tmp != 0x6ee6) {
  131.     
  132.     put_user(0, &(argBuffer->arg));
  133.     return(-EIO);
  134.   }
  135.   
  136.   // read the country value
  137.   tmp = dxr2_eeprom_read_byte(instance, 6) << 8;
  138.   tmp |= dxr2_eeprom_read_byte(instance, 7);
  139.   // copy the country code to the supplied buffer
  140.   if (put_user(tmp, &(argBuffer->arg)) < 0) {
  141.     
  142.     return(-EFAULT);
  143.   }
  144.   
  145.   // OK
  146.   return(0);
  147. }
  148. /**
  149.  *
  150.  * Set the output TV format (PAL/NTSC) (i.e. the bt865)
  151.  *
  152.  * @param instance DXR2 instance to use
  153.  * @param buffer instance of dxr2_oneArg_t. 
  154.  *               arg should be one of DXR2_TVFORMAT_PAL or DXR2_TVFORMAT_NTSC
  155.  *
  156.  * @return 0 on success, <0 on failure
  157.  *
  158.  */
  159. extern int dxr2_ioc_set_output_tv_format(dxr2_t* instance, char* buffer)
  160. {
  161.   int format;
  162.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  163.   // get the format. if it's <0 => error
  164.   if (get_user(format, &(argBuffer->arg)) < 0) {
  165.     
  166.     return(-EFAULT);
  167.   }
  168.   
  169.   // check parameters
  170.   if ((format < DXR2_TVFORMAT_NTSC) || (format > DXR2_TVFORMAT_PAL)) {
  171.     
  172.     return(-EINVAL);
  173.   }
  174.   // OK, remember it for later
  175.   instance->currentOutputTvFormat = format;
  176.   
  177.   // do it!
  178.   switch(format) {
  179.   case DXR2_TVFORMAT_PAL:
  180.     
  181.     return(bt865_set_PAL_mode(instance->bt865Instance));
  182.     
  183.   case DXR2_TVFORMAT_NTSC:
  184.     return(bt865_set_NTSC_mode(instance->bt865Instance));
  185.   }
  186.   
  187.   // if we get here, it is an error
  188.   return(-EINVAL);
  189. }
  190. /**
  191.  *
  192.  * Set the source video format
  193.  *
  194.  * @param instance DXR2 instance to use
  195.  * @param buffer instance of dxr2_threeArg_t. 
  196.  *               arg1 should be one of DXR2_SRC_VIDEO_FREQ_30, DXR2_SRC_VIDEO_FREQ_25
  197.  *               arg2 should be x resolution
  198.  *               arg3 should be y resolution
  199.  *
  200.  * @return 0 on success, <0 on failure
  201.  *
  202.  */
  203. extern int dxr2_ioc_set_source_video_format(dxr2_t* instance, char* buffer)
  204. {
  205.   dxr2_threeArg_t* argBuffer = (dxr2_threeArg_t*) buffer;
  206.   int freq;
  207.   int xres;
  208.   int yres;
  209.   // get the frequency. if it's <0 => error
  210.   if (get_user(freq, &(argBuffer->arg1)) < 0) {
  211.     
  212.     return(-EFAULT);
  213.   }
  214.   if ((freq < DXR2_SRC_VIDEO_FREQ_30) || (freq > DXR2_SRC_VIDEO_FREQ_25)) {
  215.     
  216.     return(-EINVAL);
  217.   }
  218.   
  219.   // get the x & y resolutions
  220.   if (get_user(xres, &(argBuffer->arg2)) < 0) {
  221.     
  222.     return(-EFAULT);
  223.   }
  224.   if (get_user(yres, &(argBuffer->arg3)) < 0) {
  225.     
  226.     return(-EFAULT);
  227.   }
  228.   // disable the IRQ
  229.   DXR2_ENTER_CRITICAL(instance);
  230.   // store them
  231.   instance->currentSourceVideoFrequency = freq;
  232.   instance->currentSourceVideoXRes = xres;
  233.   instance->currentSourceVideoYRes = yres;
  234.   
  235.   // set it on the ziva
  236.   zivaDS_set_source_video_frequency(instance->zivaDSInstance, freq);
  237.   
  238.   // OK, reset the Ziva
  239.   if (instance->currentBitstreamType == DXR2_BITSTREAM_TYPE_MPEG_VOB) {
  240.     
  241.     if (instance->currentAudioMuteStatus == DXR2_AUDIO_MUTE_OFF) {
  242.       
  243.       pcm1723_set_mute_mode(instance->pcm1723Instance, PCM1723_MUTEON);
  244.     }
  245.     zivaDS_reset(instance->zivaDSInstance);
  246.     if (instance->currentAudioMuteStatus == DXR2_AUDIO_MUTE_OFF) {
  247.       
  248.       pcm1723_set_mute_mode(instance->pcm1723Instance, PCM1723_MUTEOFF);
  249.     }
  250.   }
  251.   // set the bitstream type
  252.   zivaDS_set_bitstream_type(instance->zivaDSInstance, instance->currentBitstreamType);
  253.   
  254.   // new play mode
  255.   zivaDS_new_play_mode(instance->zivaDSInstance);
  256.   // OK, set everything again
  257.   if (instance->currentBitstreamType == DXR2_BITSTREAM_TYPE_MPEG_VOB) {
  258.     // select subpicture stream
  259.     zivaDS_select_stream(instance->zivaDSInstance, 
  260.  ZIVADS_STREAM_SUBPICTURE, instance->currentSubPictureStream);
  261.     instance->hliFlag = 1;
  262.     
  263.     // select audio stream
  264.     zivaDS_select_stream(instance->zivaDSInstance, 
  265.  instance->currentAudioStreamType,
  266.  instance->currentAudioStream);
  267.   }
  268.   // enable the IRQ
  269.   DXR2_EXIT_CRITICAL(instance);
  270.   // OK
  271.   return(0);
  272. }
  273. /**
  274.  *
  275.  * Get device capabilities. This doesn't actually do anything yet, since
  276.  * I'm not quite sure what sort of things should be returned.
  277.  *
  278.  * @param instance Instance of the dxr2 to use
  279.  * @param buffer buffer to put capabilities in.
  280.  *
  281.  * @return 0 on success, <0 on failure
  282.  *
  283.  */
  284. extern int dxr2_ioc_get_capabilities(dxr2_t* instance, char* buffer)
  285. {
  286.   return(-EOPNOTSUPP);
  287. }
  288. /**
  289.  *
  290.  * Clear ziva video screen
  291.  *
  292.  * @param instance dxr2 instance to use
  293.  *
  294.  * @return 0 on success, <0 on failure
  295.  *
  296.  */
  297. extern int dxr2_ioc_clear_video(dxr2_t* instance)
  298. {
  299.   int status=0;
  300.   // disable the IRQ
  301.   DXR2_ENTER_CRITICAL(instance);
  302.   
  303.   // clear the video
  304.   status = zivaDS_clear_video(instance->zivaDSInstance);
  305.   
  306.   // reenable the IRQ
  307.   DXR2_EXIT_CRITICAL(instance);
  308.   
  309.   // OK
  310.   return(status);
  311. }
  312. /**
  313.  *
  314.  * Pause the current video stream if not already paused or stopped
  315.  *
  316.  * @param instance DXR2 instance to use
  317.  * 
  318.  * @return 0 on success, <0 on failure
  319.  *
  320.  */
  321. extern int dxr2_ioc_pause(dxr2_t* instance)
  322. {
  323.   int status= 0;
  324.   // are we already paused/stopped... if so, just return instantly
  325.   if ((instance->currentPlayMode == DXR2_PLAYMODE_PAUSED) ||
  326.       (instance->currentPlayMode == DXR2_PLAYMODE_STOPPED)) {
  327.     
  328.     return(0);
  329.   }
  330.   // disable the IRQ
  331.   DXR2_ENTER_CRITICAL(instance);
  332.   
  333.   // are we using the tc6807af?
  334.   if ((instance->zivaDSInstance->zivaDSType == ZIVADS_TYPE_1) &&
  335.       (instance->vxp524Instance->bmInUse)) {
  336.   
  337.     dxr2_queue_deferred(DXR2_QUEUE_PAUSED, 0, 0, 0);
  338.   }
  339.   else {
  340.     
  341.     status = zivaDS_pause(instance->zivaDSInstance);
  342.   }
  343.   
  344.   // set the play mode
  345.   instance->currentPlayMode = DXR2_PLAYMODE_PAUSED;
  346.   
  347.   // enable the IRQ
  348.   DXR2_EXIT_CRITICAL(instance);
  349.   
  350.   // return status
  351.   return(status);
  352. }
  353. /**
  354.  *
  355.  * Set the audio volume
  356.  *
  357.  * @param instance DXR2 instance to use
  358.  * @param buffer instance of dxr2_oneArg_t. 
  359.  *               arg should be volume to set 
  360.  *               (0<=arg<=19, where 0 is min volume)
  361.  *
  362.  * @return 0 on success, <0 on failure
  363.  *
  364.  */
  365. extern int dxr2_ioc_set_audio_volume(dxr2_t* instance, char* buffer)
  366. {
  367.   int status = 0;
  368.   int volume;
  369.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  370.   // get the format. if it's <0 => error
  371.   if (get_user(volume, &(argBuffer->arg)) < 0) {
  372.     
  373.     return(-EFAULT);
  374.   }
  375.   // check parameters
  376.   if ((volume < 0) || (volume > 19)) {
  377.     
  378.     return(-EINVAL);
  379.   }
  380.   
  381.   // is audio muted?
  382.   if (instance->currentAudioMuteStatus == DXR2_AUDIO_MUTE_ON) {
  383.     
  384.     return(0);
  385.   }
  386.   // are we using the tc6807af?
  387.   if ((instance->zivaDSInstance->zivaDSType == ZIVADS_TYPE_1) &&
  388.       (instance->vxp524Instance->bmInUse)) {
  389.   
  390.     dxr2_queue_deferred(DXR2_QUEUE_SETVOLUME, volume, 0, 0);
  391.   }
  392.   else {
  393.     // OK, set the volume
  394.     status = zivaDS_set_audio_volume(instance->zivaDSInstance, volume);
  395.   }
  396.   // remember volume for later
  397.   instance->currentAudioVolume = volume;
  398.   
  399.   // return status
  400.   return(status);
  401. }
  402. /**
  403.  *
  404.  * Set the output aspect ratio
  405.  *
  406.  * @param instance DXR2 instance to use
  407.  * @param buffer instance of dxr2_oneArg_t. 
  408.  *               arg is one of DXR2_ASPECTRATIO_4_3 or DXR2_ASPECTRATIO_16_9
  409.  *
  410.  * @return 0 on success, <0 on failure
  411.  *
  412.  */
  413. extern int dxr2_ioc_set_output_aspect_ratio(dxr2_t* instance, char* buffer)
  414. {
  415.   int aspect;
  416.   int status = 0;
  417.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  418.   // get the aspect. if it's <0 => error
  419.   if (get_user(aspect, &(argBuffer->arg)) < 0) {
  420.     
  421.     return(-EFAULT);
  422.   }
  423.   // check it
  424.   if ((aspect < DXR2_ASPECTRATIO_4_3) || (aspect > DXR2_ASPECTRATIO_16_9 )) {
  425.     
  426.     return(-EINVAL);
  427.   }
  428.   // disable the IRQ
  429.   DXR2_ENTER_CRITICAL(instance);  
  430.   // do it!
  431.   status = zivaDS_set_output_aspect_ratio(instance->zivaDSInstance, aspect);
  432.   // remember it
  433.   instance->currentOutputAspectRatio = aspect;
  434.   // enable the IRQ
  435.   DXR2_EXIT_CRITICAL(instance);  
  436.   // return status
  437.   return(status);
  438. }
  439. /**
  440.  *
  441.  * Abort playback
  442.  *
  443.  * @param instance DXR2 instance to use
  444.  * 
  445.  * @return 0 on success, <0 on failure
  446.  *
  447.  */
  448. extern int dxr2_ioc_abort(dxr2_t* instance)
  449. {
  450.   int status=0;
  451.   // disable the IRQ
  452.   DXR2_ENTER_CRITICAL(instance);
  453.   
  454.   // issue the ABORT command
  455.   status = zivaDS_abort(instance->zivaDSInstance);
  456.   
  457.   // flush the BM stuff
  458.   vxp524_bm_flush(instance->vxp524Instance);
  459.   // set the play mode
  460.   instance->currentPlayMode = DXR2_PLAYMODE_STOPPED;
  461.   
  462.   // enable the IRQ
  463.   DXR2_EXIT_CRITICAL(instance);
  464.   
  465.   // return status
  466.   return(status);
  467. }
  468. /**
  469.  *
  470.  * Stop playback
  471.  *
  472.  * @param instance DXR2 instance to use
  473.  * 
  474.  * @return 0 on success, <0 on failure
  475.  *
  476.  */
  477. extern int dxr2_ioc_stop(dxr2_t* instance)
  478. {
  479.   int status=0;
  480.   // are we already stopped... if so, just return instantly
  481.   if (instance->currentPlayMode == DXR2_PLAYMODE_STOPPED) {
  482.     
  483.     return(0);
  484.   }
  485.   // mute the DAC if it isn't already
  486.   if (instance->currentAudioMuteStatus == DXR2_AUDIO_MUTE_OFF) {
  487.     pcm1723_set_mute_mode(instance->pcm1723Instance, PCM1723_MUTEON);
  488.   }
  489.   
  490.   // issue the ABORT command
  491.   status = zivaDS_abort(instance->zivaDSInstance);
  492.   
  493.   // flush the BM stuff
  494.   vxp524_bm_flush(instance->vxp524Instance);
  495.   // turn bit 4 of ASIC off
  496.   dxr2_asic_set_bits(instance, 0x10, 0);
  497.   // set the play mode
  498.   instance->currentPlayMode = DXR2_PLAYMODE_STOPPED;
  499.   
  500.   // unmute the DAC, if it wasn't before
  501.   if (instance->currentAudioMuteStatus == DXR2_AUDIO_MUTE_OFF) {
  502.     pcm1723_set_mute_mode(instance->pcm1723Instance, PCM1723_MUTEOFF);
  503.   }
  504.   
  505.   // return status
  506.   return(status);
  507. }
  508. /**
  509.  * 
  510.  * Enable subpicture
  511.  *
  512.  * @param instance DXR2 instance to use
  513.  * @param buffer instance of dxr2_oneArg_t. 
  514.  *               arg should be one of DXR2_SUBPICTURE_OFF or
  515.  *               DXR2_SUBPICTURE_ON
  516.  * 
  517.  * @return 0 on success, <0 on failure
  518.  *
  519.  */
  520. extern int dxr2_ioc_enable_subpicture(dxr2_t* instance, char* buffer)
  521. {
  522.   int status=0;
  523.   int value;
  524.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  525.   // get the value. if it's <0 => error
  526.   if (get_user(value, &(argBuffer->arg)) < 0) {
  527.     
  528.     return(-EFAULT);
  529.   }
  530.   // check param
  531.   if ((value < DXR2_SUBPICTURE_OFF) || (value > DXR2_SUBPICTURE_ON)) {
  532.     
  533.     return(-EINVAL);
  534.   }
  535.   // disable the IRQ
  536.   DXR2_ENTER_CRITICAL(instance);
  537.   
  538.   // are we using the tc6807af?
  539.   if ((instance->zivaDSInstance->zivaDSType == ZIVADS_TYPE_1) &&
  540.       (instance->vxp524Instance->bmInUse)) {
  541.   
  542.     dxr2_queue_deferred(DXR2_QUEUE_ENABLESUBPICTURE, value, 0, 0);
  543.   }
  544.   else {
  545.     // OK, enable it
  546.     status = zivaDS_enable_subpicture(instance->zivaDSInstance, value);
  547.   }
  548.   // enable the IRQ
  549.   DXR2_EXIT_CRITICAL(instance);
  550.   
  551.   // return status
  552.   return(status);
  553. }
  554. /**
  555.  *
  556.  * Slow Forwards
  557.  *
  558.  * @param instance DXR2 instance to use
  559.  * @param buffer instance of dxr2_oneArg_t. 
  560.  *               arg is one of DXR2_SLOWRATE_2x, or DXR2_SLOWRATE_3x, 
  561.  *               DXR2_SLOWRATE_4x, DXR2_SLOWRATE_5x, DXR2_SLOWRATE_6x
  562.  * 
  563.  * @return 0 on success, <0 on failure
  564.  *
  565.  */
  566. extern int dxr2_ioc_slow_forwards(dxr2_t* instance, char* buffer)
  567. {
  568.   int status=0;
  569.   int value;
  570.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  571.   // get the value. if it's <0 => error
  572.   if (get_user(value, &(argBuffer->arg)) < 0) {
  573.     
  574.     return(-EFAULT);
  575.   }
  576.   // check param
  577.   if ((value < DXR2_SLOWRATE_2x) || (value > DXR2_SLOWRATE_6x)) {
  578.     
  579.     return(-EINVAL);
  580.   }
  581.   // disable the IRQ
  582.   DXR2_ENTER_CRITICAL(instance);
  583.   
  584.   // OK, do it
  585.   status = zivaDS_slow_forwards(instance->zivaDSInstance, value);
  586.   // remember values
  587.   instance->currentSlowRate = value;
  588.   instance->currentPlayMode = DXR2_PLAYMODE_SLOWFORWARDS;
  589.   // enable the IRQ
  590.   DXR2_EXIT_CRITICAL(instance);
  591.   
  592.   // return status
  593.   return(status);
  594. }
  595. /**
  596.  *
  597.  * Slow Backwards
  598.  *
  599.  * @param instance DXR2 instance to use
  600.  * @param buffer instance of dxr2_oneArg_t. 
  601.  *               arg is one of DXR2_SLOWRATE_2x, or DXR2_SLOWRATE_3x, 
  602.  *               DXR2_SLOWRATE_4x, DXR2_SLOWRATE_5x, DXR2_SLOWRATE_6x
  603.  * 
  604.  * @return 0 on success, <0 on failure
  605.  *
  606.  */
  607. extern int dxr2_ioc_slow_backwards(dxr2_t* instance, char* buffer)
  608. {
  609.   int status=0;
  610.   int value;
  611.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  612.   // get the value. if it's <0 => error
  613.   if (get_user(value, &(argBuffer->arg)) < 0) {
  614.     
  615.     return(-EFAULT);
  616.   }
  617.   // check param
  618.   if ((value < DXR2_SLOWRATE_2x) || (value > DXR2_SLOWRATE_6x)) {
  619.     
  620.     return(-EINVAL);
  621.   }
  622.   // OK, abort playback
  623.   zivaDS_abort(instance->zivaDSInstance);
  624.   // disable the IRQ
  625.   DXR2_ENTER_CRITICAL(instance);
  626.   
  627.   // OK, do it
  628.   status = zivaDS_slow_backwards(instance->zivaDSInstance, value);
  629.   // remember values
  630.   instance->currentSlowRate = value;
  631.   instance->currentPlayMode = DXR2_PLAYMODE_SLOWBACKWARDS;
  632.   // enable the IRQ
  633.   DXR2_EXIT_CRITICAL(instance);
  634.   
  635.   // return status
  636.   return(status);
  637. }
  638. /**
  639.  *
  640.  * Set source aspect ratio
  641.  *
  642.  * @param instance DXR2 instance to use
  643.  * @param buffer instance of dxr2_oneArg_t. 
  644.  *               arg is one of DXR2_ASPECTRATIO_4_3, or DXR2_ASPECTRATIO_16_9
  645.  * 
  646.  * @return 0 on success, <0 on failure
  647.  *
  648.  */
  649. extern int dxr2_ioc_set_source_aspect_ratio(dxr2_t* instance, char* buffer)
  650. {
  651.   int status=0;
  652.   int value;
  653.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  654.   // get the value. if it's <0 => error
  655.   if (get_user(value, &(argBuffer->arg)) < 0) {
  656.     
  657.     return(-EFAULT);
  658.   }
  659.   // check param
  660.   if ((value < DXR2_ASPECTRATIO_4_3) || (value > DXR2_ASPECTRATIO_16_9)) {
  661.     
  662.     return(-EINVAL);
  663.   }
  664.   // disable the IRQ
  665.   DXR2_ENTER_CRITICAL(instance);
  666.   
  667.   // OK, do it
  668.   status = zivaDS_set_source_aspect_ratio(instance->zivaDSInstance, value);
  669.   // enable the IRQ
  670.   DXR2_EXIT_CRITICAL(instance);
  671.   
  672.   // return status
  673.   return(status);
  674. }
  675. /**
  676.  * 
  677.  * Set aspect ratio mode
  678.  *
  679.  * @param instance DXR2 instance to use
  680.  * @param buffer instance of dxr2_oneArg_t
  681.  *                  arg is one of DXR2_ASPECTRATIOMODE_NORMAL,
  682.  *                                DXR2_ASPECTRATIOMODE_PAN_SCAN,
  683.  *                                DXR2_ASPECTRATIOMODE_LETTERBOX
  684.  *
  685.  * @return 0 on success, <0 on failure
  686.  *
  687.  */
  688. extern int dxr2_ioc_set_aspect_ratio_mode(dxr2_t* instance, char* buffer)
  689. {
  690.   int status=0;
  691.   int value;
  692.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  693.   // get the value. if it's <0 => error
  694.   if (get_user(value, &(argBuffer->arg)) < 0) {
  695.     
  696.     return(-EFAULT);
  697.   }
  698.   // check param
  699.   if ((value < DXR2_ASPECTRATIOMODE_NORMAL) || (value > DXR2_ASPECTRATIOMODE_LETTERBOX)) {
  700.     
  701.     return(-EINVAL);
  702.   }
  703.   // disable the IRQ
  704.   DXR2_ENTER_CRITICAL(instance);
  705.   
  706.   // OK, do it
  707.   status = zivaDS_set_aspect_ratio_mode(instance->zivaDSInstance, value);
  708.   // remember it
  709.   instance->currentAspectRatioMode = value;
  710.   // enable the IRQ
  711.   DXR2_EXIT_CRITICAL(instance);
  712.   
  713.   // return status
  714.   return(status);
  715. }
  716. /**
  717.  *
  718.  * Single step the picture
  719.  *
  720.  * @param instance DXR2 instance to use
  721.  *
  722.  * @return 0 on success, <0 on failure
  723.  *
  724.  */
  725. extern int dxr2_ioc_single_step(dxr2_t* instance)
  726. {
  727.   int status=0;
  728.   // disable the IRQ
  729.   DXR2_ENTER_CRITICAL(instance);
  730.   
  731.   // OK, do it
  732.   status = zivaDS_single_step(instance->zivaDSInstance);
  733.   // remember it
  734.   instance->currentPlayMode = DXR2_PLAYMODE_SINGLESTEP;
  735.   // enable the IRQ
  736.   DXR2_EXIT_CRITICAL(instance);
  737.   
  738.   // return status
  739.   return(status);
  740. }
  741. /**
  742.  *
  743.  * Reverse play
  744.  *
  745.  * @param instance DXR2 instance to use
  746.  *
  747.  * @return 0 on success, <0 on failure
  748.  *
  749.  */
  750. extern int dxr2_ioc_reverse_play(dxr2_t* instance)
  751. {
  752.   int status=0;
  753.   // if we're playing currently, ABORT
  754.   if (instance->currentPlayMode == DXR2_PLAYMODE_PLAY) {
  755.     
  756.     status = dxr2_ioc_abort(instance);
  757.   }
  758.   // disable the IRQ
  759.   DXR2_ENTER_CRITICAL(instance);
  760.   
  761.   // OK, do it
  762.   status = zivaDS_reverse_play(instance->zivaDSInstance);
  763.   // remember it
  764.   instance->currentPlayMode = DXR2_PLAYMODE_REVERSEPLAY;
  765.   // enable the IRQ
  766.   DXR2_EXIT_CRITICAL(instance);
  767.   
  768.   // return status
  769.   return(status);
  770. }
  771. /**
  772.  *
  773.  * Set the subpicture palette
  774.  *
  775.  * @param instance DXR2 instance to use
  776.  * @param buffer instance of dxr2_palette_t
  777.  *
  778.  * @return 0 on success, <0 on failure
  779.  *
  780.  */
  781. extern int dxr2_ioc_set_subpicture_palettes(dxr2_t* instance, char* buffer)
  782. {
  783.   int status=0;
  784.   char* paletteData[16*4];
  785.   int i;
  786.   // copy the data from the user
  787.   if (copy_from_user(paletteData, buffer, 16*4) > 0) {
  788.     
  789.     return(-EFAULT);
  790.   }
  791.   // disable the IRQ
  792.   DXR2_ENTER_CRITICAL(instance);
  793.   
  794.   // OK, do it
  795.   status = zivaDS_set_subpicture_palettes(instance->zivaDSInstance, (int*) paletteData);
  796.   // enable the IRQ
  797.   DXR2_EXIT_CRITICAL(instance);
  798.   
  799.   // return status
  800.   return(status);
  801. }
  802. /**
  803.  *
  804.  * Get the challenge key from the DXR2
  805.  *
  806.  * @param instance Instance of the DXR2 to use
  807.  * @param buffer instance of dxr2_challengeKey_t
  808.  *
  809.  * @return 0 on success, <0 on failure
  810.  *
  811.  */
  812. extern int dxr2_ioc_get_challenge_key(dxr2_t* instance, char* buffer)
  813. {
  814.   char tmpBuf[10];
  815.   int status = 0;
  816.   dxr2_challengeKey_t* keyBuffer = (dxr2_challengeKey_t*) buffer;
  817.   // OK, do it
  818.   switch(instance->zivaDSInstance->zivaDSType) {
  819.   case ZIVADS_TYPE_1:
  820.     
  821.     status = dxr2_tc6807af_get_challenge_key(instance->tc6807afInstance, tmpBuf);
  822.     break;
  823.     
  824.   case ZIVADS_TYPE_3:
  825.   case ZIVADS_TYPE_4:
  826.     status = zivaDS_get_challenge_key(instance->zivaDSInstance, tmpBuf);
  827.     break;
  828.     
  829.   default:
  830.     return(-EIO);
  831.   }
  832.   
  833.   // if status != OK => return now
  834.   if (status != 0) {
  835.     
  836.     return(status);
  837.   }
  838.   // OK, copy data to user
  839.   if (copy_to_user(&(keyBuffer->key), tmpBuf, 10) > 0) {
  840.     
  841.     return(-EFAULT);
  842.   }
  843.   
  844.   // OK
  845.   return(0);
  846. }
  847. /**
  848.  *
  849.  * Send the challenge key to the DXR2
  850.  *
  851.  * @param instance Instance of the DXR2 to use
  852.  * @param buffer instance of dxr2_challengeKey_t
  853.  *
  854.  * @return 0 on success, <0 on failure
  855.  *
  856.  */
  857. extern int dxr2_ioc_send_challenge_key(dxr2_t* instance, char* buffer)
  858. {
  859.   char tmpBuf[10];
  860.   int status = 0;
  861.   dxr2_challengeKey_t* keyBuffer = (dxr2_challengeKey_t*) buffer;
  862.   int i;
  863.   // get data from user
  864.   if (copy_from_user(tmpBuf, &(keyBuffer->key), 10) > 0) {
  865.     
  866.     return(-EFAULT);
  867.   }
  868.   // OK, do it
  869.   switch(instance->zivaDSInstance->zivaDSType) {
  870.   case ZIVADS_TYPE_1:
  871.     
  872.     status = dxr2_tc6807af_send_challenge_key(instance->tc6807afInstance, tmpBuf);
  873.     break;
  874.     
  875.   case ZIVADS_TYPE_3:
  876.   case ZIVADS_TYPE_4:
  877.     status = zivaDS_send_challenge_key(instance->zivaDSInstance, tmpBuf);
  878.     break;
  879.     
  880.   default:
  881.     return(-EIO);
  882.   }
  883.   // return status
  884.   return(status);
  885. }
  886. /**
  887.  *
  888.  * Get the response key from the DXR2
  889.  *
  890.  * @param instance Instance of the DXR2 to use
  891.  * @param buffer instance of dxr2_responseKey_t
  892.  *
  893.  * @return 0 on success, <0 on failure
  894.  *
  895.  */
  896. extern int dxr2_ioc_get_response_key(dxr2_t* instance, char* buffer)
  897. {
  898.   char tmpBuf[5];
  899.   int status = 0;
  900.   dxr2_responseKey_t* keyBuffer = (dxr2_responseKey_t*) buffer;
  901.   // OK, do it
  902.   switch(instance->zivaDSInstance->zivaDSType) {
  903.   case ZIVADS_TYPE_1:
  904.     
  905.     status = dxr2_tc6807af_get_response_key(instance->tc6807afInstance, tmpBuf);
  906.     break;
  907.     
  908.   case ZIVADS_TYPE_3:
  909.   case ZIVADS_TYPE_4:
  910.     status = zivaDS_get_response_key(instance->zivaDSInstance, tmpBuf);
  911.     break;
  912.     
  913.   default:
  914.     return(-EFAULT);
  915.   }
  916.   
  917.   // if status != OK => return now
  918.   if (status != 0) {
  919.     
  920.     return(status);
  921.   }
  922.   // OK, copy data to user
  923.   if (copy_to_user(&(keyBuffer->key), tmpBuf, 5) > 0) {
  924.     
  925.     return(-EIO);
  926.   }
  927.   
  928.   // OK
  929.   return(0);
  930. }
  931. /**
  932.  *
  933.  * Send the response key to the DXR2
  934.  *
  935.  * @param instance Instance of the DXR2 to use
  936.  * @param buffer instance of dxr2_responseKey_t
  937.  *
  938.  * @return 0 on success, <0 on failure
  939.  *
  940.  */
  941. extern int dxr2_ioc_send_response_key(dxr2_t* instance, char* buffer)
  942. {
  943.   char tmpBuf[5];
  944.   int status = 0;
  945.   dxr2_responseKey_t* keyBuffer = (dxr2_responseKey_t*) buffer;
  946.   // get data from user
  947.   if (copy_from_user(tmpBuf, &(keyBuffer->key), 5) > 0) {
  948.     
  949.     return(-EFAULT);
  950.   }
  951.   // OK, do it
  952.   switch(instance->zivaDSInstance->zivaDSType) {
  953.   case ZIVADS_TYPE_1:
  954.     
  955.     status = dxr2_tc6807af_send_response_key(instance->tc6807afInstance, tmpBuf);
  956.     break;
  957.     
  958.   case ZIVADS_TYPE_3:
  959.   case ZIVADS_TYPE_4:
  960.     status = zivaDS_send_response_key(instance->zivaDSInstance, tmpBuf);
  961.     break;
  962.     
  963.   default:
  964.     return(-EIO);
  965.   }
  966.   // return status
  967.   return(status);
  968. }
  969. /**
  970.  *
  971.  * Send the disc key to the DXR2
  972.  *
  973.  * @param instance Instance of the DXR2 to use
  974.  * @param buffer instance of dxr2_discKey_t
  975.  *
  976.  * @return 0 on success, <0 on failure
  977.  *
  978.  */
  979. extern int dxr2_ioc_send_disc_key(dxr2_t* instance, char* buffer)
  980. {
  981.   char tmpBuf[0x800];
  982.   int status = 0;
  983.   dxr2_discKey_t* keyBuffer = (dxr2_discKey_t*) buffer;
  984.   // get data from user
  985.   if (copy_from_user(tmpBuf, &(keyBuffer->key), 0x800) > 0) {
  986.     
  987.     return(-EFAULT);
  988.   }
  989.   // OK, do it
  990.   switch(instance->zivaDSInstance->zivaDSType) {
  991.   case ZIVADS_TYPE_1:
  992.     
  993.     status = dxr2_tc6807af_send_disc_key(instance->tc6807afInstance, tmpBuf);
  994.     break;
  995.     
  996.   case ZIVADS_TYPE_3:
  997.   case ZIVADS_TYPE_4:
  998.     status = dxr2_zivaDS_send_disc_key(instance->zivaDSInstance, tmpBuf);
  999.     break;
  1000.     
  1001.   default:
  1002.     return(-EIO);
  1003.   }
  1004.   // return status
  1005.   return(status);
  1006. }
  1007. /**
  1008.  * UNSURE.... why the tc6807af has a 6 byte key, but the ziva has a 5 byte one (ignores byte0)
  1009.  * Send the title key to the DXR2
  1010.  *
  1011.  * @param instance Instance of the DXR2 to use
  1012.  * @param buffer instance of dxr2_titleKey_t
  1013.  *
  1014.  * @return 0 on success, <0 on failure
  1015.  *
  1016.  */
  1017. extern int dxr2_ioc_send_title_key(dxr2_t* instance, char* buffer)
  1018. {
  1019.   char tmpBuf[6];
  1020.   int status = 0;
  1021.   dxr2_titleKey_t* keyBuffer = (dxr2_titleKey_t*) buffer;
  1022.   // OK, do it
  1023.   switch(instance->zivaDSInstance->zivaDSType) {
  1024.   case ZIVADS_TYPE_1:
  1025.     // get data from user
  1026.     if (copy_from_user(tmpBuf, &(keyBuffer->key), 6) > 0) {
  1027.       
  1028.       return(-EFAULT);
  1029.     }
  1030.     
  1031.     status = dxr2_tc6807af_send_title_key(instance->tc6807afInstance, tmpBuf);
  1032.     break;
  1033.     
  1034.   case ZIVADS_TYPE_3:
  1035.   case ZIVADS_TYPE_4:
  1036.     // get data from user
  1037.     if (copy_from_user(tmpBuf, (&(keyBuffer->key)) + 1, 5) > 0) {
  1038.       
  1039.       return(-EFAULT);
  1040.     }
  1041.     status = zivaDS_send_title_key(instance->zivaDSInstance, tmpBuf);
  1042.     break;
  1043.     
  1044.   default:
  1045.     return(-EIO);
  1046.   }
  1047.   // return status
  1048.   return(status);
  1049. }
  1050. /**
  1051.  * UNSURE
  1052.  * Set decryption mode
  1053.  *
  1054.  * @param instance Instance of the DXR2 to use
  1055.  * @param buffer instance of dxr2_oneArg_t
  1056.  *               arg is one of DXR2_CSSDECRMODE_OFF, DXR2_CSSDECRMODE_ON
  1057.  *
  1058.  * @return 0 on success, <0 on failure
  1059.  *
  1060.  */
  1061. extern int dxr2_ioc_set_decryption_mode(dxr2_t* instance, char* buffer)
  1062. {
  1063.   int mode;
  1064.   int status = 0;
  1065.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1066.   // get data from user
  1067.   if (get_user(mode, &(argBuffer->arg)) < 0) {
  1068.     
  1069.     return(-EFAULT);
  1070.   }
  1071.   // check params
  1072.   if ((mode < 0) || (mode > 1)) {
  1073.     
  1074.     return(-EINVAL);
  1075.   }
  1076.   // OK, do it
  1077.   switch(instance->zivaDSInstance->zivaDSType) {
  1078.   case ZIVADS_TYPE_1:
  1079.     
  1080.     status = dxr2_tc6807af_set_decryption_mode(instance->tc6807afInstance, mode);
  1081.     break;
  1082.     
  1083.   case ZIVADS_TYPE_3:
  1084.   case ZIVADS_TYPE_4:
  1085.     status = zivaDS_set_decryption_mode(instance->zivaDSInstance, mode);
  1086.     break;
  1087.     
  1088.   default:
  1089.     return(-EIO);
  1090.   }
  1091.   // return status
  1092.   return(status);
  1093. }
  1094. /**
  1095.  *
  1096.  * Load ucode into the Ziva & initialise it
  1097.  *
  1098.  * @param instance DXR2 instance to use
  1099.  * @param buffer instance of dxr2_uCode_t
  1100.  *
  1101.  * @return 0 on success, <0 on failure
  1102.  *
  1103.  */
  1104. extern int dxr2_ioc_init_zivaDS(dxr2_t* instance, char* buffer)
  1105. {
  1106.   int status = 0;
  1107.   char* tmpBuffer;
  1108.   int endTime;
  1109.   int bufLength;
  1110.   dxr2_uCode_t* argBuffer = (dxr2_uCode_t*) buffer;
  1111.   // OK, get buffer size
  1112.   if (get_user(bufLength, &(argBuffer->uCodeLength)) < 0) {
  1113.     
  1114.     return(-EFAULT);
  1115.   }
  1116.   // get some memory
  1117.   if ((tmpBuffer = (char*) vmalloc(bufLength)) == NULL) {
  1118.     
  1119.     return(-ENOMEM);
  1120.   }
  1121.   // get buffer from user
  1122.   copy_from_user(tmpBuffer, argBuffer + sizeof(int), bufLength);
  1123.   // mute the DAC
  1124.   pcm1723_set_mute_mode(instance->pcm1723Instance, PCM1723_MUTEON);
  1125.   
  1126.   // reset bus mastering
  1127.   vxp524_bm_reset(instance->vxp524Instance);
  1128.   // some ASIC twiddling (Set bit 4)
  1129.   dxr2_asic_set_bits(instance, 0x10, 0x10);
  1130.   udelay(2);
  1131.   // disable auto-increment on ziva
  1132.   zivaDS_set_bits(instance->zivaDSInstance, ZIVADS_REGCONTROL, 4, 4);
  1133.   zivaDS_set_bits(instance->zivaDSInstance, ZIVADS_REGCONTROL, 4, 0);
  1134.   // some more ASIC twiddling
  1135.   dxr2_asic_set_bits(instance, 1, 0);
  1136.   dxr2_asic_set_bits(instance, 1, 1);
  1137.   dxr2_asic_set_bits(instance, 8, 0);
  1138.   dxr2_asic_set_bits(instance, 8, 8);
  1139.   dxr2_asic_set_bits(instance, 0x20, 0);
  1140.   dxr2_asic_set_bits(instance, 0x20, 0x20);
  1141.   // OK, call the Ziva setup routine
  1142.   if ((status = zivaDS_init(instance->zivaDSInstance, tmpBuffer)) < 0) {
  1143.     vfree(tmpBuffer);
  1144.     return(status);
  1145.   }
  1146.   
  1147.   // loop for 5 centisecs (ish)
  1148.   endTime = jiffies + ((5*HZ)/100);
  1149.   while(jiffies < endTime) {
  1150.     
  1151.     // let other things in
  1152.     schedule();
  1153.   }
  1154.   // set the ASIC to 0xC3
  1155.   dxr2_asic_set_reg(instance, 0xC3);
  1156.   // loop for 20 centisecs (ish)
  1157.   endTime = jiffies + ((20*HZ)/100);
  1158.   while(jiffies < endTime) {
  1159.     
  1160.     // let other things in
  1161.     schedule();
  1162.   }
  1163.   // set bits 3,4&5 of ASIC
  1164.   dxr2_asic_set_bits(instance, 0x38, 0x38);
  1165.   // unmute the DAC
  1166.   pcm1723_set_mute_mode(instance->pcm1723Instance, PCM1723_MUTEOFF);
  1167.   // free the memory again
  1168.   vfree(tmpBuffer);
  1169.   
  1170.   // OK, ziva is now initialised
  1171.   instance->zivaDSInitialised = 1;
  1172.   // return status
  1173.   return(status);
  1174. }
  1175. /**
  1176.  * UNSURE
  1177.  * Scan (fastforward/fastbackward)
  1178.  *
  1179.  * @param instance dxr2 instance to use
  1180.  * @param buffer instance of dxr2_twoArg_t, 
  1181.  *       arg1 = scan operation  ... ??
  1182.  *       arg2 = ??
  1183.  *
  1184.  * @return 0 on success, <0 on failure
  1185.  *
  1186.  */
  1187. extern int dxr2_ioc_scan_mode(dxr2_t* instance, char* buffer)
  1188. {
  1189.   int scanOp;
  1190.   int scanParam;
  1191.   int status = 0;
  1192.   dxr2_twoArg_t* argBuffer = (dxr2_twoArg_t*) buffer;
  1193.   // OK, get args
  1194.   if (get_user(scanOp, &(argBuffer->arg1)) < 0) {
  1195.     
  1196.     return(-EFAULT);
  1197.   }
  1198.   if (get_user(scanParam, &(argBuffer->arg2)) < 0) {
  1199.     
  1200.     return(-EFAULT);
  1201.   }
  1202.   // check parameters
  1203.   if ((scanOp < 0) || (scanOp > 2)) {
  1204.     
  1205.     return(-EINVAL);
  1206.   }
  1207.   if ((scanParam < 0) || (scanParam > 3)) {
  1208.     
  1209.     return(-EINVAL);
  1210.   }
  1211.   // disable the IRQ
  1212.   DXR2_ENTER_CRITICAL(instance);
  1213.   // are we using the tc6807af?
  1214.   if ((instance->zivaDSInstance->zivaDSType == ZIVADS_TYPE_1) &&
  1215.       (instance->vxp524Instance->bmInUse)) {
  1216.   
  1217.     dxr2_queue_deferred(DXR2_QUEUE_SCANMODE, scanOp, scanParam, 0);
  1218.   }
  1219.   else {
  1220.     
  1221.     status = zivaDS_scan_mode(instance->zivaDSInstance, scanOp, scanParam);
  1222.   }
  1223.   
  1224.   // remember things
  1225.   instance->currentPlayMode = DXR2_PLAYMODE_SCAN;
  1226.   instance->currentScanOp = scanOp;
  1227.   instance->currentScanParam = scanParam;
  1228.   
  1229.   // enable the IRQ
  1230.   DXR2_EXIT_CRITICAL(instance);
  1231.   
  1232.   // OK
  1233.   return(status);
  1234. }
  1235.   
  1236. /**
  1237.  *
  1238.  * Set bt865 Macrovision mode
  1239.  *
  1240.  * @param instance dxr2 instance to use
  1241.  * @param buffer instance of dxr2_oneArg_t, arg = one of:
  1242.  *             DXR2_MACROVISION_OFF, DXR2_MACROVISION_1, DXR2_MACROVISION_2,
  1243.  *             DXR2_MACROVISION_3, DXR2_MACROVISION_4
  1244.  *
  1245.  */
  1246. extern int dxr2_ioc_set_macrovision_mode(dxr2_t* instance, char* buffer)
  1247. {
  1248.   int mode;
  1249.   int status = 0;
  1250.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1251.   // OK, get args
  1252.   if (get_user(mode, &(argBuffer->arg)) < 0) {
  1253.     
  1254.     return(-EFAULT);
  1255.   }
  1256.   // check parameters
  1257.   if ((mode < DXR2_MACROVISION_OFF) || (mode > DXR2_MACROVISION_4)) {
  1258.     
  1259.     return(-EINVAL);
  1260.   }
  1261.   
  1262.   // do it!
  1263.   return(bt865_set_macrovision_mode(instance->bt865Instance, mode, 
  1264.     instance->currentSourceVideoFrequency));
  1265. }
  1266. /**
  1267.  *
  1268.  * Reset DXR2
  1269.  *
  1270.  * @param instance DXR2 instance to use
  1271.  * 
  1272.  * @return 0 on success, <0 on failure
  1273.  *
  1274.  */
  1275. extern int dxr2_ioc_reset(dxr2_t* instance)
  1276. {
  1277.   int status=0;
  1278.   int tmp;
  1279.   dxr2_oneArg_t tmpParams;
  1280.   // disable the IRQ
  1281.   DXR2_ENTER_CRITICAL(instance);
  1282.   //  reset
  1283.   if (instance->currentAudioMuteStatus == DXR2_AUDIO_MUTE_OFF) {
  1284.     
  1285.     pcm1723_set_mute_mode(instance->pcm1723Instance, PCM1723_MUTEON);
  1286.   }
  1287.   zivaDS_reset(instance->zivaDSInstance);
  1288.   if (instance->currentAudioMuteStatus == DXR2_AUDIO_MUTE_OFF) {
  1289.     
  1290.     pcm1723_set_mute_mode(instance->pcm1723Instance, PCM1723_MUTEOFF);
  1291.   }
  1292.   
  1293.   // flush the BM stuff
  1294.   vxp524_bm_reset(instance->vxp524Instance);
  1295.   // turn bit 4 of ASIC off
  1296.   dxr2_asic_set_bits(instance, 0x10, 0);
  1297.   // set the play mode
  1298.   instance->currentPlayMode = DXR2_PLAYMODE_STOPPED;
  1299.   // turn CSS off.
  1300.   switch(instance->zivaDSInstance->zivaDSType) {
  1301.   case ZIVADS_TYPE_1:
  1302.     
  1303.     status = dxr2_tc6807af_set_decryption_mode(instance->tc6807afInstance, TC6807AF_CSSDECRMODE_OFF);
  1304.     break;
  1305.     
  1306.   case ZIVADS_TYPE_3:
  1307.   case ZIVADS_TYPE_4:
  1308.     status = zivaDS_set_decryption_mode(instance->zivaDSInstance, ZIVADS_CSSDECRMODE_OFF);
  1309.     break;
  1310.     
  1311.   default:
  1312.     return(-EIO);
  1313.   }
  1314.   
  1315.   // enable the IRQ
  1316.   DXR2_EXIT_CRITICAL(instance);
  1317.   
  1318.   // return status
  1319.   return(status);
  1320. }
  1321. /**
  1322.  *
  1323.  * Set bitstream type
  1324.  *
  1325.  * @param instance DXR2 instance to use
  1326.  * @param buffer instance of dxr2_oneArg_t
  1327.  *          arg is one of DXR2_BITSTREAM_TYPE_MPEG_VOB,
  1328.  *                        DXR2_BITSTREAM_TYPE_CDROM_VCD, DXR2_BITSTREAM_TYPE_MPEG_VCD,
  1329.  *                        DXR2_BITSTREAM_TYPE_CDDA, DXR2_BITSTREAM_TYPE_4
  1330.  * 
  1331.  * @return 0 on success, <0 on failure
  1332.  *
  1333.  */
  1334. extern int dxr2_ioc_set_bitstream_type(dxr2_t* instance, char* buffer)
  1335. {
  1336.   int status=0;
  1337.   int tmp;
  1338.   int type;
  1339.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1340.   // OK, get args
  1341.   if (get_user(type, &(argBuffer->arg)) < 0) {
  1342.     
  1343.     return(-EFAULT);
  1344.   }
  1345.   // check params
  1346.   if ((type < DXR2_BITSTREAM_TYPE_MPEG_VOB) || (type > DXR2_BITSTREAM_TYPE_4)) {
  1347.     
  1348.     return(-EINVAL);
  1349.   }
  1350.   // disable the IRQ
  1351.   DXR2_ENTER_CRITICAL(instance);
  1352.   
  1353.   // set the aspect ratio mode to 1 for some reason.
  1354.   if (instance->currentBitstreamType == DXR2_BITSTREAM_TYPE_MPEG_VOB) {
  1355.     
  1356.     // only if the new bitstream is type MPEG_VCD or CDROM_VCD
  1357.     if ((type == DXR2_BITSTREAM_TYPE_MPEG_VCD) || (type == DXR2_BITSTREAM_TYPE_CDROM_VCD)) {
  1358.       // set the aspect ratio mode
  1359.       zivaDS_set_aspect_ratio_mode(instance->zivaDSInstance, DXR2_ASPECTRATIOMODE_NORMAL);
  1360.       instance->currentAspectRatioMode = DXR2_ASPECTRATIOMODE_NORMAL;
  1361.     }
  1362.   }
  1363.   // remember it
  1364.   instance->currentBitstreamType = type;
  1365.   // do it
  1366.   zivaDS_set_bitstream_type(instance->zivaDSInstance, type);
  1367.   // set source TV format
  1368.   zivaDS_set_source_video_frequency(instance->zivaDSInstance, instance->currentSourceVideoFrequency);
  1369.   
  1370.   // reset
  1371.   if (instance->currentAudioMuteStatus == DXR2_AUDIO_MUTE_OFF) {
  1372.     
  1373.     pcm1723_set_mute_mode(instance->pcm1723Instance, PCM1723_MUTEON);
  1374.   }
  1375.   zivaDS_reset(instance->zivaDSInstance);
  1376.   if (instance->currentAudioMuteStatus == DXR2_AUDIO_MUTE_OFF) {
  1377.     
  1378.     pcm1723_set_mute_mode(instance->pcm1723Instance, PCM1723_MUTEOFF);
  1379.   }
  1380.   // new play mode
  1381.   zivaDS_new_play_mode(instance->zivaDSInstance);
  1382.   
  1383.   // enable the IRQ
  1384.   DXR2_EXIT_CRITICAL(instance);
  1385.   
  1386.   // return status
  1387.   return(status);
  1388. }
  1389. /**
  1390.  *
  1391.  * Play
  1392.  *
  1393.  * @param instance DXR2 instance to use
  1394.  *
  1395.  * @return 0 on success, <0 on failure
  1396.  *
  1397.  */
  1398. extern int dxr2_ioc_play(dxr2_t* instance) 
  1399. {
  1400.   int playType=0;
  1401.   int playStarted =0;
  1402.   // if we're in scan mode, stop
  1403.   if (instance->currentPlayMode = DXR2_PLAYMODE_SCAN) {
  1404.     
  1405.     dxr2_ioc_stop(instance);
  1406.   }
  1407.   // disable the IRQ
  1408.   DXR2_ENTER_CRITICAL(instance);
  1409.   // if we're already playing, but paused, or slow forwards...
  1410.   // just "continue play"
  1411.   if ((instance->currentPlayMode == DXR2_PLAYMODE_PAUSED) ||
  1412.       (instance->currentPlayMode == DXR2_PLAYMODE_SLOWFORWARDS)) {
  1413.     
  1414.     zivaDS_resume(instance->zivaDSInstance);
  1415.     playStarted = 0;
  1416.   }
  1417.   else {
  1418.     
  1419.     if ((instance->currentBitstreamType == DXR2_BITSTREAM_TYPE_CDROM_VCD) &&
  1420. (instance->currentVideoStream > 0) &&
  1421. (instance->currentVideoStream != 255)) {
  1422.       
  1423.       playType = ZIVADS_PLAYTYPE_STILLSTOP;
  1424.     }
  1425.     else {
  1426.       
  1427.       playType = ZIVADS_PLAYTYPE_NORMAL;
  1428.     }
  1429.     
  1430.     zivaDS_play(instance->zivaDSInstance, playType);
  1431.     playStarted = 1;
  1432.   }
  1433.    
  1434.   // setup ziva's audio DAC
  1435.   zivaDS_setup_audio_dac(instance->zivaDSInstance, instance->currentZivaAudioDACMode);
  1436.   // if play has just started, turn bit 4 of ASIC on
  1437.   if (playStarted) {
  1438.     
  1439.     dxr2_asic_set_bits(instance, 0x10, 0x10);
  1440.   }
  1441.   
  1442.   // set play mode
  1443.   instance->currentPlayMode = DXR2_PLAYMODE_PLAY;  
  1444.   // enable the IRQ
  1445.   DXR2_EXIT_CRITICAL(instance);
  1446.   
  1447.   // OK
  1448.   return(0);
  1449. }
  1450. /**
  1451.  * 
  1452.  * Get System Time Clock
  1453.  *
  1454.  * @param instance dxr2 instance to use
  1455.  * @param buffer instance of dxr2_oneArg_t, arg will be set to result
  1456.  *
  1457.  * @return 0 on success, <0 on failure
  1458.  *
  1459.  */
  1460. extern int dxr2_ioc_get_stc(dxr2_t* instance, char* buffer)
  1461. {
  1462.   int mode;
  1463.   int status = 0;
  1464.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1465.   
  1466.   // if we're using the TC6087AF and are in the middle of bus mastering...
  1467.   if ((instance->zivaDSInstance->zivaDSType == ZIVADS_TYPE_1) &&
  1468.       (instance->vxp524Instance->bmInUse)) {
  1469.     
  1470.     put_user(0, &(argBuffer->arg));
  1471.     return(0);
  1472.   }
  1473.   // disable the IRQ
  1474.   DXR2_ENTER_CRITICAL(instance);
  1475.   // if we're playing, get the pic_stc
  1476.   if (instance->currentPlayMode == DXR2_PLAYMODE_PLAY) {
  1477.     
  1478.     put_user(zivaDS_get_mrc_pic_stc(instance->zivaDSInstance), &(argBuffer->arg));
  1479.   }
  1480.   else {
  1481.     
  1482.     put_user(zivaDS_get_mrc_pic_pts(instance->zivaDSInstance), &(argBuffer->arg));
  1483.   }
  1484.   // reenable the IRQ
  1485.   DXR2_EXIT_CRITICAL(instance);
  1486.   
  1487.   // OK
  1488.   return(0);
  1489. }
  1490. /**
  1491.  *
  1492.  * Set audio sample frequency
  1493.  *
  1494.  * @param instance DXR2 instance to use
  1495.  * @param buffer instance of dxr2_oneArg_t.
  1496.  *    arg: DXR2_AUDIO_FREQ_441, DXR2_AUDIO_FREQ_96, DXR2_AUDIO_FREQ_24, 
  1497.  *         DXR2_AUDIO_FREQ_2205, DXR2_AUDIO_FREQ_32
  1498.  *
  1499.  * @return 0 on success, <0 on failure
  1500.  *
  1501.  */
  1502. extern int dxr2_ioc_set_audio_sample_freqency(dxr2_t* instance, char* buffer)
  1503. {
  1504.   int param;
  1505.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1506.   // OK, get args
  1507.   if (get_user(param, &(argBuffer->arg)) < 0) {
  1508.     
  1509.     return(-EFAULT);
  1510.   }
  1511.   // check 
  1512.   if ((instance->zivaDSInstance->zivaDSType >= ZIVADS_TYPE_3) && (param == DXR2_AUDIO_FREQ_96)) {
  1513.     
  1514.     param = DXR2_AUDIO_FREQ_48;
  1515.   }
  1516.   
  1517.   // remember it
  1518.   instance->currentAudioSampleFrequency = param;
  1519.   // do it & return status
  1520.   return(pcm1723_set_sample_frequency(instance->pcm1723Instance, param));
  1521. }
  1522. /**
  1523.  *
  1524.  * Set audio data width
  1525.  *
  1526.  * @param instance DXR2 instance to use
  1527.  * @param buffer instance of dxr2_oneArg_t.
  1528.  *   arg= DXR2_AUDIO_WIDTH_16, DXR2_AUDIO_WIDTH_24, DXR2_AUDIO_WIDTH_32
  1529.  *
  1530.  * @return 0 on success, <0 on failure
  1531.  *
  1532.  */
  1533. extern int dxr2_ioc_set_audio_data_width(dxr2_t* instance, char* buffer)
  1534. {
  1535.   int param;
  1536.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1537.   // OK, get args
  1538.   if (get_user(param, &(argBuffer->arg)) < 0) {
  1539.     
  1540.     return(-EFAULT);
  1541.   }
  1542.     
  1543.   // check 
  1544.   if (instance->zivaDSInstance->zivaDSType >= ZIVADS_TYPE_3) {
  1545.     
  1546.     param = DXR2_AUDIO_WIDTH_16;
  1547.   }
  1548.   // remember it
  1549.   instance->currentAudioInputWidth = param;
  1550.   // do it & return
  1551.   return(pcm1723_set_input_width(instance->pcm1723Instance, param));
  1552. }
  1553.     
  1554. /**
  1555.  * 
  1556.  * Sets the IEC-958 output mode (either decoded AC3, or encoded AC3)
  1557.  *
  1558.  * @param instance DXR2 instance to use
  1559.  * @param buffer instance of dxr2_oneArg_t.
  1560.  *     arg= DXR2_IEC958_DECODED, DXR2_IEC958_ENCODED
  1561.  *
  1562.  * @return 0 on success, <0 on failure
  1563.  *
  1564.  */
  1565. extern int dxr2_ioc_iec958_output_mode(dxr2_t* instance, char* buffer)
  1566. {
  1567.   int param;
  1568.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1569.   // OK, get args
  1570.   if (get_user(param, &(argBuffer->arg)) < 0) {
  1571.     
  1572.     return(-EFAULT);
  1573.   }
  1574.   
  1575.   // check
  1576.   if ((param < DXR2_IEC958_DECODED) || (param > DXR2_IEC958_ENCODED)) {
  1577.     
  1578.     return(-EINVAL);
  1579.   }
  1580.   // do it & return
  1581.   return(zivaDS_set_iec958_output_mode(instance->zivaDSInstance, param));
  1582. }
  1583. /**
  1584.  * 
  1585.  * Set the AC3 mode... probably for Karaoke... Mmmmm... how useful ;)
  1586.  *
  1587.  * @param instance DXR2 instance to use
  1588.  * @param buffer instance of dxr2_oneArg_t.
  1589.  *   arg= DXR2_AC3MODE_LR_STEREO, DXR2_AC3MODE_LR_STEREO_PROLOGIC,
  1590.  *        DXR2_AC3MODE_LR_MONOR
  1591.  *
  1592.  * @return 0 on success, <0 on failure
  1593.  *
  1594.  */
  1595. extern int dxr2_ioc_set_AC3_mode(dxr2_t* instance, char* buffer)
  1596. {
  1597.   int param;
  1598.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1599.   // OK, get args
  1600.   if (get_user(param, &(argBuffer->arg)) < 0) {
  1601.     
  1602.     return(-EFAULT);
  1603.   }
  1604.   // check
  1605.   if ((param < DXR2_AC3MODE_LR_STEREO) || (param > DXR2_AC3MODE_LR_MONOR)) {
  1606.     
  1607.     return(-EINVAL);
  1608.   }
  1609.   // if it's not an AC3 audio stream => error
  1610.   if (instance->currentAudioStreamType != DXR2_STREAM_AUDIO_AC3) {
  1611.     
  1612.     return(-EINVAL);
  1613.   }
  1614.   // do it & return
  1615.   return(zivaDS_set_AC3_mode(instance->zivaDSInstance, 
  1616.      instance->currentZivaAudioDACMode,
  1617.      param));
  1618. }
  1619. /**
  1620.  *
  1621.  * Selects AC3 voice, either to NONE, or V1V2. This is for karaoke
  1622.  *
  1623.  * @param instance DXR2 instance to use
  1624.  * @param buffer instance of dxr2_oneArg_t.
  1625.  *         arg= DXR2_AC3VOICE_NONE, DXR2_AC3VOICE_V1V2
  1626.  *
  1627.  * @return 0 on success, <0 on failure
  1628.  *
  1629.  */
  1630. extern int dxr2_ioc_select_AC3_voice(dxr2_t* instance, char* buffer)
  1631. {
  1632.   int param;
  1633.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1634.   // OK, get args
  1635.   if (get_user(param, &(argBuffer->arg)) < 0) {
  1636.     
  1637.     return(-EFAULT);
  1638.   }
  1639.   
  1640.   // check
  1641.   if ((param < DXR2_AC3VOICE_NONE) || (param > DXR2_AC3VOICE_V1V2)) {
  1642.     
  1643.     return(-EINVAL);
  1644.   }
  1645.   // if it's not an AC3 audio stream => error
  1646.   if (instance->currentAudioStreamType != DXR2_STREAM_AUDIO_AC3) {
  1647.     
  1648.     return(-EINVAL);
  1649.   }
  1650.   // do it & return
  1651.   return(zivaDS_select_AC3_voice(instance->zivaDSInstance, param));
  1652. }
  1653. /**
  1654.  *
  1655.  * Mute/unmute audio
  1656.  *
  1657.  * @param instance DXR2 instance to use
  1658.  * @param buffer instance of dxr2_oneArg_t.
  1659.  *         arg= DXR2_AUDIO_MUTE_ON, DXR2_AUDIO_MUTE_OFF
  1660.  *
  1661.  * @return 0 on success, <0 on failure
  1662.  *
  1663.  */
  1664. extern int dxr2_ioc_audio_mute(dxr2_t* instance, char* buffer)
  1665. {
  1666.   int param;
  1667.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1668.   int status = 0;
  1669.   // OK, get args
  1670.   if (get_user(param, &(argBuffer->arg)) < 0) {
  1671.     
  1672.     return(-EFAULT);
  1673.   }
  1674.     
  1675.   // check params
  1676.   if ((param != DXR2_AUDIO_MUTE_ON) && (param != DXR2_AUDIO_MUTE_OFF)) {
  1677.     
  1678.     return(-EINVAL);
  1679.   }
  1680.   // remember it
  1681.   instance->currentAudioMuteStatus = param;
  1682.     
  1683.   // if it's muted, turn audio off on ziva
  1684.   if (param == DXR2_AUDIO_MUTE_ON) {
  1685.     
  1686.     zivaDS_set_audio_attenuation(instance->zivaDSInstance, 0x60);
  1687.   }
  1688.   else { // otherwise, restore old volume
  1689.     
  1690.     // are we using the tc6807af?
  1691.     if ((instance->zivaDSInstance->zivaDSType == ZIVADS_TYPE_1) &&
  1692. (instance->vxp524Instance->bmInUse)) {
  1693.       
  1694.       dxr2_queue_deferred(DXR2_QUEUE_SETVOLUME, instance->currentAudioVolume, 0, 0);
  1695.     }
  1696.     else {
  1697.       
  1698.       // OK,  set the volume
  1699.       status = zivaDS_set_audio_volume(instance->zivaDSInstance, instance->currentAudioVolume);
  1700.     }
  1701.   }
  1702.   
  1703.   // now, deal with the pcm1723
  1704.   if ((instance->zivaDSInstance->zivaDSType == ZIVADS_TYPE_1) &&
  1705.       (instance->vxp524Instance->bmInUse)) {
  1706.     
  1707.     dxr2_queue_deferred(instance, DXR2_QUEUE_SETMUTESTATUS, param, 0, 0);
  1708.   }
  1709.   else {
  1710.     
  1711.     pcm1723_set_mute_mode(instance->pcm1723Instance, param);
  1712.   }
  1713.   // OK
  1714.   return(status);
  1715. }
  1716. /**
  1717.  *
  1718.  * Set stereo mode
  1719.  *
  1720.  * @param instance DXR2 instance to use
  1721.  * @param buffer instance of dxr2_oneArg_t.
  1722.  *    arg=DXR2_AUDIO_STEREO_NORMAL, DXR2_AUDIO_STEREO_MONOL, DXR2_AUDIO_STEREO_MONOR, 
  1723.  *        DXR2_AUDIO_STEREO_REVERSE
  1724.  *
  1725.  * @return 0 on success, <0 on failure
  1726.  *
  1727.  */
  1728. extern int dxr2_ioc_set_stereo_mode(dxr2_t* instance, char* buffer)
  1729. {
  1730.   int param;
  1731.   dxr2_oneArg_t* argBuffer = (dxr2_oneArg_t*) buffer;
  1732.   // OK, get args
  1733.   if (get_user(param, &(argBuffer->arg)) < 0) {
  1734.     
  1735.     return(-EFAULT);
  1736.   }
  1737.   
  1738.   // check
  1739.   if ((param < DXR2_AUDIO_STEREO_NORMAL) || (param > DXR2_AUDIO_STEREO_REVERSE)) {
  1740.     
  1741.     return(-EINVAL);
  1742.   }
  1743.   // do it & return
  1744.   return(pcm1723_set_stereo_mode(instance->pcm1723Instance, param));
  1745. }
  1746. /**
  1747.  * FIXME... what to do with MPEG1 audio streams...
  1748.  * Select stream
  1749.  *
  1750.  * @param instance dxr2 instance to use
  1751.  * @param buffer instance of dxr2_twoArg_t.
  1752.  *     arg1 = stream type: DXR2_STREAM_VIDEO, DXR2_STREAM_SUBPICTURE,
  1753.  *                         DXR2_STREAM_AUDIO_AC3, DXR2_STREAM_AUDIO_MPEG, 
  1754.  *                         DXR2_STREAM_AUDIO_LPCM, DXR2_STREAM_AUDIO_5
  1755.  *     arg2 = stream to select
  1756.  *
  1757.  * @return 0 on success, <0 on failure
  1758.  *
  1759.  */
  1760. extern int dxr2_ioc_select_stream(dxr2_t* instance, char* buffer)
  1761. {
  1762.   int streamType;
  1763.   int stream;
  1764.   dxr2_twoArg_t* argBuffer = (dxr2_twoArg_t*) buffer;
  1765.   int tmp;
  1766.   int zivaClock;
  1767.   int pcmClock;
  1768.   // OK, get args
  1769.   if (get_user(streamType, &(argBuffer->arg1)) < 0) {
  1770.     
  1771.     return(-EFAULT);
  1772.   }
  1773.   if (get_user(stream, &(argBuffer->arg2)) < 0) {
  1774.     
  1775.     return(-EFAULT);
  1776.   }
  1777.   
  1778.   // check params
  1779.   if ((streamType < DXR2_STREAM_VIDEO) || 
  1780.       (streamType > DXR2_STREAM_AUDIO_5)) {
  1781.     
  1782.     return(-EINVAL);
  1783.   }
  1784.   // check stream max value
  1785.   if (stream != 255) {
  1786.     tmp = (instance->currentBitstreamType * 6) + streamType;
  1787.     if (stream >= maxStreamTable[tmp]) {
  1788.       
  1789.       return(-EINVAL);
  1790.     }
  1791.   }
  1792.   // if stream == 255 => stream = 0xffff
  1793.   if (stream == 255) {
  1794.     
  1795.     stream = 0xffff;
  1796.   }
  1797.   // remember values for later
  1798.   switch(streamType) {
  1799.   case DXR2_STREAM_VIDEO:
  1800.     
  1801.     instance->currentVideoStream = stream;
  1802.     break;
  1803.     
  1804.   case DXR2_STREAM_SUBPICTURE:
  1805.     instance->currentSubPictureStream = stream;
  1806.     break;
  1807.   case DXR2_STREAM_AUDIO_AC3:
  1808.     instance->currentAudioStream = stream;
  1809.     zivaDS_set_audio_clock_frequency(instance->zivaDSInstance, ZIVADS_CLKFREQ256);
  1810.     pcm1723_set_clock_frequency(instance->pcm1723Instance, PCM1723_CLKFREQ256);
  1811.     break;
  1812.   case DXR2_STREAM_AUDIO_MPEG:
  1813.     instance->currentAudioStream = stream;
  1814.     zivaDS_set_audio_clock_frequency(instance->zivaDSInstance, ZIVADS_CLKFREQ256);
  1815.     pcm1723_set_clock_frequency(instance->pcm1723Instance, PCM1723_CLKFREQ256);
  1816.     break;
  1817.   case DXR2_STREAM_AUDIO_LPCM:
  1818.     
  1819.     instance->currentAudioStream = stream;
  1820.     if (clockTable[instance->currentAudioInputWidth + (instance->currentAudioSampleFrequency*3)] == 1) {
  1821.       
  1822.       pcmClock = PCM1723_CLKFREQ256;
  1823.       zivaClock = ZIVADS_CLKFREQ256;
  1824.     }
  1825.     else {
  1826.       
  1827.       pcmClock = PCM1723_CLKFREQ384;
  1828.       zivaClock = ZIVADS_CLKFREQ384;
  1829.     }
  1830.     
  1831.     if ((instance->zivaDSInstance->zivaDSType < ZIVADS_TYPE_3) &&
  1832. (instance->currentAudioSampleFrequency == DXR2_AUDIO_FREQ_96)) {
  1833.       
  1834.       pcmClock = PCM1723_CLKFREQ256;
  1835.       zivaClock = PCM1723_CLKFREQ384;
  1836.     }
  1837.     zivaDS_set_audio_clock_frequency(instance->zivaDSInstance, zivaClock);
  1838.     pcm1723_set_clock_frequency(instance->pcm1723Instance, pcmClock);
  1839.     break;
  1840.   case DXR2_STREAM_AUDIO_5:
  1841.     instance->currentAudioStream = stream;
  1842.     // FIXME... don't know what parameters to set here... these are a guess
  1843.     zivaDS_set_audio_clock_frequency(instance->zivaDSInstance, ZIVADS_CLKFREQ384);
  1844.     pcm1723_set_clock_frequency(instance->pcm1723Instance, PCM1723_CLKFREQ384);
  1845.     break;
  1846.   }
  1847.   // disable the IRQ
  1848.   DXR2_ENTER_CRITICAL(instance);
  1849.   // are we using the tc6807af?
  1850.   if ((instance->zivaDSInstance->zivaDSType == ZIVADS_TYPE_1) &&
  1851.       (instance->vxp524Instance->bmInUse)) {
  1852.     dxr2_queue_deferred(DXR2_QUEUE_SELECTSTREAM, streamType, stream, 0, 0);
  1853.   }
  1854.   else {
  1855.     
  1856.     zivaDS_select_stream(instance->zivaDSInstance, streamType, stream);
  1857.   }
  1858.   // reenable the IRQ
  1859.   DXR2_EXIT_CRITICAL(instance);
  1860.   
  1861.   // OK
  1862.   return(0);
  1863. }
  1864. /**
  1865.  * FIXME.. don't know what all of these do
  1866.  * Highlight a button 
  1867.  *
  1868.  * @param instance dxr2 instance to use
  1869.  * @param buffer instance of dxr2_twoArg_t.
  1870.  *     arg1 = button to highlight (1-36), or DXR2_BUTTON_NONE,
  1871.  *        DXR2_BUTTON_UP, DXR2_BUTTON_DOWN, DXR2_BUTTON_LEFT, 
  1872.  *        DXR2_BUTTON_RIGHT
  1873.  *     arg2 = action to perform on button
  1874.  *        DXR2_BUTTONACTION_SELECT, DXR2_BUTTONACTION_UNHIGHLIGHT,
  1875.  *        DXR2_BUTTONACTION_ACTIVATE, DXR2_BUTTONACTION_ACTIVATE_SELECTED, 
  1876.  *        DXR2_BUTTONACTION_ (4-8)
  1877.  *
  1878.  * @return 0 on success, <0 on failure
  1879.  *
  1880.  */
  1881. extern int dxr2_ioc_highlight(dxr2_t* instance, char* buffer)
  1882. {
  1883.   int buttonIndex;
  1884.   int action;
  1885.   dxr2_twoArg_t* argBuffer = (dxr2_twoArg_t*) buffer;
  1886.   int status = 0;
  1887.   // OK, get args
  1888.   if (get_user(buttonIndex, &(argBuffer->arg1)) < 0) {
  1889.     
  1890.     return(-EFAULT);
  1891.   }
  1892.   if (get_user(action, &(argBuffer->arg2)) < 0) {
  1893.     
  1894.     return(-EFAULT);
  1895.   }
  1896.   
  1897.   // check params
  1898.   if (action > DXR2_BUTTONACTION_8) {
  1899.     
  1900.     return(-EINVAL);
  1901.   }
  1902.   // disable the IRQ
  1903.   DXR2_ENTER_CRITICAL(instance);
  1904.   
  1905.   // wait till HLI int finished?
  1906.   if (instance->hliFlag) {
  1907.     
  1908.     zivaDS_wait_for_HLI_int(instance->zivaDSInstance);
  1909.     instance->hliFlag = 0;
  1910.   }
  1911.   // are we using the tc6807af?
  1912.   if ((instance->zivaDSInstance->zivaDSType == ZIVADS_TYPE_1) &&
  1913.       (instance->vxp524Instance->bmInUse)) {
  1914.     status = dxr2_queue_deferred(DXR2_QUEUE_HIGHLIGHT, buttonIndex, action, 0, 0);
  1915.   }
  1916.   else {
  1917.     
  1918.     status = zivaDS_highlight(instance->zivaDSInstance, buttonIndex, action);
  1919.   }
  1920.   // reenable the IRQ
  1921.   DXR2_EXIT_CRITICAL(instance);
  1922.   
  1923.   // OK
  1924.   return(status);
  1925. }