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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * DTC controller, taken from T128 driver by...
  3.  * Copyright 1993, Drew Eckhardt
  4.  * Visionary Computing
  5.  * (Unix and Linux consulting and custom programming)
  6.  * drew@colorado.edu
  7.  *      +1 (303) 440-4894
  8.  *
  9.  * DISTRIBUTION RELEASE 2. 
  10.  *
  11.  * For more information, please consult 
  12.  *
  13.  * 
  14.  * 
  15.  * and 
  16.  *
  17.  * NCR 5380 Family
  18.  * SCSI Protocol Controller
  19.  * Databook
  20.  *
  21.  * NCR Microelectronics
  22.  * 1635 Aeroplaza Drive
  23.  * Colorado Springs, CO 80916
  24.  * 1+ (719) 578-3400
  25.  * 1+ (800) 334-5454
  26.  */
  27. #ifndef DTC3280_H
  28. #define DTC3280_H
  29. #ifndef ASM
  30. int dtc_abort(Scsi_Cmnd *);
  31. int dtc_biosparam(Disk *, kdev_t, int*);
  32. int dtc_detect(Scsi_Host_Template *);
  33. int dtc_queue_command(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
  34. int dtc_reset(Scsi_Cmnd *, unsigned int reset_flags);
  35. int dtc_proc_info (char *buffer, char **start, off_t offset,
  36.    int length, int hostno, int inout);
  37. #ifndef NULL
  38. #define NULL 0
  39. #endif
  40. #ifndef CMD_PER_LUN
  41. #define CMD_PER_LUN 2
  42. #endif
  43. #ifndef CAN_QUEUE
  44. #define CAN_QUEUE 32 
  45. #endif
  46. /* 
  47.  * I hadn't thought of this with the earlier drivers - but to prevent
  48.  * macro definition conflicts, we shouldn't define all of the internal
  49.  * macros when this is being used solely for the host stub.
  50.  */
  51. #define DTC3x80 {
  52. name:           "DTC 3180/3280 ",
  53. detect:         dtc_detect,
  54. queuecommand:   dtc_queue_command,
  55. abort:          dtc_abort,
  56. reset:          dtc_reset,
  57. bios_param:     dtc_biosparam,
  58. can_queue:      CAN_QUEUE,
  59. this_id:        7,
  60. sg_tablesize:   SG_ALL,
  61. cmd_per_lun:    CMD_PER_LUN ,
  62. use_clustering: DISABLE_CLUSTERING}
  63. #define NCR5380_implementation_fields 
  64.     volatile unsigned int base
  65. #define NCR5380_local_declare() 
  66.     volatile unsigned int base
  67. #define NCR5380_setup(instance) 
  68.     base = (unsigned int)(instance)->base
  69. #define DTC_address(reg) (base + DTC_5380_OFFSET + reg)
  70. #define dbNCR5380_read(reg)                                              
  71.     (rval=isa_readb(DTC_address(reg)), 
  72.      (((unsigned char) printk("DTC : read register %d at addr %08x is: %02xn"
  73.     , (reg), (int)DTC_address(reg), rval)), rval ) )
  74. #define dbNCR5380_write(reg, value) do {                                  
  75.     printk("DTC : write %02x to register %d at address %08xn",         
  76.             (value), (reg), (int)DTC_address(reg));     
  77.     isa_writeb(value, DTC_address(reg));} while(0)
  78. #if !(DTCDEBUG & DTCDEBUG_TRANSFER) 
  79. #define NCR5380_read(reg) (isa_readb(DTC_address(reg)))
  80. #define NCR5380_write(reg, value) (isa_writeb(value, DTC_address(reg)))
  81. #else
  82. #define NCR5380_read(reg) (isa_readb(DTC_address(reg)))
  83. #define xNCR5380_read(reg)
  84.     (((unsigned char) printk("DTC : read register %d at address %08xn"
  85.     , (reg), DTC_address(reg))), isa_readb(DTC_address(reg)))
  86. #define NCR5380_write(reg, value) do {
  87.     printk("DTC : write %02x to register %d at address %08xn", 
  88.     (value), (reg), (int)DTC_address(reg));
  89.     isa_writeb(value, DTC_address(reg));} while(0)
  90. #endif
  91. #define NCR5380_intr dtc_intr
  92. #define do_NCR5380_intr do_dtc_intr
  93. #define NCR5380_queue_command dtc_queue_command
  94. #define NCR5380_abort dtc_abort
  95. #define NCR5380_reset dtc_reset
  96. #define NCR5380_proc_info dtc_proc_info 
  97. /* 15 12 11 10
  98.    1001 1100 0000 0000 */
  99. #define DTC_IRQS 0x9c00
  100. #endif /* ndef ASM */
  101. #endif /* DTC3280_H */