lowlevel.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.  * Driver for the SkyTune/Auravision AnP82 VGA overlay chip
  39.  * Register get/set functions
  40.  *
  41.  */
  42. #include <anp82.h>
  43. /**
  44.  *
  45.  * Get register from the AnP82
  46.  *
  47.  * @param instance Instance of the AnP82 to use
  48.  * @param reg Register to retrieve
  49.  *
  50.  * @return The register's value (or negative on error)
  51.  *
  52.  */
  53. extern int anp82_get_reg (anp82_t* instance, int reg)
  54. {
  55.   return (*instance->ops->get_reg) (instance, reg);
  56. }
  57. /**
  58.  *
  59.  * Set register on the AnP82
  60.  *
  61.  * @param instance Instance of the AnP82 to use
  62.  * @param reg Register to retrieve
  63.  * @param val Value to set
  64.  *
  65.  */
  66. extern void anp82_set_reg(anp82_t* instance, int reg, int val)
  67. {
  68.   (*instance->ops->set_reg) (instance, reg, val);
  69. }
  70. /**
  71.  *
  72.  * Get specified bitmask of a register from AnP82
  73.  *
  74.  * @param instance Instance of the AnP82 to use
  75.  * @param reg Register to retrieve
  76.  * @param bitmask Bitmask of bits to retrive from that register
  77.  *
  78.  * @return The register bitvalues
  79.  *
  80.  */
  81. extern int anp82_get_bits(anp82_t* instance, int reg, int bitmask)
  82. {
  83.   return (anp82_get_reg(instance, reg) & bitmask);
  84. }
  85. /**
  86.  *
  87.  * Set specified bits of a register on AnP82
  88.  *
  89.  * @param instance Instance of the AnP82 to use
  90.  * @param reg Register to retrieve
  91.  * @param bitmask Bitmask of bits to set from that register
  92.  * @param valuemask Values of the bits in the bitmask
  93.  *
  94.  */
  95. extern void anp82_set_bits(anp82_t* instance, int reg, int bitmask, int valuemask)
  96. {
  97.   // get the current register value
  98.   int value = anp82_get_reg(instance, reg);
  99.   
  100.   // set it on the hardware
  101.   anp82_set_reg(instance, reg, (value & (~bitmask)) | valuemask);
  102. }