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

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.  * Driver maintenance functions
  40.  *
  41.  */
  42. #define EXPORT_SYMTAB
  43. #include <linux/config.h>
  44. #undef MODVERSION
  45. #undef CONFIG_MODVERSIONS
  46. #include <linux/version.h>
  47. #include <linux/module.h>
  48. #include <linux/kernel.h>
  49. #include <linux/sched.h>
  50. #include <linux/string.h>
  51. #include <linux/ptrace.h>
  52. #include <linux/errno.h>
  53. #include <linux/ioport.h>
  54. #include <linux/malloc.h>
  55. #include <linux/interrupt.h>
  56. #include <linux/pci.h>
  57. #include <linux/delay.h>
  58. #include <linux/init.h>
  59. #include <linux/pci.h>
  60. #include <linux/cdrom.h>
  61. #include <linux/videodev.h>
  62. #include <asm/byteorder.h>
  63. #include <asm/bitops.h>
  64. #include <asm/io.h>
  65. #include <asm/irq.h>
  66. #include <asm/uaccess.h>
  67. #include <asm/spinlock.h>
  68. #include <anp82.h>
  69. /**
  70.  *
  71.  * Create new AnP82 driver instance
  72.  *
  73.  * @param ops Lowlevel operations to talk to chip
  74.  * @param data Any extra data for said functions
  75.  *
  76.  */
  77. extern anp82_t* anp82_new (anp82_ops_t* ops, void* data)
  78. {
  79.   anp82_t* instance;
  80.   int val;
  81.   
  82.   // validate ops
  83.   if (ops == NULL)
  84.     return NULL;
  85.   
  86.   // create new structure
  87.   instance = (anp82_t*) vmalloc(sizeof(anp82_t));
  88.   if (!instance)
  89.     return NULL;
  90.   // copy necessary data in
  91.   instance->ops = ops;
  92.   instance->data = data;
  93.   // get the chip version
  94.   if ((val = anp82_get_reg(instance, 1)) < 0) {
  95.     printk (KERN_ERR ANP82_LOGNAME ": [%s]: initialisation error!.n",
  96.     instance->ops->name);
  97.     vfree(instance);
  98.     return(NULL);
  99.   }
  100.   // report OK
  101.   printk (KERN_INFO ANP82_LOGNAME ": [%s] instance created (%s revision %c).n",
  102.   instance->ops->name, 
  103.   (val & 0x3f) == 0x28 ? "anp82" : "anp83",
  104.   'A' + (val >>6));
  105.   
  106.   // OK, another module usage
  107.   MOD_INC_USE_COUNT;
  108.   
  109.   // return new structure
  110.   return instance;
  111. }
  112. /**
  113.  *
  114.  * Destroy an Anp82 driver instance
  115.  *
  116.  * @param instance The instance to destroy
  117.  *
  118.  */
  119. void anp82_free (anp82_t* instance)
  120. {
  121.   char* tmpName = instance->ops->name;
  122.   
  123.   // free instance
  124.   vfree(instance);
  125.   
  126.   // one less module usage
  127.   MOD_DEC_USE_COUNT;
  128.   // log it
  129.   printk (KERN_INFO ANP82_LOGNAME ": [%s] instance destroyed.n", 
  130.   tmpName);
  131. }
  132. #ifdef MODULE
  133. int init_module (void)
  134. {
  135. return 0;
  136. }
  137. void cleanup_module (void)
  138. {
  139. }
  140. #endif
  141. EXPORT_SYMBOL(anp82_new);
  142. EXPORT_SYMBOL(anp82_free);
  143. EXPORT_SYMBOL(anp82_get_reg);
  144. EXPORT_SYMBOL(anp82_set_reg);
  145. EXPORT_SYMBOL(anp82_get_bits);
  146. EXPORT_SYMBOL(anp82_set_bits);