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 Toshiba TC6807AF CSS decode 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 <tc6807af.h>
  69. /**
  70.  *
  71.  * Create new tc6807af 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 tc6807af_t* tc6807af_new (tc6807af_ops_t* ops, void* data)
  78. {
  79.   tc6807af_t* instance;
  80.   int val;
  81.   int status;
  82.   
  83.   // validate supplied ops
  84.   if (ops == NULL)
  85.     return NULL;
  86.   
  87.   // allocate
  88.   instance = (tc6807af_t*) vmalloc (sizeof (tc6807af_t));
  89.   if (!instance)
  90.     return NULL;
  91.   
  92.   // setup
  93.   instance->ops = ops;
  94.   instance->data = data;
  95.   // init the device
  96.   if ((status = tc6807af_init(instance)) < 0) {
  97.     
  98.     vfree(instance);
  99.     printk(KERN_INFO TC6807AF_LOGNAME ": [%s] Unable to initialise.n",
  100.    instance->ops->name);
  101.     return(NULL);
  102.   }
  103.   
  104.   // ok, module has one more usage
  105.   MOD_INC_USE_COUNT;
  106.   // log creation
  107.   printk (KERN_INFO TC6807AF_LOGNAME ": [%s] instance created.n", 
  108.   instance->ops->name);
  109.   
  110.   // return it!
  111.   return(instance);
  112. }
  113. /**
  114.  *
  115.  * Destroy a tc6807af driver instance
  116.  *
  117.  * @param instance The instance to destroy
  118.  *
  119.  */
  120. extern void tc6807af_free (tc6807af_t* instance)
  121. {
  122.   char* tmpName = instance->ops->name;
  123.   // free instance
  124.   vfree (instance);
  125.   // one less usage of module
  126.   MOD_DEC_USE_COUNT;
  127.   // log destruction
  128.   printk (KERN_INFO TC6807AF_LOGNAME ": [%s] instance destroyed.n", 
  129.   tmpName);
  130. }
  131. #ifdef MODULE
  132. int init_module(void)
  133. {
  134.   // OK
  135.   return(0);
  136. }
  137. void cleanup_module(void)
  138. {
  139. }
  140. #endif
  141. EXPORT_SYMBOL(tc6807af_new);
  142. EXPORT_SYMBOL(tc6807af_free);
  143. EXPORT_SYMBOL(tc6807af_get_loc);
  144. EXPORT_SYMBOL(tc6807af_set_loc);
  145. EXPORT_SYMBOL(tc6807af_init);
  146. EXPORT_SYMBOL(tc6807af_set_decryption_mode);
  147. EXPORT_SYMBOL(tc6807af_send_challenge_key);
  148. EXPORT_SYMBOL(tc6807af_get_challenge_key);
  149. EXPORT_SYMBOL(tc6807af_send_response_key);
  150. EXPORT_SYMBOL(tc6807af_get_response_key);
  151. EXPORT_SYMBOL(tc6807af_send_disc_key_part1);
  152. EXPORT_SYMBOL(tc6807af_send_disc_key_part2);
  153. EXPORT_SYMBOL(tc6807af_send_title_key);