1 #ifndef_LINUX_FD_H 2 #define_LINUX_FD_H 3
4 #defineFDCLRPRM 0 /* clear user-defined parameters */ 5 #defineFDSETPRM 1 /* set user-defined parameters for current media */ 6 #define FDSETMEDIAPRM 1
7 #defineFDDEFPRM 2 /* set user-defined parameters until explicitly cleared */ 8 #define FDDEFMEDIAPRM 2
9 #defineFDGETPRM 3 /* get disk parameters */ 10 #define FDGETMEDIAPRM 3
11 #defineFDMSGON 4 /* issue kernel messages on media type change */ 12 #defineFDMSGOFF 5 /* don't issue kernel messages on media type change */ 13 #defineFDFMTBEG 6 /* begin formatting a disk */ 14 #defineFDFMTTRK 7 /* format the specified track */ 15 #defineFDFMTEND 8 /* end formatting a disk */ 16 #defineFDSETEMSGTRESH 10 /* set fdc error reporting threshold */ 17 #defineFDFLUSH 11 /* flush buffers for media; either for verifying media, or for 18 handling a media change without closing the file 19 descriptor */ 20 #defineFDSETMAXERRS 12 /* set abortion and read_track threshold */ 21 #defineFDGETMAXERRS 14 /* get abortion and read_track threshold */ 22 #defineFDGETDRVTYP 16 /* get drive type: 5 1/4 or 3 1/2 */ 23
24 #defineFDSETDRVPRM 20 /* set drive parameters */ 25 #defineFDGETDRVPRM 21 /* get drive parameters */ 26 #defineFDGETDRVSTAT 22 /* get drive state */ 27 #defineFDPOLLDRVSTAT 23 /* get drive state */ 28 #defineFDRESET 24 /* reset FDC */ 29
30 #defineFD_RESET_IF_NEEDED 0
31 #define FD_RESET_IF_RAWCMD 1
32 #defineFD_RESET_ALWAYS 2
33
34 #defineFDGETFDCSTAT 25 /* get fdc state */ 35 #defineFDWERRORCLR 27 /* clear write error and badness information */ 36 #defineFDWERRORGET 28 /* get write error and badness information */ 37
38 #defineFDRAWCMD 30 /* send a raw command to the fdc */ 39
40 #defineFDTWADDLE 40 /* flicker motor-on bit before reading a sector */ 41
42 /* 43 * Maximum number of sectors in a track buffer. Track buffering is disabled 44 * if tracks are bigger. 45 */ 46 #define MAX_BUFFER_SECTORS 24 /* was 18 -bb */ 47
48 #defineFD_FILL_BYTE 0xF6 /* format fill byte */ 49
50 #defineFD_2M 0x4
51 #defineFD_SIZECODEMASK 0x38
52 #defineFD_SIZECODE(floppy) (((((floppy)->rate&FD_SIZECODEMASK)>> 3)+ 2) %8)
53 #define FD_SECTSIZE(floppy) ( (floppy)->rate & FD_2M ? \
54 512 : 128 << FD_SIZECODE(floppy) )
55 #define FD_PERP 0x40
56
57 #defineFD_STRETCH 1
58 #defineFD_SWAPSIDES 2
59
60 #ifndef__ASSEMBLY__ 61 /* the following structure is used by FDSETPRM, FDDEFPRM and FDGETPRM */ 62 structfloppy_struct{ 63 unsignedintsize, /* nr of sectors total */ 64 sect, /* sectors per track */ 65 head, /* nr of heads */ 66 track, /* nr of tracks */ 67 stretch; /* !=0 means double track steps */ 68 unsignedchargap, /* gap1 size */ 69 rate, /* data rate. |= 0x40 for perpendicular */ 70 spec1, /* stepping rate, head unload time */ 71 fmt_gap; /* gap2 size */ 72 constchar * name; /* used only for predefined formats */ 73 };
74
75 structformat_descr{ 76 unsignedintdevice,head,track;
77 };
78
79 structfloppy_max_errors{ 80 unsignedint 81 abort, /* number of errors to be reached before aborting */ 82 read_track, /* maximal number of errors permitted to read an 83 * entire track at once */ 84 reset, /* maximal number of errors before a reset is tried */ 85 recal, /* maximal number of errors before a recalibrate is 86 * tried */ 87
88 /* 89 * Threshold for reporting FDC errors to the console. 90 * Setting this to zero may flood your screen when using 91 * ultra cheap floppies ;-) 92 */ 93 reporting;
94
95 };
96
97 /* the following structure is used by FDSETDRVPRM and FDGETDRVPRM */ 98 structfloppy_drive_params{ 99 charcmos; /* cmos type */ 100
101 /* Spec2 is (HLD<<1 | ND), where HLD is head load time (1=2ms, 2=4 ms etc) 102 * and ND is set means no DMA. Hardcoded to 6 (HLD=6ms, use DMA). 103 */ 104 unsignedlong max_dtr; /* Step rate, usec */ 105 unsignedlonghlt; /* Head load/settle time, msec */ 106 unsignedlonghut; /* Head unload time (remnant of 8" drives) */ 107 unsignedlongsrt; /* Step rate, usec */ 108
109 unsignedlongspinup; /* time needed for spinup ( in jiffies) */ 110 unsignedlongspindown; /* timeout needed for spindown */ 111 unsignedcharspindown_offset;/* decides in which position the disk 112 * will stop */ 113 unsignedcharselect_delay; /* delay to wait after select */ 114 unsignedcharrps; /* rotations per second */ 115 unsignedchartracks; /* maximum number of tracks */ 116 unsignedlongtimeout; /* timeout for interrupt requests */ 117
118 unsignedcharinterleave_sect;/* if there are more sectors, use interleave */ 119
120 structfloppy_max_errorsmax_errors;
121
122 charflags; /* various flags, including ftd_msg */ 123 /* 124 * Announce successful media type detection and media information loss after 125 * disk changes. 126 * Also used to enable/disable printing of overrun warnings. 127 */ 128
129 #defineFTD_MSG 0x10
130 #defineFD_BROKEN_DCL 0x20
131 #defineFD_DEBUG 0x02
132 #defineFD_SILENT_DCL_CLEAR 0x4
133 #define FD_INVERTED_DCL 0x80
134
135 charread_track; /* use readtrack during probing? */ 136
137 /* 138 * Auto-detection. Each drive type has eight formats which are 139 * used in succession to try to read the disk. If the FDC cannot lock onto 140 * the disk, the next format is tried. This uses the variable 'probing'. 141 */ 142 shortautodetect[8]; /* autodetected formats */ 143
144 intcheckfreq; /* how often should the drive be checked for disk changes */ 145 intnative_format; /* native format of this drive */ 146 };
147
148 enum{ 149 FD_NEED_TWADDLE_BIT, /* more magic */ 150 FD_VERIFY_BIT, /* inquire for write protection */ 151 FD_DISK_NEWCHANGE_BIT, /* change detected, and no action undertaken yet to 152 clear media change status */ 153 FD_UNUSED_BIT,
154 FD_DISK_CHANGED_BIT, /* disk has been changed since last i/o */ 155 FD_DISK_WRITABLE_BIT/* disk is writable */ 156 };
157
158 /* values for these flags */ 159 #defineFD_NEED_TWADDLE (1 << FD_NEED_TWADDLE_BIT)
160 #defineFD_VERIFY (1 << FD_VERIFY_BIT)
161 #defineFD_DISK_NEWCHANGE (1 << FD_DISK_NEWCHANGE_BIT)
162 #defineFD_DISK_CHANGED (1 << FD_DISK_CHANGED_BIT)
163 #defineFD_DISK_WRITABLE (1 << FD_DISK_WRITABLE_BIT)
164
165 #define FD_DRIVE_PRESENT 0 /* keep fdpatch utils compiling */ 166
167 structfloppy_drive_struct{ 168 signedcharflags;
169 unsignedlongspinup_date;
170 unsignedlongselect_date;
171 unsignedlongfirst_read_date;
172 shortprobed_format;
173 shorttrack; /* current track */ 174 shortmaxblock; /* id of highest block read */ 175 shortmaxtrack; /* id of highest half track read */ 176 intgeneration; /* how many diskchanges? */ 177
178 /* 179 * (User-provided) media information is _not_ discarded after a media change 180 * if the corresponding keep_data flag is non-zero. Positive values are 181 * decremented after each probe. 182 */ 183 intkeep_data;
184
185 /* Prevent "aliased" accesses. */ 186 intfd_ref;
187 intfd_device;
188 intlast_checked; /* when was the drive last checked for a disk change? */ 189
190 char *dmabuf;
191 int bufblocks;
192 };
193
194 structfloppy_write_errors{ 195 /* Write error logging. 196 * 197 * These fields can be cleared with the FDWERRORCLR ioctl. 198 * Only writes that were attempted but failed due to a physical media 199 * error are logged. write(2) calls that fail and return an error code 200 * to the user process are not counted. 201 */ 202
203 unsignedintwrite_errors; /* number of physical write errors encountered */ 204
205 /* position of first and last write errors */ 206 unsignedlongfirst_error_sector;
207 intfirst_error_generation;
208 unsignedlonglast_error_sector;
209 intlast_error_generation;
210
211 unsignedintbadness; /* highest retry count for a read or write operation */ 212 };
213
214 structfloppy_fdc_state{ 215 intspec1; /* spec1 value last used */ 216 intspec2; /* spec2 value last used */ 217 intdtr;
218 unsignedcharversion; /* FDC version code */ 219 unsignedchardor;
220 intaddress; /* io address */ 221 unsignedintrawcmd:2;
222 unsignedintreset:1;
223 unsignedintneed_configure:1;
224 unsignedintperp_mode:2;
225 unsignedinthas_fifo:1;
226 };
227
228 structfloppy_raw_cmd{ 229 void *data;
230 longlength;
231
232 unsignedcharrate;
233 unsignedcharflags;
234 unsignedcharcmd_count;
235 unsignedcharcmd[9];
236 unsignedcharreply_count;
237 unsignedcharreply[7];
238 inttrack;
239 };
240 #endif 241
242 /* meaning of the various bytes */ 243
244 /* flags */ 245 #defineFD_RAW_READ 1
246 #defineFD_RAW_WRITE 2
247 #defineFD_RAW_NO_MOTOR 4
248 #defineFD_RAW_DISK_CHANGE 4
249 #defineFD_RAW_INTR 8
250 #defineFD_RAW_SPIN 16
251 #defineFD_RAW_NO_MOTOR_AFTER 32
252 #defineFD_RAW_NEED_DISK 64
253 #defineFD_RAW_NEED_SEEK 128
254
255 #endif