dc390.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /***********************************************************************
  2.  * FILE NAME : DC390.H        *
  3.  *      BY   : C.L. Huang        *
  4.  * Description: Device Driver for Tekram DC-390(T) PCI SCSI       *
  5.  *      Bus Master Host Adapter        *
  6.  ***********************************************************************/
  7. /* $Id: dc390.h,v 2.43.2.22 2000/12/20 00:39:36 garloff Exp $ */
  8. /*
  9.  * DC390/AMD 53C974 driver, header file
  10.  */
  11. #ifndef DC390_H
  12. #define DC390_H
  13. #include <linux/version.h>
  14. #ifndef KERNEL_VERSION
  15. # define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
  16. #endif
  17. #define DC390_BANNER "Tekram DC390/AM53C974"
  18. #define DC390_VERSION "2.0f 2000-12-20"
  19. /* We don't have eh_abort_handler, eh_device_reset_handler, 
  20.  * eh_bus_reset_handler, eh_host_reset_handler yet! 
  21.  * So long: Use old exception handling :-( */
  22. #define OLD_EH
  23. #if LINUX_VERSION_CODE < KERNEL_VERSION (2,1,70) || defined (OLD_EH)
  24. # define NEW_EH
  25. #else
  26. # define NEW_EH use_new_eh_code: 1,
  27. # define USE_NEW_EH
  28. #endif
  29. #if defined(HOSTS_C) || defined(MODULE) || LINUX_VERSION_CODE > KERNEL_VERSION(2,3,99)
  30. extern int DC390_detect(Scsi_Host_Template *psht);
  31. extern int DC390_queue_command(Scsi_Cmnd *cmd, void (*done)(Scsi_Cmnd *));
  32. extern int DC390_abort(Scsi_Cmnd *cmd);
  33. extern int DC390_reset(Scsi_Cmnd *cmd, unsigned int resetFlags);
  34. extern int DC390_bios_param(Disk *disk, kdev_t devno, int geom[]);
  35. #ifdef MODULE
  36. static int DC390_release(struct Scsi_Host *);
  37. #else
  38. # define DC390_release NULL
  39. #endif
  40. extern int DC390_proc_info(char *buffer, char **start, off_t offset, int length, int hostno, int inout);
  41. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,3,30)
  42. #define DC390_T    {
  43.    proc_name:      "tmscsim",                           
  44.    proc_info:      DC390_proc_info,
  45.    name:           DC390_BANNER " V" DC390_VERSION,
  46.    detect:         DC390_detect,
  47.    release:        DC390_release,
  48.    queuecommand:   DC390_queue_command,
  49.    abort:          DC390_abort,
  50.    reset:          DC390_reset,
  51.    bios_param:     DC390_bios_param,
  52.    can_queue:      42,
  53.    this_id:        7,
  54.    sg_tablesize:   SG_ALL,
  55.    cmd_per_lun:    16,
  56.    NEW_EH
  57.    unchecked_isa_dma: 0,
  58.    use_clustering: DISABLE_CLUSTERING
  59.    }
  60. #else
  61. extern struct proc_dir_entry DC390_proc_scsi_tmscsim;
  62. #define DC390_T    {
  63.    proc_dir:       &DC390_proc_scsi_tmscsim,
  64.    proc_info:      DC390_proc_info,
  65.    name:           DC390_BANNER " V" DC390_VERSION,
  66.    detect:         DC390_detect,
  67.    release:        DC390_release,
  68.    queuecommand:   DC390_queue_command,
  69.    abort:          DC390_abort,
  70.    reset:          DC390_reset,
  71.    bios_param:     DC390_bios_param,
  72.    can_queue:      42,
  73.    this_id:        7,
  74.    sg_tablesize:   SG_ALL,
  75.    cmd_per_lun:    16,
  76.    NEW_EH
  77.    unchecked_isa_dma: 0,
  78.    use_clustering: DISABLE_CLUSTERING
  79.    }
  80. #endif
  81. #endif /* defined(HOSTS_C) || defined(MODULE) */
  82. #endif /* DC390_H */