1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41#ifndef T128_H
42#define T128_H
43
44#define T128_PUBLIC_RELEASE 3
45
46#define TDEBUG 0
47#define TDEBUG_INIT 0x1
48#define TDEBUG_TRANSFER 0x2
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64#define T_ROM_OFFSET 0
65
66
67
68
69
70#define T_RAM_OFFSET 0x1800
71
72
73
74
75
76#define T_CONTROL_REG_OFFSET 0x1c00
77#define T_CR_INT 0x10
78#define T_CR_CT 0x02
79
80#define T_STATUS_REG_OFFSET 0x1c20
81#define T_ST_BOOT 0x80
82#define T_ST_S3 0x40
83#define T_ST_S2 0x20
84#define T_ST_S1 0x10
85#define T_ST_PS2 0x08
86#define T_ST_RDY 0x04
87#define T_ST_TIM 0x02
88#define T_ST_ZERO 0x01
89
90#define T_5380_OFFSET 0x1d00
91
92#define T_DATA_REG_OFFSET 0x1e00
93
94#ifndef ASM
95static int t128_abort(struct scsi_cmnd *);
96static int t128_biosparam(struct scsi_device *, struct block_device *,
97 sector_t, int*);
98static int t128_detect(struct scsi_host_template *);
99static int t128_queue_command(struct Scsi_Host *, struct scsi_cmnd *);
100static int t128_bus_reset(struct scsi_cmnd *);
101
102#ifndef CMD_PER_LUN
103#define CMD_PER_LUN 2
104#endif
105
106#ifndef CAN_QUEUE
107#define CAN_QUEUE 32
108#endif
109
110#ifndef HOSTS_C
111
112#define NCR5380_implementation_fields \
113 void __iomem *base
114
115#define NCR5380_local_declare() \
116 void __iomem *base
117
118#define NCR5380_setup(instance) \
119 base = ((struct NCR5380_hostdata *)(instance->hostdata))->base
120
121#define T128_address(reg) (base + T_5380_OFFSET + ((reg) * 0x20))
122
123#if !(TDEBUG & TDEBUG_TRANSFER)
124#define NCR5380_read(reg) readb(T128_address(reg))
125#define NCR5380_write(reg, value) writeb((value),(T128_address(reg)))
126#else
127#define NCR5380_read(reg) \
128 (((unsigned char) printk("scsi%d : read register %d at address %08x\n"\
129 , instance->hostno, (reg), T128_address(reg))), readb(T128_address(reg)))
130
131#define NCR5380_write(reg, value) { \
132 printk("scsi%d : write %02x to register %d at address %08x\n", \
133 instance->hostno, (value), (reg), T128_address(reg)); \
134 writeb((value), (T128_address(reg))); \
135}
136#endif
137
138#define NCR5380_intr t128_intr
139#define do_NCR5380_intr do_t128_intr
140#define NCR5380_queue_command t128_queue_command
141#define NCR5380_abort t128_abort
142#define NCR5380_bus_reset t128_bus_reset
143#define NCR5380_show_info t128_show_info
144#define NCR5380_write_info t128_write_info
145
146
147
148
149#define T128_IRQS 0xc4a8
150
151#endif
152#endif
153#endif
154