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 Brooktree/Rockwell/Conexant BT865 TV encoder 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 <bt865.h>
  69. /**
  70.  *
  71.  * Create new BT865 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 bt865_t* bt865_new (bt865_ops_t* ops, void *data)
  78. {
  79.   bt865_t* instance;
  80.   int val;
  81.   
  82.   // validate ops
  83.   if (ops == NULL)
  84.     return NULL;
  85.   
  86.   // create new structure 
  87.   instance = (bt865_t*) vmalloc (sizeof(bt865_t));
  88.   if (!instance)
  89.     return NULL;
  90.   // copy necessary data in
  91.   instance->ops = ops;
  92.   instance->data = data;
  93.   // zero the register values
  94.   memset(instance->regValues, 0, 256);
  95.   // try and detect the chip
  96.   val = bt865_get_reg(instance, BT865_READBACK);
  97.   if (val < 0 || 
  98.       (((val >> 5) != 0x05)) && ((val >> 5) != 0x04)) {
  99.     
  100.     printk (KERN_INFO BT865_LOGNAME ": [%s] no BT864, or BT865 detected!n",
  101.     instance->ops->name);
  102.     vfree(instance);
  103.     return(NULL);
  104.   }
  105.   // keep note of chip type
  106.   instance->chipType = val >> 5;
  107.   // initialise the chip
  108.   bt865_init(instance);
  109.   // report OK
  110.   printk (KERN_INFO BT865_LOGNAME ": [%s] %s instance created.n",
  111.   instance->ops->name, (instance->chipType == 5) ? "BT865" : "BT864" );
  112.   // OK, another module usage
  113.   MOD_INC_USE_COUNT;
  114.   
  115.   // return new structure
  116.   return(instance);
  117. }
  118. /**
  119.  *
  120.  * Destroy a BT865 driver instance
  121.  *
  122.  * @param instance The instance to destroy
  123.  *
  124.  */
  125. extern void bt865_free (bt865_t* instance)
  126. {
  127.   char* tmpName = instance->ops->name;
  128.   // free instance
  129.   vfree (instance);
  130.   // one less usage of module
  131.   MOD_DEC_USE_COUNT;
  132.  
  133.   // log it
  134.   printk (KERN_INFO BT865_LOGNAME ": [%s] instance destroyed.n", 
  135.   tmpName);
  136. }
  137. #ifdef MODULE
  138. int init_module (void)
  139. {
  140.   return 0;
  141. }
  142. void cleanup_module (void)
  143. {
  144. }
  145. #endif
  146. EXPORT_SYMBOL (bt865_new);
  147. EXPORT_SYMBOL (bt865_free);
  148. EXPORT_SYMBOL (bt865_init);
  149. EXPORT_SYMBOL (bt865_set_PAL_mode);
  150. EXPORT_SYMBOL (bt865_set_NTSC_mode);
  151. EXPORT_SYMBOL (bt865_get_reg);
  152. EXPORT_SYMBOL (bt865_set_reg);
  153. EXPORT_SYMBOL (bt865_get_bits);
  154. EXPORT_SYMBOL (bt865_set_bits);
  155. EXPORT_SYMBOL(bt865_set_macrovision_mode);