Blame view

drivers/scsi/t128.h 3.58 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
  /*
   * Trantor T128/T128F/T228 defines
   *	Note : architecturally, the T100 and T128 are different and won't work
   *
   * Copyright 1993, Drew Eckhardt
   *	Visionary Computing
   *	(Unix and Linux consulting and custom programming)
   *	drew@colorado.edu
   *      +1 (303) 440-4894
   *
667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
11
   * For more information, please consult
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12
13
14
15
   *
   * Trantor Systems, Ltd.
   * T128/T128F/T228 SCSI Host Adapter
   * Hardware Specifications
667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
16
17
   *
   * Trantor Systems, Ltd.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
18
19
20
   * 5415 Randall Place
   * Fremont, CA 94538
   * 1+ (415) 770-1400, FAX 1+ (415) 770-9910
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
  #ifndef T128_H
  #define T128_H
44456d37b   Olaf Hering   [PATCH] turn many...
24
  #define TDEBUG		0
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
26
27
28
  #define TDEBUG_INIT	0x1
  #define TDEBUG_TRANSFER 0x2
  
  /*
667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
29
   * The trantor boards are memory mapped. They use an NCR5380 or
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30
   * equivalent (my sample board had part second sourced from ZILOG).
667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
31
   * NCR's recommended "Pseudo-DMA" architecture is used, where
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
   * a PAL drives the DMA signals on the 5380 allowing fast, blind
667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
33
   * transfers with proper handshaking.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
34
35
36
   */
  
  /*
667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
37
   * Note : a boot switch is provided for the purpose of informing the
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
   * firmware to boot or not boot from attached SCSI devices.  So, I imagine
   * there are fewer people who've yanked the ROM like they do on the Seagate
   * to make bootup faster, and I'll probably use this for autodetection.
   */
  #define T_ROM_OFFSET		0
  
  /*
   * Note : my sample board *WAS NOT* populated with the SRAM, so this
   * can't be used for autodetection without a ROM present.
   */
  #define T_RAM_OFFSET		0x1800
  
  /*
   * All of the registers are allocated 32 bytes of address space, except
   * for the data register (read/write to/from the 5380 in pseudo-DMA mode)
   */ 
  #define T_CONTROL_REG_OFFSET	0x1c00	/* rw */
  #define T_CR_INT		0x10	/* Enable interrupts */
  #define T_CR_CT			0x02	/* Reset watchdog timer */
  
  #define T_STATUS_REG_OFFSET	0x1c20	/* ro */
  #define T_ST_BOOT		0x80	/* Boot switch */
  #define T_ST_S3			0x40	/* User settable switches, */
  #define T_ST_S2			0x20	/* read 0 when switch is on, 1 off */
  #define T_ST_S1			0x10
  #define T_ST_PS2		0x08	/* Set for Microchannel 228 */
  #define T_ST_RDY		0x04	/* 5380 DRQ */
  #define T_ST_TIM		0x02	/* indicates 40us watchdog timer fired */
  #define T_ST_ZERO		0x01	/* Always zero */
  
  #define T_5380_OFFSET		0x1d00	/* 8 registers here, see NCR5380.h */
  
  #define T_DATA_REG_OFFSET	0x1e00	/* rw 512 bytes long */
  
  #ifndef ASM
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
73
74
75
76
77
78
  
  #ifndef CMD_PER_LUN
  #define CMD_PER_LUN 2
  #endif
  
  #ifndef CAN_QUEUE
667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
79
  #define CAN_QUEUE 32
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
80
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
81
82
83
84
85
86
87
88
89
90
  #define NCR5380_implementation_fields \
      void __iomem *base
  
  #define NCR5380_local_declare() \
      void __iomem *base
  
  #define NCR5380_setup(instance) \
      base = ((struct NCR5380_hostdata *)(instance->hostdata))->base
  
  #define T128_address(reg) (base + T_5380_OFFSET + ((reg) * 0x20))
667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
91
  #if !(TDEBUG & TDEBUG_TRANSFER)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
92
93
94
95
96
97
98
99
100
  #define NCR5380_read(reg) readb(T128_address(reg))
  #define NCR5380_write(reg, value) writeb((value),(T128_address(reg)))
  #else
  #define NCR5380_read(reg)						\
      (((unsigned char) printk("scsi%d : read register %d at address %08x
  "\
      , instance->hostno, (reg), T128_address(reg))), readb(T128_address(reg)))
  
  #define NCR5380_write(reg, value) {					\
667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
101
102
      printk("scsi%d : write %02x to register %d at address %08x
  ",	\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
103
104
105
106
107
108
109
110
111
  	    instance->hostno, (value), (reg), T128_address(reg));	\
      writeb((value), (T128_address(reg)));				\
  }
  #endif
  
  #define NCR5380_intr t128_intr
  #define do_NCR5380_intr do_t128_intr
  #define NCR5380_queue_command t128_queue_command
  #define NCR5380_abort t128_abort
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
112
  #define NCR5380_bus_reset t128_bus_reset
8c32513bd   Finn Thain   ncr5380: Cleanup ...
113
  #define NCR5380_info t128_info
dd7ab71bb   Al Viro   NCR5830: switch t...
114
115
  #define NCR5380_show_info t128_show_info
  #define NCR5380_write_info t128_write_info
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
116

667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
117
  /* 15 14 12 10 7 5 3
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
118
     1101 0100 1010 1000 */
667c667f8   Henrik Kretzschmar   [SCSI] scsi: t128...
119
120
  
  #define T128_IRQS 0xc4a8
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
121

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
122
123
  #endif /* ndef ASM */
  #endif /* T128_H */