1
2
3
4
5
6
7
8
9 #ifndef _SEAGATE_H
10 #define SEAGATE_H
11
12
13
14 #ifndef ASM
15 int seagate_st0x_detect(Scsi_Host_Template *);
16 int seagate_st0x_command(Scsi_Cmnd *);
17 int seagate_st0x_queue_command(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
18
19 int seagate_st0x_abort(Scsi_Cmnd *);
20 const char *seagate_st0x_info(struct Scsi_Host *);
21 int seagate_st0x_reset(Scsi_Cmnd *);
22
23 #ifndef NULL
24 #define NULL 0
25 #endif
26
27 int seagate_st0x_biosparam(Disk *, int, int*);
28
29 #define SEAGATE_ST0X {NULL, NULL, NULL, seagate_st0x_detect, \
30 NULL, \
31 seagate_st0x_info, seagate_st0x_command, \
32 seagate_st0x_queue_command, seagate_st0x_abort, \
33 seagate_st0x_reset, NULL, seagate_st0x_biosparam, \
34 1, 7, SG_ALL, 1, 0, 0, DISABLE_CLUSTERING}
35 #endif
36
37
38
39
40
41
42 #define PARITY
43
44
45
46
47
48
49
50
51
52
53
54
55 #define CMD_RST 0x01
56 #define CMD_SEL 0x02
57 #define CMD_BSY 0x04
58 #define CMD_ATTN 0x08
59 #define CMD_START_ARB 0x10
60 #define CMD_EN_PARITY 0x20
61 #define CMD_INTR 0x40
62 #define CMD_DRVR_ENABLE 0x80
63
64
65
66
67
68 #define STAT_BSY 0x01
69 #define STAT_MSG 0x02
70 #define STAT_IO 0x04
71 #define STAT_CD 0x08
72 #define STAT_REQ 0x10
73 #define STAT_SEL 0x20
74 #define STAT_PARITY 0x40
75 #define STAT_ARB_CMPL 0x80
76
77
78
79
80
81 #define REQ_MASK (STAT_CD | STAT_IO | STAT_MSG)
82 #define REQ_DATAOUT 0
83 #define REQ_DATAIN STAT_IO
84 #define REQ_CMDOUT STAT_CD
85 #define REQ_STATIN (STAT_CD | STAT_IO)
86 #define REQ_MSGOUT (STAT_MSG | STAT_CD)
87 #define REQ_MSGIN (STAT_MSG | STAT_CD | STAT_IO)
88
89 extern volatile int seagate_st0x_timeout;
90
91 #ifdef PARITY
92 #define BASE_CMD CMD_EN_PARITY
93 #else
94 #define BASE_CMD 0
95 #endif
96
97
98
99
100
101 #define PHASE_BUS_FREE 1
102 #define PHASE_ARBITRATION 2
103 #define PHASE_SELECTION 4
104 #define PHASE_DATAIN 8
105 #define PHASE_DATAOUT 0x10
106 #define PHASE_CMDOUT 0x20
107 #define PHASE_MSGIN 0x40
108 #define PHASE_MSGOUT 0x80
109 #define PHASE_STATUSIN 0x100
110 #define PHASE_ETC (PHASE_DATAIN | PHASE_DATA_OUT | PHASE_CMDOUT | PHASE_MSGIN | PHASE_MSGOUT | PHASE_STATUSIN)
111 #define PRINT_COMMAND 0x200
112 #define PHASE_EXIT 0x400
113 #define PHASE_RESELECT 0x800
114 #define DEBUG_FAST 0x1000
115 #define DEBUG_SG 0x2000
116 #define DEBUG_LINKED 0x4000
117 #define DEBUG_BORKEN 0x8000
118
119
120
121
122
123
124 #define ST0X_BUS_FREE_DELAY 25
125 #define ST0X_SELECTION_DELAY 25
126
127 #define eoi() __asm__("push %%eax\nmovb $0x20, %%al\noutb %%al, $0x20\npop %%eax"::)
128
129 #define SEAGATE 1
130 #define FD 2
131
132 #define ST0X_ID_STR "Seagate ST-01/ST-02"
133 #define FD_ID_STR "TMC-8XX/TMC-950"
134
135 #endif
136