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

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.  * Low level bt865 functions
  40.  *
  41.  */
  42. #include <dxr2.h>
  43. #include <bt865.h>
  44. #include <vxp524.h>
  45. // ****************************************************************************
  46. // BT865 operations
  47. static int dxr2_bt865_get_reg(bt865_t* instance, int reg);
  48. static int dxr2_bt865_set_reg(bt865_t* instance, int reg, int val);
  49. bt865_ops_t bt865_ops_table = {
  50.   DXR2_LOGNAME,
  51.   dxr2_bt865_get_reg,
  52.   dxr2_bt865_set_reg
  53. };
  54. /**
  55.  *
  56.  * Get a BT865 register
  57.  *
  58.  * @param instance bt865 instance to use
  59.  * @param reg register to get
  60.  *
  61.  * @return value on success (>=0), <0 o failure
  62.  *
  63.  */
  64. static int dxr2_bt865_get_reg(bt865_t* instance, int reg)
  65. {
  66.   dxr2_t* dxr2Inst = (dxr2_t*) instance->data;
  67.   
  68.   return(vxp524_i2c_read_reg(dxr2Inst->vxp524Instance, BT865_CHIPID, reg));
  69. }
  70. /**
  71.  *
  72.  * Set a BT865 register
  73.  *
  74.  * @param instance bt865 instance to use
  75.  * @param reg register to set
  76.  * @param val value to set
  77.  *
  78.  * @return 0 on success, <0 o failure
  79.  *
  80.  */
  81. static int dxr2_bt865_set_reg(bt865_t* instance, int reg, int val)
  82. {
  83.   dxr2_t* dxr2Inst = (dxr2_t*) instance->data;
  84.   return(vxp524_i2c_write_reg(dxr2Inst->vxp524Instance, BT865_CHIPID, reg, val));
  85. }