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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Trantor T128/T128F/T228 defines
  3.  * Note : architecturally, the T100 and T128 are different and won't work
  4.  *
  5.  * Copyright 1993, Drew Eckhardt
  6.  * Visionary Computing
  7.  * (Unix and Linux consulting and custom programming)
  8.  * drew@colorado.edu
  9.  *      +1 (303) 440-4894
  10.  *
  11.  * DISTRIBUTION RELEASE 3. 
  12.  *
  13.  * For more information, please consult 
  14.  *
  15.  * Trantor Systems, Ltd.
  16.  * T128/T128F/T228 SCSI Host Adapter
  17.  * Hardware Specifications
  18.  * 
  19.  * Trantor Systems, Ltd. 
  20.  * 5415 Randall Place
  21.  * Fremont, CA 94538
  22.  * 1+ (415) 770-1400, FAX 1+ (415) 770-9910
  23.  * 
  24.  * and 
  25.  *
  26.  * NCR 5380 Family
  27.  * SCSI Protocol Controller
  28.  * Databook
  29.  *
  30.  * NCR Microelectronics
  31.  * 1635 Aeroplaza Drive
  32.  * Colorado Springs, CO 80916
  33.  * 1+ (719) 578-3400
  34.  * 1+ (800) 334-5454
  35.  */
  36. /*
  37.  * $Log: t128.h,v $
  38.  */
  39. #ifndef T128_H
  40. #define T128_H
  41. #define T128_PUBLIC_RELEASE 3
  42. #define TDEBUG_INIT 0x1
  43. #define TDEBUG_TRANSFER 0x2
  44. /*
  45.  * The trantor boards are memory mapped. They use an NCR5380 or 
  46.  * equivalent (my sample board had part second sourced from ZILOG).
  47.  * NCR's recommended "Pseudo-DMA" architecture is used, where 
  48.  * a PAL drives the DMA signals on the 5380 allowing fast, blind
  49.  * transfers with proper handshaking. 
  50.  */
  51. /*
  52.  * Note : a boot switch is provided for the purpose of informing the 
  53.  * firmware to boot or not boot from attached SCSI devices.  So, I imagine
  54.  * there are fewer people who've yanked the ROM like they do on the Seagate
  55.  * to make bootup faster, and I'll probably use this for autodetection.
  56.  */
  57. #define T_ROM_OFFSET 0
  58. /*
  59.  * Note : my sample board *WAS NOT* populated with the SRAM, so this
  60.  * can't be used for autodetection without a ROM present.
  61.  */
  62. #define T_RAM_OFFSET 0x1800
  63. /*
  64.  * All of the registers are allocated 32 bytes of address space, except
  65.  * for the data register (read/write to/from the 5380 in pseudo-DMA mode)
  66.  */ 
  67. #define T_CONTROL_REG_OFFSET 0x1c00 /* rw */
  68. #define T_CR_INT 0x10 /* Enable interrupts */
  69. #define T_CR_CT 0x02 /* Reset watchdog timer */
  70. #define T_STATUS_REG_OFFSET 0x1c20 /* ro */
  71. #define T_ST_BOOT 0x80 /* Boot switch */
  72. #define T_ST_S3 0x40 /* User settable switches, */
  73. #define T_ST_S2 0x20 /* read 0 when switch is on, 1 off */
  74. #define T_ST_S1 0x10
  75. #define T_ST_PS2 0x08 /* Set for Microchannel 228 */
  76. #define T_ST_RDY 0x04 /* 5380 DRQ */
  77. #define T_ST_TIM 0x02 /* indicates 40us watchdog timer fired */
  78. #define T_ST_ZERO 0x01 /* Always zero */
  79. #define T_5380_OFFSET 0x1d00 /* 8 registers here, see NCR5380.h */
  80. #define T_DATA_REG_OFFSET 0x1e00 /* rw 512 bytes long */
  81. #ifndef ASM
  82. int t128_abort(Scsi_Cmnd *);
  83. int t128_biosparam(Disk *, kdev_t, int*);
  84. int t128_detect(Scsi_Host_Template *);
  85. int t128_queue_command(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
  86. int t128_reset(Scsi_Cmnd *, unsigned int reset_flags);
  87. int t128_proc_info (char *buffer, char **start, off_t offset,
  88.    int length, int hostno, int inout);
  89. #ifndef NULL
  90. #define NULL 0
  91. #endif
  92. #ifndef CMD_PER_LUN
  93. #define CMD_PER_LUN 2
  94. #endif
  95. #ifndef CAN_QUEUE
  96. #define CAN_QUEUE 32 
  97. #endif
  98. /* 
  99.  * I hadn't thought of this with the earlier drivers - but to prevent
  100.  * macro definition conflicts, we shouldn't define all of the internal
  101.  * macros when this is being used solely for the host stub.
  102.  */
  103. #define TRANTOR_T128 {
  104. name:           "Trantor T128/T128F/T228",
  105. detect:         t128_detect,
  106. queuecommand:   t128_queue_command,
  107. abort:          t128_abort,
  108. reset:          t128_reset,
  109. bios_param:     t128_biosparam,
  110. can_queue:      CAN_QUEUE,
  111.         this_id:        7,
  112. sg_tablesize:   SG_ALL,
  113. cmd_per_lun:    CMD_PER_LUN,
  114. use_clustering: DISABLE_CLUSTERING}
  115. #ifndef HOSTS_C
  116. #define NCR5380_implementation_fields 
  117.     unsigned long base
  118. #define NCR5380_local_declare() 
  119.     unsigned long base
  120. #define NCR5380_setup(instance) 
  121.     base = (instance)->base
  122. #define T128_address(reg) (base + T_5380_OFFSET + ((reg) * 0x20))
  123. #if !(TDEBUG & TDEBUG_TRANSFER) 
  124. #define NCR5380_read(reg) isa_readb(T128_address(reg))
  125. #define NCR5380_write(reg, value) isa_writeb((value),(T128_address(reg)))
  126. #else
  127. #define NCR5380_read(reg)
  128.     (((unsigned char) printk("scsi%d : read register %d at address %08xn"
  129.     , instance->hostno, (reg), T128_address(reg))), isa_readb(T128_address(reg)))
  130. #define NCR5380_write(reg, value) {
  131.     printk("scsi%d : write %02x to register %d at address %08xn", 
  132.     instance->hostno, (value), (reg), T128_address(reg));
  133.     isa_writeb((value), (T128_address(reg)));
  134. }
  135. #endif
  136. #define NCR5380_intr t128_intr
  137. #define do_NCR5380_intr do_t128_intr
  138. #define NCR5380_queue_command t128_queue_command
  139. #define NCR5380_abort t128_abort
  140. #define NCR5380_reset t128_reset
  141. #define NCR5380_proc_info t128_proc_info
  142. /* 15 14 12 10 7 5 3 
  143.    1101 0100 1010 1000 */
  144.    
  145. #define T128_IRQS 0xc4a8 
  146. #endif /* else def HOSTS_C */
  147. #endif /* ndef ASM */
  148. #endif /* T128_H */